Git One-Liners
Contents
Show all the commits between 2 points
$ git rev-list 5450e6f1..HEAD | while read rev; do git show -q --oneline ${rev} ; doneShow log in one-line format with stat diff
$ git log --oneline --stat --decorate