2
0
forked from Wavyzz/dolibarr
Files
dolibarr-fork/dev/tools/github_authors_and_commits_peryear.sh
Laurent Destailleur 4faaa81277 Rename tool
2021-09-19 01:11:28 +02:00

19 lines
459 B
Bash
Executable File

#!/bin/sh
if [ "x$1" = "x" ]; then
echo "Usage: $0 YEAR"
exit
fi
FROM=$1-01-01
TO=$1-12-31
echo "Number of contributors for the year"
echo "git log --since $FROM --before $TO | grep ^Author | sort -u -f -i -b | wc -l"
git log --since $FROM --before $TO | grep ^Author | sort -u -f -i -b | wc -l
echo "Number of commit for the year"
git log --pretty='format:%cd' --date=format:'%Y' | uniq -c | awk '{print "Year: "$2", commits: "$1}' | grep "Year: $1"