Last active
December 28, 2015 00:49
-
-
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.
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
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