How to keep GitHub Fork Updated (no merge - the right way)
Here is a solution for keeping your fork updated without merge and clean history.
git clone git@github.com:[username]/[repo].gitgit remote add upstream git@github.com:[username2]/[repo].gitWhen something changes in the forked repo
git fetch upstreamgit checkout [branch]git rebase upstream/[branch]