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

10 lines
157 B
Bash

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