Pages

Tuesday, September 17, 2013

GitHub: Pull in upstream changes

If the original repository you forked your project from gets updated, you can add those updates to your fork by running the following code:
git fetch upstream
# Fetches any new changes from the original repository
git merge upstream/master
# Merges any changes fetched into your working files
Source: Fork A Repo · GitHub Help

No comments: