用于科创的git log美化输出

git log --reverse --pretty=format:'%cd %s' --date=short > a.txt

更好的:

git log --reverse --pretty=format:"%cd%n%B" --date=short --reverse > a.txt

参考:

https://ruby-china.org/topics/939

原文地址:https://www.cnblogs.com/turtlegood/p/4858502.html