Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
举个简单的例子,我使用合并策略“ours”将一个主题分支合并到主分支。这个合并创建了 H 提交,在我做了一些其他的提交之后。
A---B---C topic / \ D---E---F---G---H---I---J---K master
我想知道,之后是否可以确定在提交 H 上使用了哪种合并策略?
不,这是不可能的——git 不存储这样的元数据。您可以将此类信息存储在提交消息中,但这完全取决于用户。
您可以通过查看冲突的解决方式来很好地猜测合并策略:
git log -p -c -1 YOURMERGE