diff --git a/git_template/hooks/pre-push b/git_template/hooks/pre-push new file mode 100755 index 0000000..8535335 --- /dev/null +++ b/git_template/hooks/pre-push @@ -0,0 +1,7 @@ +#!/bin/sh + +local_hook="$HOME"/.git_template.local/hooks/pre-push + +if [ -f "$local_hook" ]; then + . "$local_hook" +fi