author | Shawn Bohrer <shawn.bohrer@gmail.com> | |
Tue, 15 Apr 2008 03:14:09 +0000 (22:14 -0500) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Tue, 15 Apr 2008 06:14:58 +0000 (23:14 -0700) | ||
commit | f2d0df7148a1b9ee69bd69a365ffcd1965872451 | |
tree | 744c03640836faf926e71766b030faab7942203f | tree | snapshot |
parent | f669ac0be901e19a8948c9b04af63d23ebae8003 | commit | diff |
git clean: Don't automatically remove directories when run within subdirectory
When git clean is run from a subdirectory it should follow the normal
policy and only remove directories if they are passed in as a pathspec,
or -d is specified.
The fix is to send len which could be shorter than ent->len because we
have stripped the trailing '/' that read_directory adds. Additionaly
match_one() was modified to allow a name[] that is not NUL terminated.
This allows us to check if the name matched the pathspec exactly
instead of recursively.
Signed-off-by: Shawn Bohrer <shawn.bohrer@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
When git clean is run from a subdirectory it should follow the normal
policy and only remove directories if they are passed in as a pathspec,
or -d is specified.
The fix is to send len which could be shorter than ent->len because we
have stripped the trailing '/' that read_directory adds. Additionaly
match_one() was modified to allow a name[] that is not NUL terminated.
This allows us to check if the name matched the pathspec exactly
instead of recursively.
Signed-off-by: Shawn Bohrer <shawn.bohrer@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-clean.c | diff | blob | history | |
dir.c | diff | blob | history |