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