X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=git-add.sh;h=13fad820d4758a041222a9285719245f6c8bac18;hb=5b5d4d9e1b31997b3179e6a253d47b7eea03d0fa;hp=b5fe46aa20865d6785390fd22406d32b00a77845;hpb=918db541e0e833b695ee45ee6cf563d018096860;p=git.git diff --git a/git-add.sh b/git-add.sh index b5fe46aa..13fad820 100755 --- a/git-add.sh +++ b/git-add.sh @@ -1,8 +1,8 @@ #!/bin/sh -usage() { - die "usage: git add [-n] [-v] ..." -} +USAGE='[-n] [-v] ...' +SUBDIRECTORY_OK='Yes' +. git-sh-setup show_only= verbose= @@ -24,7 +24,16 @@ while : ; do shift done -GIT_DIR=$(git-rev-parse --git-dir) || exit +# Check misspelled pathspec +case "$#" in +0) ;; +*) + git-ls-files --error-unmatch --others --cached -- "$@" >/dev/null || { + echo >&2 "Maybe you misspelled it?" + exit 1 + } + ;; +esac if test -f "$GIT_DIR/info/exclude" then