Answers for "git make new branch with matching upstream"

5

github set branch upstream

git push --set-upstream origin <remote-branch>
Posted by: Guest on October-19-2020
5

create local and remote branch

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

Browse Popular Code Answers by Language