Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
#!/bin/bash | |
if [ $# -ne 1 ]; then | |
echo "Usage: git-commit-size.sh <commit hash>" 1>&2 | |
exit 1 | |
fi | |
HASH=$1 | |
ITEM_LIST="`git diff-tree -r -c -M -C --no-commit-id $HASH`" |