summaryrefslogtreecommitdiff
path: root/commit.d/40git-rm
diff options
context:
space:
mode:
Diffstat (limited to 'commit.d/40git-rm')
-rwxr-xr-xcommit.d/40git-rm13
1 files changed, 0 insertions, 13 deletions
diff --git a/commit.d/40git-rm b/commit.d/40git-rm
deleted file mode 100755
index d2c51c2..0000000
--- a/commit.d/40git-rm
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-set -e
-
-IFS='
-'
-
-if [ "$VCS" = git ] && [ -d .git ]; then
- for file in $(git ls-files --deleted); do
- if [ ! -d "$file" ]; then
- git rm --quiet "$file"
- fi
- done
-fi