git merge的时候总是会有一条commit message,请问这是操作不当吗?

发布于 2022-08-28 23:27:04 字数 189 浏览 28 评论 0

分支情况:

  dev
  location
* master
  new

操作的时候使用命令:

git merge location

然后会出现commit message的注释

请问各位是什么地方出错了?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

夜司空 2022-09-04 23:27:04

没有错……
如果你使用git help merge,就会看到git merge的文档。
然后它提到:

Then "git merge topic" will replay the changes made on the topic branch since it diverged from master (i.e., E) until its current commit (C) on top of master,and record the result in a new commit along with the names of the two parent commits and a log message from the user describing the changes.

merge前

                  A---B---C topic
                /
           D---E---F---G master

merge后

                 A---B---C topic
                /         \
           D---E---F---G---H master

所以说,那个commit message是自动添加的。

如果你实在讨厌这个commit,可以在merge时添加--no-commit。这样就不会产生commit message了。不过我不推荐这么做,这样的话,就不容易区分merge的结果了。

蓦然回首 2022-09-04 23:27:04

除了使用--no-commit 在合并以前就取消提交以外,如果你已经合并了,但是不想提交,可以先
git commit
然后
git log找到上一个版本commit id(下文用xxxx指代)
git reset xxxx
然后再
git add .
git commit --amend就可以把合并进来的内容,放进之前的commit中了

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文