Answers for "how to add a branch to a a git repo cli"

1

how to add a branch to a a git repo cli

# Create new local branch
git checkout -b <new-branch>
Posted by: Guest on July-22-2020
3

git branch command

git branch <branchname> 
(or)
git checkout -b <branchname>
Posted by: Guest on May-23-2020

Code answers related to "how to add a branch to a a git repo cli"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language