同original repository的master branch rebase的方法: (1)
original repository
master branch rebase
git fetch origin # Updates origin/master git rebase origin/master # Rebases current branch onto origin/master
(2)
git pull --rebase origin master
参考资料: How to rebase local branch with remote master。