https://github.com/git/git
Revision a204756a45bd357280c156d01858138712493dfa authored by Junio C Hamano on 26 February 2006, 23:16:41 UTC, committed by Junio C Hamano on 26 February 2006, 23:16:41 UTC
These two sample hooks try to detect and use the corresponding
commit hook from the same repository.  However, they forgot to
set up GIT_DIR for their own use, so was not in effect.

Signed-off-by: Junio C Hamano <junkio@cox.net>
1 parent 6d5129a
Raw File
Tip revision: a204756a45bd357280c156d01858138712493dfa authored by Junio C Hamano on 26 February 2006, 23:16:41 UTC
sample hooks template.
Tip revision: a204756
git-add.sh
#!/bin/sh

USAGE='[-n] [-v] <file>...'
SUBDIRECTORY_OK='Yes'
. git-sh-setup

show_only=
verbose=
while : ; do
  case "$1" in
    -n)
	show_only=true
	;;
    -v)
	verbose=--verbose
	;;
    --)
	shift
	break
	;;
    -*)
	usage
	;;
    *)
	break
	;;
  esac
  shift
done

if test -f "$GIT_DIR/info/exclude"
then
	git-ls-files -z \
	--exclude-from="$GIT_DIR/info/exclude" \
	--others --exclude-per-directory=.gitignore -- "$@"
else
	git-ls-files -z \
	--others --exclude-per-directory=.gitignore -- "$@"
fi |
case "$show_only" in
true)
	xargs -0 echo ;;
*)
	git-update-index --add $verbose -z --stdin ;;
esac
back to top