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