Created
December 8, 2013 03:57
-
-
Save birchestx/7853185 to your computer and use it in GitHub Desktop.
Git - Pull new updates from original repository into forked repos From http://stackoverflow.com/questions/3903817/pull-new-updates-from-original-github-repository-into-forked-github-repository
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
$ git remote add upstream git://github.com/pjhyett/github-services.git | |
$ git fetch upstream | |
# then: (like "git pull" which is fetch + merge) | |
$ git merge upstream/master master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment