Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个本地分支test,我想从远程分支变基,test我该怎么做?我已经尝试过git rebase origin test,但是不久前有人推送的更改没有重新定位到我的本地?
test
git rebase origin test
您必须首先从服务器获取数据(这不会影响您的分支,但会origin/test使用远程更改更新分支)。
origin/test
git fetch
然后你可以做你的变基
git rebase origin/test
您现在可以推送您的分支test
git push origin test