bullseye/script/install-git-hooks

7 lines
94 B
Plaintext
Raw Normal View History

2012-08-27 13:39:34 +00:00
#!/bin/bash
for hook in script/hooks/* ; do
ln -sf $PWD/$hook .git/hooks/${hook##*/}
done