Skip to content

Instantly share code, notes, and snippets.

@corntrace
Created May 9, 2010 11:05
Show Gist options
  • Save corntrace/395086 to your computer and use it in GitHub Desktop.
Save corntrace/395086 to your computer and use it in GitHub Desktop.
update you forked repo with the original repo
# 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