Skip to content

Instantly share code, notes, and snippets.

@gtback
Created August 31, 2015 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gtback/9d177dda228d9479e117 to your computer and use it in GitHub Desktop.
Save gtback/9d177dda228d9479e117 to your computer and use it in GitHub Desktop.
Install git hooks
#!/bin/bash
cd ../.git/hooks
echo PWD: $PWD
for i in $( ls ../../hooks ); do
echo command: ln -s ../../hooks/$i .
ln -v -sf ../../hooks/$i .
done
@gtback
Copy link
Author

gtback commented Aug 31, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment