Answers for "git switch branch to master"

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
3

git switch branch

git switch branch_name

git checkout branch_name
Posted by: Guest on March-20-2020
0

git change master branch

## 1) Rename master branch to oldmaster.
git branch -m master oldmaster
#Now there is no master branch on my local machine.

## 2) Rename my masterTemp branch to master
git branch -m masterTemp master
#The branch which was named masterTemp on my local machine is now master

## 3) Delete the branch from remote
git branch -rD master

## 4) Push the new master branch to remote
git push --force origin master
Posted by: Guest on April-18-2021
-2

how to switch branches in git

git checkout [branch name]
Posted by: Guest on April-09-2020
1

git switch branch

wonder.woman@highfive project %  git checkout branch_name 
#this let you keep edited files
wonder.woman@highfive project %  git switch branch_name
Posted by: Guest on March-20-2020

Code answers related to "git switch branch to master"

Browse Popular Code Answers by Language