Last active
October 27, 2016 16:50
-
-
Save ericboehs/00d3e27c993b5b951a79312f6b51dbf5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
for file in post-checkout post-commit post-merge post-rewrite; do | |
curl -sO "https://gist.githubusercontent.com/ericboehs/00d3e27c993b5b951a79312f6b51dbf5/raw/$file" | |
chmod +x $file | |
mv $file .git/hooks/ | |
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
( | |
while ls .git/bin_setup_lock* 1> /dev/null 2>&1; do | |
sleep 2 | |
done | |
bin/update > /dev/null 2>&1 | |
) & |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
( | |
while ls .git/bin_setup_lock* 1> /dev/null 2>&1; do | |
sleep 2 | |
done | |
bin/update > /dev/null 2>&1 | |
) & |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
( | |
while ls .git/bin_setup_lock* 1> /dev/null 2>&1; do | |
sleep 2 | |
done | |
bin/update > /dev/null 2>&1 | |
) & |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
case "$1" in | |
rebase) exec .git/hooks/post-merge ;; | |
esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To install, run:
curl -sL https://gist.github.com/ericboehs/00d3e27c993b5b951a79312f6b51dbf5/raw/bin_update_hook_init.sh | bash
from your project root.