我正在使用我在执行 git pull 时找到的 pull --rebase by default 方法:

现在我想让 'git pull' - 默认情况下只 pull 当前分支: How do you get git to always pull from a specific branch? 。但是,当 git 默认配置为 rebase 时,此答案不起作用。

有没有办法让 git pull 总是 rebase 并只 pull 当前分支?

最佳答案

考虑到 this answer 提到:

如果你有 branch.autosetuprebase = always 那么它还会添加:

rebase = true

在执行 git branch --set-upstream master origin/master 之后,您可以配置分支的 rebase 属性:
git config branch.master.rebase false

关于git - 使 git pull (rebase) 默认只从当前下游分支 pull ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11443665/

10-13 08:43