X-Git-Url: http://git.scottworley.com/pinch/blobdiff_plain/420bd8c9c431223f9299477dc885d2c9d9f077c5..ac38f5a21500ad0e7fd8dac229a6dbadc9a14bfa:/git-pre-commit-hook

diff --git a/git-pre-commit-hook b/git-pre-commit-hook
index 85b4445..ce47614 100755
--- a/git-pre-commit-hook
+++ b/git-pre-commit-hook
@@ -17,6 +17,16 @@ D=$(mktemp -d)
 git checkout-index --prefix="$D/" -a
 pushd "$D"
 
+# So we don't confuse the inner git invocations inside the tests with
+# the outer git invocation that's trying to commit a change.
+unset GIT_AUTHOR_DATE
+unset GIT_AUTHOR_EMAIL
+unset GIT_AUTHOR_NAME
+unset GIT_CONFIG_PARAMETERS
+unset GIT_EXEC_PATH
+unset GIT_INDEX_FILE
+unset GIT_PREFIX
+
 nix-shell --arg lint true --run './test.sh lint'
 
 popd