We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de02da4 commit 2a59c18Copy full SHA for 2a59c18
git_template/hooks/post-checkout
@@ -1,6 +1,9 @@
1
#!/bin/sh
2
3
local_hook="$HOME"/.git_template.local/hooks/post-checkout
4
-[ -f "$local_hook" ] && . "$local_hook"
+
5
+if [ -f "$local_hook" ]; then
6
+ . "$local_hook";
7
+fi
8
9
.git/hooks/ctags >/dev/null 2>&1 &
git_template/hooks/post-commit
local_hook="$HOME"/.git_template.local/hooks/post-commit
git_template/hooks/post-merge
local_hook="$HOME"/.git_template.local/hooks/post-merge
0 commit comments