Answers for "how to get make a branch from another branch git"

3

branch from other branch

// Go first to the branch where you want to make a copy of
git checkout -b subbranch branch
Posted by: Guest on January-20-2021
7

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

Code answers related to "how to get make a branch from another branch git"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language