Answers for "how to switch to master branch"

0

Create and Switch to a Branch

$ git checkout -b <new branch>
Posted by: Guest on March-06-2022
0

git move change from master to new branch

git stash						//you can stash the changes in the master branch .
git checkout -b newbranchname	//then checkout the branch
git stash pop					//and pop the changes here
Posted by: Guest on November-22-2021

Code answers related to "how to switch to master branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language