6 lines
146 B
Bash
Executable file
6 lines
146 B
Bash
Executable file
#!/bin/sh
|
|
|
|
local_hook="$HOME"/.git_template.local/hooks/post-checkout
|
|
[ -f "$local_hook" ] && . "$local_hook"
|
|
|
|
.git/hooks/ctags >/dev/null 2>&1 &
|