7 lines
117 B
Bash
Executable file
7 lines
117 B
Bash
Executable file
#!/bin/sh
|
|
|
|
local_hook="$HOME"/.git_template.local/hooks/pre-push
|
|
|
|
if [ -f "$local_hook" ]; then
|
|
. "$local_hook"
|
|
fi
|