Answers for "how to change main to master in git bash"

4

git change master to main

# Step 1 
# create main branch locally, taking the history from master
git branch -m master main
# Step 2 
# push the new local main branch to the remote repo (GitHub) 
git push -u origin main
# Step 3
# switch the current HEAD to the main branch
git symbolic-ref refs/remotes/origin/HEAD refs/remotes/origin/main
# Step 4
# change the default branch on GitHub to main
# https://docs.github.com/en/github/administering-a-repository/setting-the-default-branch
# Step 5
# delete the master branch on the remote
git push origin --delete master
Posted by: Guest on June-22-2021
2

change master to main git

$ git branch -m master main
Posted by: Guest on February-01-2021
1

how to switch to a master which is already added

git checkout master
Posted by: Guest on August-19-2020

Code answers related to "how to change main to master in git bash"

Browse Popular Code Answers by Language