📅  最后修改于: 2022-03-11 14:50:45.346000             🧑  作者: Mango
if you want to rebase a branch based on remote master branch, git rebase origin/master is not enough, it will not get new commits directly from origin/master. You need to git fetch before 'git rebase origin/master'. or you can use another way to rebase a branch. then, your branch is updated to newest commits.