分支情况:
dev
location
* master
new
操作的时候使用命令:
git merge location
然后会出现commit message的注释
请问各位是什么地方出错了?
phpcn_u15822017-04-25 09:05:34
何も問題ありません...
git help merge
を使用すると、git merge
のドキュメントが表示されます。 git help merge
,就会看到git merge
的文档。
然后它提到:
Then "git merge topic" will replay the changes made on the topic branch since it perged 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
それからそれは次のように述べました:
--no-commit
を追加できます。この方法では、コミット メッセージは生成されません。ただし、この場合、マージの結果を区別するのは簡単ではありません。 #🎜🎜#