Answers for "make a branch from a branch git"

5

createa. branch off of development git

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

git command to create a branch from another branch

$ git checkout -b myfeature dev
Posted by: Guest on April-30-2020

Browse Popular Code Answers by Language