Skip to content

Commit c08830d

Browse files
ffyuandagitster
authored andcommitted
mv: check if <destination> is a SKIP_WORKTREE_DIR
Originally, <destination> is assumed to be in the working tree. If it is not found as a directory, then it is determined to be either a regular file path, or error out if used under the second form (move into a directory) of 'git-mv'. Such behavior is not ideal, mainly because Git does not look into the index for <destination>, which could potentially be a SKIP_WORKTREE_DIR, which we need to determine for the later "moving from in-cone to out-of-cone" patch. Change the logic so that Git first check if <destination> is a directory with all its contents sparsified (a SKIP_WORKTREE_DIR). If <destination> is such a sparse directory, then we should modify the index the same way as we would if this were a non-sparse directory. We must be careful to ensure that the <destination> is marked with SKIP_WORKTREE_DIR. Also add a `dst_w_slash` to reuse the result from `add_slash()`, which was everywhere and can be simplified. Helped-by: Derrick Stolee <[email protected]> Helped-by: Victoria Dye <[email protected]> Signed-off-by: Shaoxuan Yuan <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent d57690a commit c08830d

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

builtin/mv.c

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,7 @@ int cmd_mv(int argc, const char **argv, const char *prefix)
171171
OPT_END(),
172172
};
173173
const char **source, **destination, **dest_path, **submodule_gitfile;
174+
const char *dst_w_slash;
174175
enum update_mode *modes;
175176
struct stat st;
176177
struct string_list src_for_dst = STRING_LIST_INIT_NODUP;
@@ -200,19 +201,28 @@ int cmd_mv(int argc, const char **argv, const char *prefix)
200201
if (argc == 1 && is_directory(argv[0]) && !is_directory(argv[1]))
201202
flags = 0;
202203
dest_path = internal_prefix_pathspec(prefix, argv + argc, 1, flags);
204+
dst_w_slash = add_slash(dest_path[0]);
203205
submodule_gitfile = xcalloc(argc, sizeof(char *));
204206

205207
if (dest_path[0][0] == '\0')
206208
/* special case: "." was normalized to "" */
207209
destination = internal_prefix_pathspec(dest_path[0], argv, argc, DUP_BASENAME);
208210
else if (!lstat(dest_path[0], &st) &&
209211
S_ISDIR(st.st_mode)) {
210-
dest_path[0] = add_slash(dest_path[0]);
211-
destination = internal_prefix_pathspec(dest_path[0], argv, argc, DUP_BASENAME);
212+
destination = internal_prefix_pathspec(dst_w_slash, argv, argc, DUP_BASENAME);
212213
} else {
213-
if (argc != 1)
214+
if (!path_in_sparse_checkout(dst_w_slash, &the_index) &&
215+
empty_dir_has_sparse_contents(dst_w_slash)) {
216+
destination = internal_prefix_pathspec(dst_w_slash, argv, argc, DUP_BASENAME);
217+
} else if (argc != 1) {
214218
die(_("destination '%s' is not a directory"), dest_path[0]);
215-
destination = dest_path;
219+
} else {
220+
destination = dest_path;
221+
}
222+
}
223+
if (dst_w_slash != dest_path[0]) {
224+
free((char *)dst_w_slash);
225+
dst_w_slash = NULL;
216226
}
217227

218228
/* Checking */

0 commit comments

Comments
 (0)