aboutsummaryrefslogtreecommitdiff
path: root/git-hooks
diff options
context:
space:
mode:
Diffstat (limited to 'git-hooks')
-rwxr-xr-xgit-hooks8
1 files changed, 4 insertions, 4 deletions
diff --git a/git-hooks b/git-hooks
index 8ee996a..ed1e66f 100755
--- a/git-hooks
+++ b/git-hooks
@@ -162,7 +162,7 @@ git-hooks run "$0" "$@"';
fi
}
-function installglobal
+function install_global
{
TEMPLATE="$HOME/.git-template-with-git-hooks"
if [ ! -d "${TEMPLATE}" ] ; then
@@ -181,7 +181,7 @@ echo \"git hooks not installed in this repository. Run 'git hooks --install' to
echo "Git global config init.templatedir is now set to ${TEMPLATE}"
}
-function uninstallglobal
+function uninstall_global
{
git config --global --unset init.templatedir
}
@@ -206,10 +206,10 @@ case $1 in
install_hooks "$1"
;;
--installglobal )
- installglobal
+ install_global
;;
--uninstallglobal )
- uninstallglobal
+ uninstall_global
;;
-h|--help|-? )
echo 'Git Hooks'