Can't perform GitHub rebase: GitHub repository is not a fork code example
Example 1: get newest version of original in own fork
git pull upstream master
Example 2: update fork
git fetch upstream
git checkout master
git merge upstream/master
git push origin