Can't perform GitHub rebase: GitHub repository is not a fork android studio code example
Example 1: git pull updates from fork
$ cd github-services
$ git remote add upstream git://github.com/pjhyett/github-services.git
$ git fetch upstream
# then: (like "git pull" which is fetch + merge)
$ git merge upstream/master master
# or, better, replay your local work on top of the fetched branch
# like a "git pull --rebase"
$ git rebase upstream/master
Example 2: get newest version of original in own fork
git pull upstream master