switch branch to master code example

Example 1: how to switch to a master which is already added

git checkout master

Example 2: how to switch between two branches in git

git switch my_branch

Example 3: git switch branch

git switch 

git checkout 

Example 4: how to make new branch and switch in git

git checkout -b myNewBranch

Example 5: 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

Tags:

Misc Example