Answers for "create a new branch based on another branch"

4

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
6

create branch from another branch

$ git checkout -b myFeature dev
Posted by: Guest on March-27-2020
4

how to create new branch

How to create a new branch in git 

$ git checkout -b good

here good is new branch name
the line 3 after executing we will go to that branch
Posted by: Guest on October-05-2020
3

git command to create a branch from another branch

$ git checkout -b myfeature dev
Posted by: Guest on April-30-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 "create a new branch based on another branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language