Created
May 9, 2010 11:05
-
-
Save corntrace/395086 to your computer and use it in GitHub Desktop.
update you forked repo with the original repo
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
# add a remote branch point to the original repo. the original repo's branch usually be the master | |
$ git remote add --track master mleung git://github.com/mleung/feather.git | |
# the verify the remote branch | |
$ git remote | |
# to fetch all changes from the remote | |
$ git fetch mleung | |
# merge the remote changes | |
$ git merge mleung/master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment