-
Notifications
You must be signed in to change notification settings - Fork 138
cleanup: Rename master branch to main #984
Comments
I would like to work on this issue, if only the renaming of the 'master' references to 'main' is required or I need to do some checkout? |
@version0chiro Try to start re-naming things, push a PR, and we'll see what happens |
@pdxjohnny I have tried renaming in my local branch but there was no pr generated . Can you assist me |
@pdxjohnny doesn't it requires admin access?? |
Can you assign this issue to me |
Hi @RupeshRavindraDharme !! Please discuss this once with @Saanidhyavats & @pdxjohnny before proceeding with that PR. |
This is shaping up to be fairly complex. We’re going to split out things into the second party plugin #1061 repo structure. When we do that we should probably do this at the same time. I’ve removed the good first issue tag |
Rename and then checkout anything that doesn't apply .. code-block:: console $ sed -i 's/master/main/g' $(git ls-files) $ sed -i 's/MASTER/MAIN/g' $(git ls-files) $ git checkout -p -- Related: #984 Signed-off-by: John Andersen <johnandersenpdx@gmail.com>
There are a lot of references to
master
through out our codebase.git grep
will be your friend here.Please rename all instances of
master
that refer to a git branch tomain
. Please provide a list in your PR of all the remaining instances ofmaster
as found bygit grep -n
, with some at least small not detailing why it doesn't need to change, so that reviewers can review your PR quickly.The text was updated successfully, but these errors were encountered: