Answers for "command to create a new branch off of another branch"

PHP
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
6

create branch from another branch

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

Code answers related to "command to create a new branch off of another branch"

Browse Popular Code Answers by Language