The shortest possible output from git log containing author and date

前端 未结 13 1663
我在风中等你
我在风中等你 2020-12-02 03:12

How can I show a git log output with (at least) this information:

* author
* commit date
* change

I want it compressed to one line per log

相关标签:
13条回答
  • 2020-12-02 04:04

    Try git log --pretty=fuller, it will show you:- Author: Author Date: Commit: Commit Date:

    Hope this helps.

    0 讨论(0)
提交回复
热议问题