bullseye/script/install-git-hooks
2012-08-27 09:39:34 -04:00

7 lines
94 B
Bash
Executable File

#!/bin/bash
for hook in script/hooks/* ; do
ln -sf $PWD/$hook .git/hooks/${hook##*/}
done