Git One-Liners
Wed 29 January 2020Show 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
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