Answers for "how to make a new branch from another branch"

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
0

can i create a branch inside of another branch in GIT

$ git push origin dev
$ git push origin myFeature
Posted by: Guest on August-03-2020

Code answers related to "how to make a new branch from another branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language