Added diff count

This commit is contained in:
2019-01-05 01:17:12 +01:00
parent 3ced822ba6
commit 56dfc937b4

View File

@@ -14,8 +14,14 @@ STARTDATE="01 Jan 2018"
# Switch into the REPODIR
pushd $REPODIR
# total commits
commitcounter=0
# total diff stats
totalfiles=0
totalinsertions=0
totaldeletions=0
# Iterate over all subdirectories
for dir in $REPODIR/*/
do
@@ -25,11 +31,28 @@ do
# enter directory
cd ${dir##*/}
# --- RUN COMMANDS
# show amount of commits of all users
committemp=$(git rev-list --count --all --author=$REPOUSER --since="$STARTDATE")
# Add to the total commit counter
commitcounter=$((commitcounter + committemp))
# calculate total changes between given date and HEAD
extractdiff=$(git diff @{"$STARTDATE"} HEAD --shortstat) 2>/dev/null
# set the separator to ,
IFS=','
array=( $extractdiff )
totalfiles=$(( ${array[0]//[!0-9]} + totalfiles))
totalinsertions=$(( ${array[1]//[!0-9]} + totalinsertions))
totaldeletions=$(( ${array[2]//[!0-9]} + totaldeletions))
# ------------------
# Output the commit counter of the current iteration
echo $committemp
# go back
@@ -37,6 +60,9 @@ do
done
echo "Total commits since $STARTDATE: $commitcounter"
echo "Total files changed: $totalfiles"
echo "Total insertions: $totalinsertions"
echo "Total deletions: $totaldeletions"
# Switch back to the original directory state
popd