简体   繁体   中英

git rebasing from local branch off remote branch

I have a local branch test , and I want to rebase off of the remote branch test , how would I do this? I have tried git rebase origin test , but the changes someone pushed a short while ago aren't being rebased into my local?

You have to first fetch data from the server (this won't affect your branch, but will update the branch origin/test with the remote changes).

git fetch

Then you can do your rebase

git rebase origin/test

You can now push your branch test

git push origin test

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM