4 die "usage: git add [-n] [-v] <file>..."
27 GIT_DIR=$(git-rev-parse --git-dir) || exit
29 if test -f "$GIT_DIR/info/exclude"
32 --exclude-from="$GIT_DIR/info/exclude" \
33 --others --exclude-per-directory=.gitignore -- "$@"
36 --others --exclude-per-directory=.gitignore -- "$@"
42 git-update-index --add $verbose -z --stdin ;;