Answers for "how to add develop branch in git"

1

how to create new branch in git

git checkout master
git branch {branch_name}
git checkout {branch_name}
Posted by: Guest on March-03-2022
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

Code answers related to "how to add develop branch in git"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language