Git shortlog 与 date/time
Git shortlog with date/time
提交的 date/time 可以得到 git shortlog 结果吗?
否则是否可以 git 记录到组提交并按作者汇总并仅打印消息和时间?
It is possible to get a git shortlog result with the date/time of the commit?
是的,使用 --format=format:%cI
选项。有关详细信息,请参阅 git-log 手册页中的 "PRETTY FORMATS"。
Otherwise is it possible to get git log to group commits and sum them by author and print out only the message and time?
我找不到。你可以 whip something up with libgit2.
提交的 date/time 可以得到 git shortlog 结果吗?
否则是否可以 git 记录到组提交并按作者汇总并仅打印消息和时间?
It is possible to get a git shortlog result with the date/time of the commit?
是的,使用 --format=format:%cI
选项。有关详细信息,请参阅 git-log 手册页中的 "PRETTY FORMATS"。
Otherwise is it possible to get git log to group commits and sum them by author and print out only the message and time?
我找不到。你可以 whip something up with libgit2.