How can I make git log order based on author's timestamp?

后端 未结 4 493
迷失自我
迷失自我 2020-12-04 23:16

I use a fairly complex git-log command involving --date-order to get an overview of my repository\'s status; but unfortunately, --date-order<

4条回答
  •  情歌与酒
    2020-12-04 23:49

    git version 1.8.4 added an --author-date-order argument to git log; according to the release notes, "the output is topologically sorted and commits in parallel histories are shown intermixed together based on the author timestamp."

提交回复
热议问题