Answers for "how to add another branch git"

6

create a new branch based on another branch

//when on branch 'dev' make branch 'myFeature' off of 'dev'
git checkout -b myFeature dev
Posted by: Guest on March-17-2020
0

create a new branch based on another branch

git checkout -b subbranch_of_branch1 branch1
Posted by: Guest on August-11-2021

Code answers related to "how to add another branch git"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language