kamranahmedse / git-standup

Recall what you did on the last working day. Psst! or be nosy and find what someone else in your team did ;-)
MIT License
7.63k stars 304 forks source link

Option to show Author Date instead of Committer Date #97

Closed kzap closed 5 years ago

kzap commented 5 years ago

Solves #92

This sets the author date in GIT_PRETTY_FORMAT if -R option is used

Commit dates change when there are rebases or merges and you want to know when the commit was originally made and not when it was added to a branch or rebased on.

Now we can with the -R option

$ git-standup -D local -R
e75ed6a - Commit Message (Thu Nov 22 11:18:27 2018) <Andre Marcelo-Tanner>
$ git-standup -D local
e75ed6a - Commit Message (Thu Nov 22 13:19:00 2018) <Andre Marcelo-Tanner>
kamranahmedse commented 5 years ago

Thanks