Answers for "add branch from remote repo to origin"

5

create local and remote branch

git checkout -b yourBranchName
git push -u origin yourBanchName
Posted by: Guest on April-27-2020
1

Push your branch up to the remote.

$ git push <remote> <branch>
Posted by: Guest on September-11-2020

Code answers related to "add branch from remote repo to origin"

Browse Popular Code Answers by Language