1#!/bin/sh 2 3if [ -x $0.local ]; then 4 $0.local "$@" || exit $? 5fi 6 7hook=$(git rev-parse --show-toplevel)"/util/git-hooks/"$(basename $0) 8if [ -x $hook ]; then 9 $hook "$@" || exit $? 10fi 11