Bureaucrats, confirmed, Administrators
4,558
edits
(add the branch name to the pull) |
No edit summary |
||
Line 132: | Line 132: | ||
# pull in anything from 'upstream' (assuming that now GitHub is the canonical source) | # pull in anything from 'upstream' (assuming that now GitHub is the canonical source) | ||
git pull github master | git pull github master | ||
# push any changes up | # push any changes up; setting the new remote as the upstream for the 'master' branch | ||
git push --set-upstream github master | git push --set-upstream github master | ||
# from now on you can just 'git push' from master | |||
</source> | </source> | ||