Skip to content

Instantly share code, notes, and snippets.

View bendjones's full-sized avatar

Ben D. Jones bendjones

View GitHub Profile
@bendjones
bendjones / gist:650a6eb7a2dc73838c8c
Last active August 29, 2015 14:08 — forked from CristinaSolana/gist:1885435
Tracking changes from your fork

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