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
)
20 const char **result
= xmalloc((count
+ 1) * sizeof(const char *));
21 memcpy(result
, pathspec
, count
* sizeof(const char *));
25 for (i
= 0; i
< count
; i
++) {
26 const char *last_slash
= strrchr(result
[i
], '/');
28 result
[i
] = last_slash
+ 1;
31 return get_pathspec(prefix
, result
);
34 static void show_list(const char *label
, struct path_list
*list
)
39 for (i
= 0; i
< list
->nr
; i
++)
40 printf("%s%s", i
> 0 ? ", " : "", list
->items
[i
].path
);
45 static const char *add_slash(const char *path
)
47 int len
= strlen(path
);
48 if (path
[len
- 1] != '/') {
49 char *with_slash
= xmalloc(len
+ 2);
50 memcpy(with_slash
, path
, len
);
51 with_slash
[len
++] = '/';
58 static struct lock_file lock_file
;
60 int cmd_mv(int argc
, const char **argv
, const char *prefix
)
63 int verbose
= 0, show_only
= 0, force
= 0, ignore_errors
= 0;
64 const char **source
, **destination
, **dest_path
;
65 enum update_mode
{ BOTH
= 0, WORKING_DIRECTORY
, INDEX
} *modes
;
67 struct path_list overwritten
= {NULL
, 0, 0, 0};
68 struct path_list src_for_dst
= {NULL
, 0, 0, 0};
69 struct path_list added
= {NULL
, 0, 0, 0};
70 struct path_list deleted
= {NULL
, 0, 0, 0};
71 struct path_list changed
= {NULL
, 0, 0, 0};
73 git_config(git_default_config
);
75 newfd
= hold_lock_file_for_update(&lock_file
, get_index_file());
77 die("unable to create new index file");
80 die("index file corrupt");
82 for (i
= 1; i
< argc
; i
++) {
83 const char *arg
= argv
[i
];
87 if (!strcmp(arg
, "--")) {
91 if (!strcmp(arg
, "-n")) {
95 if (!strcmp(arg
, "-f")) {
99 if (!strcmp(arg
, "-k")) {
103 usage(builtin_mv_usage
);
105 count
= argc
- i
- 1;
107 usage(builtin_mv_usage
);
109 source
= copy_pathspec(prefix
, argv
+ i
, count
, 0);
110 modes
= xcalloc(count
, sizeof(enum update_mode
));
111 dest_path
= copy_pathspec(prefix
, argv
+ argc
- 1, 1, 0);
113 if (!lstat(dest_path
[0], &st
) &&
114 S_ISDIR(st
.st_mode
)) {
115 dest_path
[0] = add_slash(dest_path
[0]);
116 destination
= copy_pathspec(dest_path
[0], argv
+ i
, count
, 1);
119 usage(builtin_mv_usage
);
120 destination
= dest_path
;
124 for (i
= 0; i
< count
; i
++) {
125 const char *bad
= NULL
;
128 printf("Checking rename of '%s' to '%s'\n",
129 source
[i
], destination
[i
]);
131 if (lstat(source
[i
], &st
) < 0)
134 if (S_ISDIR(st
.st_mode
)) {
135 const char *dir
= source
[i
], *dest_dir
= destination
[i
];
136 int first
, last
, len
= strlen(dir
);
138 if (lstat(dest_dir
, &st
) == 0) {
139 bad
= "cannot move directory over file";
143 modes
[i
] = WORKING_DIRECTORY
;
145 first
= cache_name_pos(source
[i
], len
);
147 die ("Huh? %s/ is in index?", dir
);
150 for (last
= first
; last
< active_nr
; last
++) {
151 const char *path
= active_cache
[last
]->name
;
152 if (strncmp(path
, dir
, len
) || path
[len
] != '/')
156 if (last
- first
< 1)
157 bad
= "source directory is empty";
159 int j
, dst_len
= strlen(dest_dir
);
161 if (last
- first
> 0) {
162 source
= realloc(source
,
163 (count
+ last
- first
)
165 destination
= realloc(destination
,
166 (count
+ last
- first
)
168 modes
= realloc(modes
,
169 (count
+ last
- first
)
170 * sizeof(enum update_mode
));
173 dest_dir
= add_slash(dest_dir
);
175 for (j
= 0; j
< last
- first
; j
++) {
177 active_cache
[first
+ j
]->name
;
178 source
[count
+ j
] = path
;
179 destination
[count
+ j
] =
180 prefix_path(dest_dir
, dst_len
,
182 modes
[count
+ j
] = INDEX
;
184 count
+= last
- first
;
190 if (!bad
&& lstat(destination
[i
], &st
) == 0) {
191 bad
= "destination exists";
194 * only files can overwrite each other:
195 * check both source and destination
197 if (S_ISREG(st
.st_mode
)) {
198 fprintf(stderr
, "Warning: %s;"
199 " will overwrite!\n",
202 path_list_insert(destination
[i
],
205 bad
= "Cannot overwrite";
210 !strncmp(destination
[i
], source
[i
], strlen(source
[i
])))
211 bad
= "can not move directory into itself";
213 if (!bad
&& cache_name_pos(source
[i
], strlen(source
[i
])) < 0)
214 bad
= "not under version control";
217 if (path_list_has_path(&src_for_dst
, destination
[i
]))
218 bad
= "multiple sources for the same target";
220 path_list_insert(destination
[i
], &src_for_dst
);
227 memmove(source
+ i
, source
+ i
+ 1,
228 (count
- i
) * sizeof(char *));
229 memmove(destination
+ i
,
231 (count
- i
) * sizeof(char *));
234 die ("%s, source=%s, destination=%s",
235 bad
, source
[i
], destination
[i
]);
239 for (i
= 0; i
< count
; i
++) {
240 if (show_only
|| verbose
)
241 printf("Renaming %s to %s\n",
242 source
[i
], destination
[i
]);
243 if (!show_only
&& modes
[i
] != INDEX
&&
244 rename(source
[i
], destination
[i
]) < 0 &&
246 die ("renaming %s failed: %s",
247 source
[i
], strerror(errno
));
249 if (modes
[i
] == WORKING_DIRECTORY
)
252 if (cache_name_pos(source
[i
], strlen(source
[i
])) >= 0) {
253 path_list_insert(source
[i
], &deleted
);
255 /* destination can be a directory with 1 file inside */
256 if (path_list_has_path(&overwritten
, destination
[i
]))
257 path_list_insert(destination
[i
], &changed
);
259 path_list_insert(destination
[i
], &added
);
261 path_list_insert(destination
[i
], &added
);
265 show_list("Changed : ", &changed
);
266 show_list("Adding : ", &added
);
267 show_list("Deleting : ", &deleted
);
269 for (i
= 0; i
< changed
.nr
; i
++) {
270 const char *path
= changed
.items
[i
].path
;
271 int i
= cache_name_pos(path
, strlen(path
));
272 struct cache_entry
*ce
= active_cache
[i
];
275 die ("Huh? Cache entry for %s unknown?", path
);
276 refresh_cache_entry(ce
, 0);
279 for (i
= 0; i
< added
.nr
; i
++) {
280 const char *path
= added
.items
[i
].path
;
281 add_file_to_index(path
, verbose
);
284 for (i
= 0; i
< deleted
.nr
; i
++) {
285 const char *path
= deleted
.items
[i
].path
;
286 remove_file_from_cache(path
);
289 if (active_cache_changed
) {
290 if (write_cache(newfd
, active_cache
, active_nr
) ||
292 commit_lock_file(&lock_file
))
293 die("Unable to write new index file");