Answers for "git azure git bash create a new branch based on another branch"

4

create branch based to other branch ex. master

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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language