Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
builtin-add: fix unmatched pathspec warnings.
"git add Documentation/" when Documentation directory exists does not barf (as it should not), but "git add ." barfed when it did not add anything. This was because we checked for the path prefix ("Documentation/" in the former case, and an empty string in the latter case) for existence, and lstat("", &st) would say "Huh?". Signed-off-by: Junio C Hamano <junkio@cox.net>
- Loading branch information