summaryrefslogtreecommitdiffstats
path: root/test/repos/pre_commit_hook.sh
blob: 8857f41452140f5bb21455ad67fbf9b265671c59 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash
set -ex; rm -rf repo; mkdir repo; cd repo

git init
cp ../pre-commit .git/hooks/pre-commit
chmod +x .git/hooks/pre-commit

echo "file" > file
git add file