Answers for "git can you switch to a branch only on local separate repository"

0

How to switch from master to main git branch

git checkout master        # to be sure you are on master branch
git push origin HEAD:main  # and then push the current branch (as master) to main
-or-
git push --force origin HEAD:main
Posted by: Guest on June-09-2021

Code answers related to "git can you switch to a branch only on local separate repository"

Browse Popular Code Answers by Language