diff options
author | Michael J Gruber <git@drmicha.warpmail.net> | 2009-01-14 18:03:22 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-01-14 09:34:22 -0800 |
commit | be17262d13f5f3df5ee9635b11dad180613e9cbd (patch) | |
tree | 34fb5f904503c7af364219ab030d5516262d0197 /builtin-mv.c | |
parent | 3772923f1429f2888074e698c36c071b864effe3 (diff) | |
download | git-be17262d13f5f3df5ee9635b11dad180613e9cbd.tar.gz git-be17262d13f5f3df5ee9635b11dad180613e9cbd.tar.xz |
fix handling of multiple untracked files for git mv -k
The "-k" option to "git mv" should allow specifying multiple untracked
files. Currently, multiple untracked files raise an assertion if they
appear consecutively as arguments. Fix this by decrementing the loop
index after removing one entry from the array of arguments.
Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-mv.c')
-rw-r--r-- | builtin-mv.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin-mv.c b/builtin-mv.c index 4f65b5ae9..bce995929 100644 --- a/builtin-mv.c +++ b/builtin-mv.c @@ -192,6 +192,7 @@ int cmd_mv(int argc, const char **argv, const char *prefix) memmove(destination + i, destination + i + 1, (argc - i) * sizeof(char *)); + i--; } } else die ("%s, source=%s, destination=%s", |