summaryrefslogtreecommitdiff
path: root/commit.d/40git-rm
blob: acf7c37ce2991ba902f8be4e62b9bca2c662e480 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
set -e

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