Created
November 1, 2013 03:37
-
-
Save vladvinnikov/7260651 to your computer and use it in GitHub Desktop.
Git commit statistics
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git shortlog --after=2013-09-30 --until=today | |
git log --after=2013-09-30 --until=today --oneline --shortstat | |
git log --numstat --pretty="%H" --after=2013-09-30 --until=today | awk 'NF==3 {plus+=$1; minus+=$2} END {printf("+%d, -%d\n", plus, minus)}' | |
git diff commit1..commit2 --shortstat |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment