如何使用变基而不是合并来提取所有远程更改?
我可以使用 git pull 拉取更改,但它会合并我的本地提交。是否有一个 git rebase 等效项可以用来提取远程更改?
I can pull changes using git pull
, but it merges my local commits. Is there a git rebase
equivalent with which I can pull in remote changes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(4)
~没有更多了~
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是的,你可以
git pull --rebase
。您还可以将其设置为使用 git configbranch.autosetuprebasealways 跟踪分支时的默认拉取行为。如果您想对您正在跟踪的特定类型的分支执行此操作,请将“始终”替换为“远程”或“本地”。
现在您所要做的就是
git pull
。如果由于某种原因你想要进行合并,你可以执行 git pull --no-rebase 。
希望这有帮助。
更新:请参阅下面的评论,了解如何在现有分支上执行此操作。
Yes you can
git pull --rebase
.You can also set that to be the default pull behaviour when you track a branch with
git config branch.autosetuprebase always
. Replace "always" with "remote" or "local" if you want to do it to those specific types of branches that you're tracking.Now all you have to do is
git pull
.If for some reason you want to do a merge, you can do
git pull --no-rebase
.Hope this helps.
UPDATE: see comments below for how to do this on existing branches.