lazygit/test/repos/pre_commit_hook.sh
2018-08-12 15:54:59 +10:00

9 lines
167 B
Bash
Executable file

#!/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