Skip to content

Instantly share code, notes, and snippets.

@seankross
Last active August 9, 2022 18:06
Show Gist options
  • Star 33 You must be signed in to star a gist
  • Fork 15 You must be signed in to fork a gist
  • Save seankross/8249845 to your computer and use it in GitHub Desktop.
Save seankross/8249845 to your computer and use it in GitHub Desktop.
Update a Github Fork from the Original Repo

Taken from here

Add remonte 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

@Risyandi
Copy link

Nice, Thanks for guide

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