Git One-Liners

Show all the commits between 2 points

$ git rev-list 5450e6f1..HEAD | while read rev; do git show -q --oneline ${rev} ; done

Show log in one-line format with stat diff

$ git log --oneline --stat --decorate