Git Pull with -m功能

时间:2018-01-24 20:10:51

标签: git

我想在脚本中运行git pull而不要闯入编辑器要求发表评论。

这是可能的还是我需要git fetch然后git merge -m

似乎应该有办法将-m传递给合并。

1 个答案:

答案 0 :(得分:1)

如果您的更改无法合并到origin分支历史记录之上,您可以先fetch然后rebase加入其中:

  1. git checkout your-branch
  2. git fetch origin/your-branch
  3. git rebase origin/your-branch
  4. 您可以在此处获取更多信息:https://git-scm.com/book/en/v2/Git-Branching-Rebasing

    但是如果你想保持git历史记录的原始序列提交,除了将origin分支合并到你的本地分支之外别无他法。