Compare commits

..

No commits in common. "8d4d6bf2cc773f8eeb10400b3f46ca4576c31390" and "05d545927ac6d49f6a4d287c43dc72e661749550" have entirely different histories.

2 changed files with 0 additions and 9 deletions

View file

@ -1,9 +0,0 @@
#!/usr/bin/env bash
while read precommit postcommit refname
do
echo "precommit: ${precommit}; postcommit: ${postcommit}; refname: ${refname}"
if [[ "${precommit}" != "0000000000000000000000000000000000000000" ]]; then
git diff --name-status $precommit $postcommit
fi
done