blob: b95771fa5940a40e36a65cd0e1ab0ab0f6e39a74 (
plain)
1
2
3
4
5
6
7
8
|
#!/usr/bin/env bash
case "$1" in
rm)
echo "The command 'rm' is denied. Use 'git rm' if the file or the directory is tracked by git. If not, request deletion to user.";;
esac
exit 2
|