Skip to content

Commit 2c63d6e

Browse files
johnkeepinggitster
authored andcommitted
reset: handle submodule with trailing slash
When using tab-completion, a directory path will often end with a trailing slash which currently confuses "git reset" when dealing with submodules. Now that we have parse_pathspec we can easily handle this by simply adding the PATHSPEC_STRIP_SUBMODULE_SLASH_CHEAP flag. To do this, we need to move the read_cache() call before the parse_pathspec() call. All of the existing paths through cmd_reset() that do not die early already call read_cache() at some point, so there is no performance impact to doing this in the common case. Signed-off-by: John Keeping <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent f8bc2ac commit 2c63d6e

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

builtin/reset.c

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,6 @@ static int read_from_tree(const struct pathspec *pathspec,
143143
opt.output_format = DIFF_FORMAT_CALLBACK;
144144
opt.format_callback = update_index_from_diff;
145145

146-
read_cache();
147146
if (do_diff_cache(tree_sha1, &opt))
148147
return 1;
149148
diffcore_std(&opt);
@@ -169,7 +168,7 @@ static void set_reflog_message(struct strbuf *sb, const char *action,
169168

170169
static void die_if_unmerged_cache(int reset_type)
171170
{
172-
if (is_merge() || read_cache() < 0 || unmerged_cache())
171+
if (is_merge() || unmerged_cache())
173172
die(_("Cannot do a %s reset in the middle of a merge."),
174173
_(reset_type_names[reset_type]));
175174

@@ -220,8 +219,13 @@ static void parse_args(struct pathspec *pathspec,
220219
}
221220
}
222221
*rev_ret = rev;
222+
223+
if (read_cache() < 0)
224+
die(_("index file corrupt"));
225+
223226
parse_pathspec(pathspec, 0,
224227
PATHSPEC_PREFER_FULL |
228+
PATHSPEC_STRIP_SUBMODULE_SLASH_CHEAP |
225229
(patch_mode ? PATHSPEC_PREFIX_ORIGIN : 0),
226230
prefix, argv);
227231
}

t/t7400-submodule-basic.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ test_expect_success 'do not add files from a submodule' '
481481
482482
'
483483

484-
test_expect_success 'gracefully add submodule with a trailing slash' '
484+
test_expect_success 'gracefully add/reset submodule with a trailing slash' '
485485
486486
git reset --hard &&
487487
git commit -m "commit subproject" init &&
@@ -495,7 +495,9 @@ test_expect_success 'gracefully add submodule with a trailing slash' '
495495
git add init/ &&
496496
test_must_fail git diff --exit-code --cached init &&
497497
test $commit = $(git ls-files --stage |
498-
sed -n "s/^160000 \([^ ]*\).*/\1/p")
498+
sed -n "s/^160000 \([^ ]*\).*/\1/p") &&
499+
git reset init/ &&
500+
git diff --exit-code --cached init
499501
500502
'
501503

0 commit comments

Comments
 (0)