我在执行 git pull时使用的是我发现的默认拉 --rebase的方法:
现在我想做'git pull' - 默认情况下只拉当前分支:你如何让git总是从特定分支拉?. 但是,当 git 默认配置为 rebase 时,此答案不起作用。
有没有办法让 git pull 总是变基并只拉当前分支?
我在执行 git pull时使用的是我发现的默认拉 --rebase的方法:
现在我想做'git pull' - 默认情况下只拉当前分支:你如何让git总是从特定分支拉?. 但是,当 git 默认配置为 rebase 时,此答案不起作用。
有没有办法让 git pull 总是变基并只拉当前分支?
考虑到这个答案提到:
如果你有,branch.autosetuprebase = always
那么它还会添加:
rebase = true
之后,您可以git branch --set-upstream master origin/master
配置分支的 rebase 属性:
git config branch.master.rebase false