Last active
October 4, 2016 16:54
-
-
Save kalkulus/0c89be6b2e3270802137940be48851cb to your computer and use it in GitHub Desktop.
git add branch, track remote
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git checkout -b newBranchName | |
git branch --set-upstream-to=origin/newBranchName newBranchName | |
OR | |
git push -u origin newBranchName |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment