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
Try git log --pretty=fuller, it will show you:- Author: Author Date: Commit: Commit Date:
Hope this helps.