* [BUG] git-mv fails with "source directory is empty" when it should not @ 2006-12-03 13:57 Sergey Vlasov 2006-12-03 19:42 ` [PATCH] git-mv: search more precisely for source directory in index Johannes Schindelin 0 siblings, 1 reply; 3+ messages in thread From: Sergey Vlasov @ 2006-12-03 13:57 UTC (permalink / raw) To: Junio C Hamano; +Cc: git [-- Attachment #1: Type: text/plain, Size: 922 bytes --] Hello! In some cases git-mv fails with "source directory is empty" when this is definitely not the case. Example (run in an empty directory): $ git init-db defaulting to local storage area $ mkdir ab; touch ab.c; touch ab/d $ git add . $ git commit -m 'initial' Committing initial tree f2dd231ec22a1d4376d4a6eadf49d87dd34ac2a0 $ git mv ab a fatal: source directory is empty, source=ab, destination=a However, at this point the source directory is definitely not empty: $ git ls-tree -r HEAD 100644 blob e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 ab.c 100644 blob e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 ab/d $ ls -ogR .: total 4 drwxr-xr-x 2 4096 Dec 3 16:47 ab -rw-r--r-- 1 0 Dec 3 16:47 ab.c ./ab: total 0 -rw-r--r-- 1 0 Dec 3 16:47 d $ git status nothing to commit This happens both in v1.4.4.1 and in current 'master' (v1.4.4.1-g278fcd7). -- Sergey Vlasov [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 189 bytes --] ^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] git-mv: search more precisely for source directory in index 2006-12-03 13:57 [BUG] git-mv fails with "source directory is empty" when it should not Sergey Vlasov @ 2006-12-03 19:42 ` Johannes Schindelin 2006-12-03 20:04 ` Sergey Vlasov 0 siblings, 1 reply; 3+ messages in thread From: Johannes Schindelin @ 2006-12-03 19:42 UTC (permalink / raw) To: Sergey Vlasov; +Cc: Junio C Hamano, git A move of a directory should find the entries in the index by searching for the name _including_ the slash. Otherwise, the directory can be shadowed by a file when it matches the prefix and is lexicographically smaller, e.g. "ab.c" shadows "ab/". Noticed by Sergey Vlasov. Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> --- Good catch. Thanks! builtin-mv.c | 11 +++++++---- 1 files changed, 7 insertions(+), 4 deletions(-) diff --git a/builtin-mv.c b/builtin-mv.c index 54dd3bf..d14a4a7 100644 --- a/builtin-mv.c +++ b/builtin-mv.c @@ -146,21 +146,24 @@ int cmd_mv(int argc, const char **argv, const char *prefix) && lstat(dst, &st) == 0) bad = "cannot move directory over file"; else if (src_is_dir) { + const char *src_w_slash = add_slash(src); + int len_w_slash = length + 1; int first, last; modes[i] = WORKING_DIRECTORY; - first = cache_name_pos(src, length); + first = cache_name_pos(src_w_slash, len_w_slash); if (first >= 0) - die ("Huh? %s/ is in index?", src); + die ("Huh? %.*s is in index?", + len_w_slash, src_w_slash); first = -1 - first; for (last = first; last < active_nr; last++) { const char *path = active_cache[last]->name; - if (strncmp(path, src, length) - || path[length] != '/') + if (strncmp(path, src_w_slash, len_w_slash)) break; } + free((char *)src_w_slash); if (last - first < 1) bad = "source directory is empty"; -- 1.4.4.1.g317bd ^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] git-mv: search more precisely for source directory in index 2006-12-03 19:42 ` [PATCH] git-mv: search more precisely for source directory in index Johannes Schindelin @ 2006-12-03 20:04 ` Sergey Vlasov 0 siblings, 0 replies; 3+ messages in thread From: Sergey Vlasov @ 2006-12-03 20:04 UTC (permalink / raw) To: Johannes Schindelin; +Cc: Junio C Hamano, git [-- Attachment #1: Type: text/plain, Size: 1755 bytes --] On Sun, Dec 03, 2006 at 08:42:47PM +0100, Johannes Schindelin wrote: > > A move of a directory should find the entries in the index by > searching for the name _including_ the slash. Otherwise, the > directory can be shadowed by a file when it matches the prefix > and is lexicographically smaller, e.g. "ab.c" shadows "ab/". Thanks - seems to work now, and the existing tests are not broken. > Noticed by Sergey Vlasov. > > Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de> > --- > > Good catch. Thanks! > > builtin-mv.c | 11 +++++++---- > 1 files changed, 7 insertions(+), 4 deletions(-) > > diff --git a/builtin-mv.c b/builtin-mv.c > index 54dd3bf..d14a4a7 100644 > --- a/builtin-mv.c > +++ b/builtin-mv.c > @@ -146,21 +146,24 @@ int cmd_mv(int argc, const char **argv, const char *prefix) > && lstat(dst, &st) == 0) > bad = "cannot move directory over file"; > else if (src_is_dir) { > + const char *src_w_slash = add_slash(src); > + int len_w_slash = length + 1; > int first, last; > > modes[i] = WORKING_DIRECTORY; > > - first = cache_name_pos(src, length); > + first = cache_name_pos(src_w_slash, len_w_slash); > if (first >= 0) > - die ("Huh? %s/ is in index?", src); > + die ("Huh? %.*s is in index?", > + len_w_slash, src_w_slash); > > first = -1 - first; > for (last = first; last < active_nr; last++) { > const char *path = active_cache[last]->name; > - if (strncmp(path, src, length) > - || path[length] != '/') > + if (strncmp(path, src_w_slash, len_w_slash)) > break; > } > + free((char *)src_w_slash); > > if (last - first < 1) > bad = "source directory is empty"; [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 189 bytes --] ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2006-12-03 20:04 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2006-12-03 13:57 [BUG] git-mv fails with "source directory is empty" when it should not Sergey Vlasov 2006-12-03 19:42 ` [PATCH] git-mv: search more precisely for source directory in index Johannes Schindelin 2006-12-03 20:04 ` Sergey Vlasov
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).