Answers for "create a new branch inside my branch"

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
0

Create new git branch from existing branch

 Syntax: git branch <new-branch-name> <existing-branch-name>            
 Example: git branch newone master
 Here newone is new branch and master is existing
Posted by: Guest on August-14-2021

Code answers related to "create a new branch inside my branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language