Skip to content

Instantly share code, notes, and snippets.

@moskrc
Created June 12, 2018 10:19
Show Gist options
  • Save moskrc/d129e5002a95947b5f11b6ec3f7ddc02 to your computer and use it in GitHub Desktop.
Save moskrc/d129e5002a95947b5f11b6ec3f7ddc02 to your computer and use it in GitHub Desktop.
How to update your fork from the original repo

Taken from here

Add remote branch:

git remote add --track master mleung git://github.com/mleung/feather.git

Verify:

git remote

Fetch:

git fetch mleung

Merge:

git merge mleung/master

And then git push the updates to your fork

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment