How can I show a blank line between each line on the output of git log --oneline?
git log --oneline
You could achieve that by simpling recreating what --oneline is doing in a custom format, and add a newline.
--oneline
git log --pretty="%C(auto)%h %d %s%n"