何も問題ありません... 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.
何も問題ありません...
git help merge
を使用すると、git merge
のドキュメントが表示されます。git help merge
,就会看到git merge
的文档。然后它提到:
merge前
merge后
所以说,那个commit message是自动添加的。
如果你实在讨厌这个commit,可以在merge时添加
#🎜🎜#その後、「git merge topic」は、マスター (E) から現在のコミット (C) までマスター上にパージされてからトピック ブランチに加えられた変更を再生し、その結果を新しいコミットに記録します。 2 つの親コミットの名前と、変更を説明するユーザーからのログ メッセージが含まれます。#🎜🎜# #🎜🎜#統合前#🎜🎜# リーリー #🎜🎜#マージ後#🎜🎜# リーリー #🎜🎜#つまり、コミットメッセージが自動的に追加されます。 #🎜🎜# #🎜🎜#このコミットが本当に気に入らない場合は、マージ時に--no-commit
それからそれは次のように述べました:--no-commit
を追加できます。この方法では、コミット メッセージは生成されません。ただし、この場合、マージの結果を区別するのは簡単ではありません。 #🎜🎜#