我想在脚本中运行git pull
而不要闯入编辑器要求发表评论。
这是可能的还是我需要git fetch
然后git merge -m
?
似乎应该有办法将-m
传递给合并。
答案 0 :(得分:1)
如果您的更改无法合并到origin
分支历史记录之上,您可以先fetch
然后rebase
加入其中:
git checkout your-branch
git fetch origin/your-branch
git rebase origin/your-branch
您可以在此处获取更多信息:https://git-scm.com/book/en/v2/Git-Branching-Rebasing
但是如果你想保持git历史记录的原始序列提交,除了将origin
分支合并到你的本地分支之外别无他法。