3 simple steps: (this assumes you have setup a remote branch called upstream that points at the original repo)
- git fetch upstream
- git checkout master
- git merge upstream/master
And to setup a remote called upstream that points at the original repo:
git remote add upstream {url to the original repo}
for more info see: https://help.github.com/articles/syncing-a-fork/
No comments:
Post a Comment