Is there a way to cause git-reflog to show a date alongside each entry?

后端 未结 6 597
难免孤独
难免孤独 2020-12-07 07:12

The git-reflog command doesn\'t by default show a date alongside each entry, which strikes me as a strange oversight; I think this would be very helpful.

Are there a

6条回答
  •  忘掉有多难
    2020-12-07 07:54

    Tell git in what format, either counted reflog entries or timed reflog entries, i.e.

    $ git reflog @{now}
    
    $ git reflog @{0}
    

提交回复
热议问题