Last active
August 29, 2015 14:07
-
-
Save chrishokamp/b0476c419dcc8c7d50f6 to your computer and use it in GitHub Desktop.
how to add an upstream remote, and pull from upstream
This file contains 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
# cd into your top level directory ml-group/ | |
# add a remote called 'upstream' | |
git remote add upstream https://github.com/dcumachinelearning/ml-group.git | |
# pull from upstream | |
git pull upstream master | |
# push the new commits from upstream to your fork on github | |
git push |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment