Skip to content

Instantly share code, notes, and snippets.

@korun
Last active December 28, 2015 00:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save korun/7416263 to your computer and use it in GitHub Desktop.
Save korun/7416263 to your computer and use it in GitHub Desktop.
How to update a fork from the original repository? The answer in this article.
git remote add --track master repo_orig SOME_REPO.git
# Verify new remote
git remote -v
git fetch repo_orig
git merge repo_orig/master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment