在网上查找了解决办法,最终在https://stackoverflow.com/questions/35842492/git-cannot-rebase-onto-multiple-branches中找到了正确答案。
在我本机,将git pull --rebase拆分成两条命令就可解决
git fetch --all --prune && git rebase origin/branch
不过仍然会报错,不过不影响结果
在网上查找了解决办法,最终在https://stackoverflow.com/questions/35842492/git-cannot-rebase-onto-multiple-branches中找到了正确答案。
在我本机,将git pull --rebase拆分成两条命令就可解决
git fetch --all --prune && git rebase origin/branch
不过仍然会报错,不过不影响结果