This file contains hidden or 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 log --shortstat --format=format:"%cd" --date=short --no-merges | sed -e '/^$/d;N;s/\n//;s/files changed, //;s/insertions(+), //;s/ deletions(-)//' | |
| just delta info: | |
| git log --shortstat --format=format:"" --no-merges --all | sed '/^$/d;s/[a-z()+,-]//g' | |
| git log --format=format:"%cd" --date=short --no-merges --all | wc -l | |
| num commits total | |
| git log --format=format:"%cd" --date=short --no-merges --all | uniq -c | |
| num commits for each day |
NewerOlder