dotfiles/dot_config/git/template/hooks/executable_post-checkout
2024-09-26 17:22:27 -05:00

10 lines
159 B
Bash

#!/bin/sh
local_hook="$HOME"/.git_template.local/hooks/post-checkout
if [ -f "$local_hook" ]; then
. "$local_hook";
fi
.git/hooks/ctags >/dev/null 2>&1 &