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
Feel free to use this one:
git log --pretty="%C(Yellow)%h %C(reset)%ad (%C(Green)%cr%C(reset))%x09 %C(Cyan)%an: %C(reset)%s" -7
Note the -7 at the end, to show only the last 7 entries.
-7
Look: