Compare commits

..

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

3 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