Answers for "git create a new branch in git remote"

1

creating new branch in git

Create a new branch named issue1.

$ git branch testing
Posted by: Guest on November-15-2020
1

create new remote branch

git checkout -b <new-branch-name>	#Create new branch locally
git push <remote-name> <new-branch-name> #Create new branch remotely
Posted by: Guest on November-26-2020

Code answers related to "git create a new branch in git remote"

Browse Popular Code Answers by Language