Answers for "how to create a branch locally"

0

create a new git branch

# create and switch to the new branch 
git checkout -b <Name_of_your_branch>
# example 
git checkout -b testBranch1
# if you check your current branch it will show you testBranch1
Posted by: Guest on January-01-2022
0

git create branch

git branch <branch>
Posted by: Guest on September-13-2021

Code answers related to "how to create a branch locally"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language