summaryrefslogtreecommitdiff
path: root/bin/pre-commit
diff options
context:
space:
mode:
Diffstat (limited to 'bin/pre-commit')
-rwxr-xr-xbin/pre-commit16
1 files changed, 0 insertions, 16 deletions
diff --git a/bin/pre-commit b/bin/pre-commit
deleted file mode 100755
index b68ba3d..0000000
--- a/bin/pre-commit
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-LOCK_FILE=".git/.amend-lock"
-if [ -f "$LOCK_FILE" ]; then
- rm "$LOCK_FILE"
- exit 0
-fi
-touch "$LOCK_FILE"
-
-export GIT_COMMITTER_NAME="Qrius"
-export GIT_COMMITTER_EMAIL="[email protected]"
-export GIT_AUTHOR_NAME="Qrius"
-export GIT_AUTHOR_EMAIL="[email protected]"
-
-echo "Doing commit amend"
-git commit --amend --no-edit --author="$GIT_AUTHOR_NAME <$GIT_AUTHOR_EMAIL>"