2 * "git mv" builtin command
4 * Copyright (C) 2006 Johannes Schindelin
11 #include "cache-tree.h"
12 #include "path-list.h"
14 static const char builtin_mv_usage[] =
15 "git-mv [-n] [-f] (<source> <destination> | [-k] <source>... <destination>)";
17 static const char **copy_pathspec(const char *prefix, const char **pathspec,
18 int count, int base_name)
21 const char **result = xmalloc((count + 1) * sizeof(const char *));
22 memcpy(result, pathspec, count * sizeof(const char *));
24 for (i = 0; i < count; i++) {
25 int length = strlen(result[i]);
26 if (length > 0 && result[i][length - 1] == '/') {
27 char *without_slash = xmalloc(length);
28 memcpy(without_slash, result[i], length - 1);
29 without_slash[length] = '\0';
30 result[i] = without_slash;
33 const char *last_slash = strrchr(result[i], '/');
35 result[i] = last_slash + 1;
38 return get_pathspec(prefix, result);
41 static void show_list(const char *label, struct path_list *list)
46 for (i = 0; i < list->nr; i++)
47 printf("%s%s", i > 0 ? ", " : "", list->items[i].path);
52 static const char *add_slash(const char *path)
54 int len = strlen(path);
55 if (path[len - 1] != '/') {
56 char *with_slash = xmalloc(len + 2);
57 memcpy(with_slash, path, len);
58 with_slash[len++] = '/';
65 static struct lock_file lock_file;
67 int cmd_mv(int argc, const char **argv, const char *prefix)
70 int verbose = 0, show_only = 0, force = 0, ignore_errors = 0;
71 const char **source, **destination, **dest_path;
72 enum update_mode { BOTH = 0, WORKING_DIRECTORY, INDEX } *modes;
74 struct path_list overwritten = {NULL, 0, 0, 0};
75 struct path_list src_for_dst = {NULL, 0, 0, 0};
76 struct path_list added = {NULL, 0, 0, 0};
77 struct path_list deleted = {NULL, 0, 0, 0};
78 struct path_list changed = {NULL, 0, 0, 0};
80 git_config(git_default_config);
82 newfd = hold_lock_file_for_update(&lock_file, get_index_file(), 1);
84 die("index file corrupt");
86 for (i = 1; i < argc; i++) {
87 const char *arg = argv[i];
91 if (!strcmp(arg, "--")) {
95 if (!strcmp(arg, "-n")) {
99 if (!strcmp(arg, "-f")) {
103 if (!strcmp(arg, "-k")) {
107 usage(builtin_mv_usage);
109 count = argc - i - 1;
111 usage(builtin_mv_usage);
113 source = copy_pathspec(prefix, argv + i, count, 0);
114 modes = xcalloc(count, sizeof(enum update_mode));
115 dest_path = copy_pathspec(prefix, argv + argc - 1, 1, 0);
117 if (!lstat(dest_path[0], &st) &&
118 S_ISDIR(st.st_mode)) {
119 dest_path[0] = add_slash(dest_path[0]);
120 destination = copy_pathspec(dest_path[0], argv + i, count, 1);
123 usage(builtin_mv_usage);
124 destination = dest_path;
128 for (i = 0; i < count; i++) {
130 const char *bad = NULL;
133 printf("Checking rename of '%s' to '%s'\n",
134 source[i], destination[i]);
136 if (lstat(source[i], &st) < 0)
140 (length = strlen(source[i])) >= 0 &&
141 !strncmp(destination[i], source[i], length) &&
142 (destination[i][length] == 0 || destination[i][length] == '/'))
143 bad = "can not move directory into itself";
145 if (S_ISDIR(st.st_mode)) {
146 const char *dir = source[i], *dest_dir = destination[i];
147 int first, last, len = strlen(dir);
149 if (lstat(dest_dir, &st) == 0) {
150 bad = "cannot move directory over file";
154 modes[i] = WORKING_DIRECTORY;
156 first = cache_name_pos(source[i], len);
158 die ("Huh? %s/ is in index?", dir);
161 for (last = first; last < active_nr; last++) {
162 const char *path = active_cache[last]->name;
163 if (strncmp(path, dir, len) || path[len] != '/')
167 if (last - first < 1)
168 bad = "source directory is empty";
170 int j, dst_len = strlen(dest_dir);
172 if (last - first > 0) {
173 source = realloc(source,
174 (count + last - first)
176 destination = realloc(destination,
177 (count + last - first)
179 modes = realloc(modes,
180 (count + last - first)
181 * sizeof(enum update_mode));
184 dest_dir = add_slash(dest_dir);
186 for (j = 0; j < last - first; j++) {
188 active_cache[first + j]->name;
189 source[count + j] = path;
190 destination[count + j] =
191 prefix_path(dest_dir, dst_len,
193 modes[count + j] = INDEX;
195 count += last - first;
201 if (!bad && lstat(destination[i], &st) == 0) {
202 bad = "destination exists";
205 * only files can overwrite each other:
206 * check both source and destination
208 if (S_ISREG(st.st_mode)) {
209 fprintf(stderr, "Warning: %s;"
210 " will overwrite!\n",
213 path_list_insert(destination[i],
216 bad = "Cannot overwrite";
220 if (!bad && cache_name_pos(source[i], strlen(source[i])) < 0)
221 bad = "not under version control";
224 if (path_list_has_path(&src_for_dst, destination[i]))
225 bad = "multiple sources for the same target";
227 path_list_insert(destination[i], &src_for_dst);
234 memmove(source + i, source + i + 1,
235 (count - i) * sizeof(char *));
236 memmove(destination + i,
238 (count - i) * sizeof(char *));
241 die ("%s, source=%s, destination=%s",
242 bad, source[i], destination[i]);
246 for (i = 0; i < count; i++) {
247 if (show_only || verbose)
248 printf("Renaming %s to %s\n",
249 source[i], destination[i]);
250 if (!show_only && modes[i] != INDEX &&
251 rename(source[i], destination[i]) < 0 &&
253 die ("renaming %s failed: %s",
254 source[i], strerror(errno));
256 if (modes[i] == WORKING_DIRECTORY)
259 if (cache_name_pos(source[i], strlen(source[i])) >= 0) {
260 path_list_insert(source[i], &deleted);
262 /* destination can be a directory with 1 file inside */
263 if (path_list_has_path(&overwritten, destination[i]))
264 path_list_insert(destination[i], &changed);
266 path_list_insert(destination[i], &added);
268 path_list_insert(destination[i], &added);
272 show_list("Changed : ", &changed);
273 show_list("Adding : ", &added);
274 show_list("Deleting : ", &deleted);
276 for (i = 0; i < changed.nr; i++) {
277 const char *path = changed.items[i].path;
278 int i = cache_name_pos(path, strlen(path));
279 struct cache_entry *ce = active_cache[i];
282 die ("Huh? Cache entry for %s unknown?", path);
283 refresh_cache_entry(ce, 0);
286 for (i = 0; i < added.nr; i++) {
287 const char *path = added.items[i].path;
288 add_file_to_index(path, verbose);
291 for (i = 0; i < deleted.nr; i++) {
292 const char *path = deleted.items[i].path;
293 remove_file_from_cache(path);
296 if (active_cache_changed) {
297 if (write_cache(newfd, active_cache, active_nr) ||
299 commit_lock_file(&lock_file))
300 die("Unable to write new index file");