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
git log --pretty=format:"%H %an %ad"
use --date= to set a date format
--date=
git log --pretty=format:"%H %an %ad" --date=short