Skip to content

Instantly share code, notes, and snippets.

@crypto-jeronimo
Last active March 17, 2018 13:15
Show Gist options
  • Save crypto-jeronimo/bad4f75392d2dc0f5e49d5dd01472a2f to your computer and use it in GitHub Desktop.
Save crypto-jeronimo/bad4f75392d2dc0f5e49d5dd01472a2f to your computer and use it in GitHub Desktop.
Bring a fork up-to-date with main repository

Originally retrieved from here.

1. Clone your fork:

git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream

3. Bring your fork up-to-date with original repo, based on changes on their side:

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