Git:三路合并后,提交在 git 日志中的显示顺序是什么?

Git: After a three way merge, in what order are the commits displayed in git log?

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

假设这是我在进行三向合并后的快照(H 是合并提交)。现在,如果我 运行 git 记录,它显示的提交顺序是什么?

Reverse chronological order,除非你加上各种flag。要确保 children 出现在 parents 之前,请选择提交或作者日期排序,或地形排序。