]> git.ipfire.org Git - thirdparty/git.git/blame - builtin-update-index.c
Teach git-update-index about gitlinks
[thirdparty/git.git] / builtin-update-index.c
CommitLineData
8bc9a0c7
LT
1/*
2 * GIT - The information manager from hell
3 *
4 * Copyright (C) Linus Torvalds, 2005
5 */
e83c5163 6#include "cache.h"
ee1bec3d 7#include "strbuf.h"
973d6a20 8#include "quote.h"
a6e5642f 9#include "cache-tree.h"
2bd452d3 10#include "tree-walk.h"
fefe81c9 11#include "builtin.h"
e011054b 12#include "refs.h"
e83c5163 13
121481ab
LT
14/*
15 * Default to not allowing changes to the list of files. The
16 * tool doesn't actually care, but this makes it harder to add
17 * files to the revision control by mistake by doing something
215a7ad1 18 * like "git-update-index *" and suddenly having all the object
121481ab
LT
19 * files be revision controlled.
20 */
caf4f582
JH
21static int allow_add;
22static int allow_remove;
23static int allow_replace;
caf4f582 24static int info_only;
9b63f501 25static int force_remove;
caf4f582 26static int verbose;
96f1e58f 27static int mark_valid_only;
5f73076c
JH
28#define MARK_VALID 1
29#define UNMARK_VALID 2
30
caf4f582
JH
31static void report(const char *fmt, ...)
32{
33 va_list vp;
34
35 if (!verbose)
36 return;
37
38 va_start(vp, fmt);
39 vprintf(fmt, vp);
40 putchar('\n');
41 va_end(vp);
42}
43
5f73076c
JH
44static int mark_valid(const char *path)
45{
46 int namelen = strlen(path);
47 int pos = cache_name_pos(path, namelen);
48 if (0 <= pos) {
49 switch (mark_valid_only) {
50 case MARK_VALID:
51 active_cache[pos]->ce_flags |= htons(CE_VALID);
52 break;
53 case UNMARK_VALID:
54 active_cache[pos]->ce_flags &= ~htons(CE_VALID);
55 break;
56 }
a6e5642f 57 cache_tree_invalidate_path(active_cache_tree, path);
5f73076c
JH
58 active_cache_changed = 1;
59 return 0;
60 }
61 return -1;
62}
63
e011054b 64static int remove_one_path(const char *path)
e83c5163 65{
e011054b
LT
66 if (!allow_remove)
67 return error("%s: does not exist and --remove not passed", path);
68 if (remove_file_from_cache(path))
69 return error("%s: cannot remove from the index", path);
70 return 0;
71}
a6e5642f 72
e011054b
LT
73/*
74 * Handle a path that couldn't be lstat'ed. It's either:
75 * - missing file (ENOENT or ENOTDIR). That's ok if we're
76 * supposed to be removing it and the removal actually
77 * succeeds.
78 * - permission error. That's never ok.
79 */
80static int process_lstat_error(const char *path, int err)
81{
82 if (err == ENOENT || err == ENOTDIR)
83 return remove_one_path(path);
84 return error("lstat(\"%s\"): %s", path, strerror(errno));
85}
a6e5642f 86
e011054b
LT
87static int add_one_path(struct cache_entry *old, const char *path, int len, struct stat *st)
88{
89 int option, size = cache_entry_size(len);
90 struct cache_entry *ce = xcalloc(1, size);
3e09cdfd 91
e011054b
LT
92 memcpy(ce->name, path, len);
93 ce->ce_flags = htons(len);
94 fill_stat_cache_info(ce, st);
95 ce->ce_mode = ce_mode_from_stat(old, st->st_mode);
ec1fcc16 96
e011054b 97 if (index_path(ce->sha1, path, st, !info_only))
ec1fcc16 98 return -1;
192268c1
JH
99 option = allow_add ? ADD_CACHE_OK_TO_ADD : 0;
100 option |= allow_replace ? ADD_CACHE_OK_TO_REPLACE : 0;
34143b26 101 if (add_cache_entry(ce, option))
e011054b 102 return error("%s: cannot add to the index - missing --add option?", path);
34143b26 103 return 0;
121481ab
LT
104}
105
e011054b
LT
106/*
107 * Handle a path that was a directory. Four cases:
108 *
109 * - it's already a gitlink in the index, and we keep it that
110 * way, and update it if we can (if we cannot find the HEAD,
111 * we're going to keep it unchanged in the index!)
112 *
113 * - it's a *file* in the index, in which case it should be
114 * removed as a file if removal is allowed, since it doesn't
115 * exist as such any more. If removal isn't allowed, it's
116 * an error.
117 *
118 * (NOTE! This is old and arguably fairly strange behaviour.
119 * We might want to make this an error unconditionally, and
120 * use "--force-remove" if you actually want to force removal).
121 *
122 * - it used to exist as a subdirectory (ie multiple files with
123 * this particular prefix) in the index, in which case it's wrong
124 * to try to update it as a directory.
125 *
126 * - it doesn't exist at all in the index, but it is a valid
127 * git directory, and it should be *added* as a gitlink.
128 */
129static int process_directory(const char *path, int len, struct stat *st)
130{
131 unsigned char sha1[20];
132 int pos = cache_name_pos(path, len);
133
134 /* Exact match: file or existing gitlink */
135 if (pos >= 0) {
136 struct cache_entry *ce = active_cache[pos];
137 if (S_ISDIRLNK(ntohl(ce->ce_mode))) {
138
139 /* Do nothing to the index if there is no HEAD! */
140 if (resolve_gitlink_ref(path, "HEAD", sha1) < 0)
141 return 0;
142
143 return add_one_path(ce, path, len, st);
144 }
145 /* Should this be an unconditional error? */
146 return remove_one_path(path);
147 }
148
149 /* Inexact match: is there perhaps a subdirectory match? */
150 pos = -pos-1;
151 while (pos < active_nr) {
152 struct cache_entry *ce = active_cache[pos++];
153
154 if (strncmp(ce->name, path, len))
155 break;
156 if (ce->name[len] > '/')
157 break;
158 if (ce->name[len] < '/')
159 continue;
160
161 /* Subdirectory match - error out */
162 return error("%s: is a directory - add individual files instead", path);
163 }
164
165 /* No match - should we add it as a gitlink? */
166 if (!resolve_gitlink_ref(path, "HEAD", sha1))
167 return add_one_path(NULL, path, len, st);
168
169 /* Error out. */
170 return error("%s: is a directory - add files inside instead", path);
171}
172
173/*
174 * Process a regular file
175 */
176static int process_file(const char *path, int len, struct stat *st)
177{
178 int pos = cache_name_pos(path, len);
179 struct cache_entry *ce = pos < 0 ? NULL : active_cache[pos];
180
181 if (ce && S_ISDIRLNK(ntohl(ce->ce_mode)))
182 return error("%s is already a gitlink, not replacing", path);
183
184 return add_one_path(ce, path, len, st);
185}
186
187static int process_path(const char *path)
188{
189 int len;
190 struct stat st;
191
192 /* We probably want to do this in remove_file_from_cache() and
193 * add_cache_entry() instead...
194 */
195 cache_tree_invalidate_path(active_cache_tree, path);
196
197 /*
198 * First things first: get the stat information, to decide
199 * what to do about the pathname!
200 */
201 if (lstat(path, &st) < 0)
202 return process_lstat_error(path, errno);
203
204 len = strlen(path);
205 if (S_ISDIR(st.st_mode))
206 return process_directory(path, len, &st);
207
208 return process_file(path, len, &st);
209}
210
d23748a6
JH
211static int add_cacheinfo(unsigned int mode, const unsigned char *sha1,
212 const char *path, int stage)
9945d980 213{
192268c1 214 int size, len, option;
9945d980
LT
215 struct cache_entry *ce;
216
d23748a6 217 if (!verify_path(path))
9945d980 218 return -1;
9945d980 219
d23748a6 220 len = strlen(path);
9945d980 221 size = cache_entry_size(len);
90321c10 222 ce = xcalloc(1, size);
9945d980 223
e702496e 224 hashcpy(ce->sha1, sha1);
d23748a6
JH
225 memcpy(ce->name, path, len);
226 ce->ce_flags = create_ce_flags(len, stage);
e4479470 227 ce->ce_mode = create_ce_mode(mode);
5f73076c
JH
228 if (assume_unchanged)
229 ce->ce_flags |= htons(CE_VALID);
192268c1
JH
230 option = allow_add ? ADD_CACHE_OK_TO_ADD : 0;
231 option |= allow_replace ? ADD_CACHE_OK_TO_REPLACE : 0;
caf4f582
JH
232 if (add_cache_entry(ce, option))
233 return error("%s: cannot add to the index - missing --add option?",
d23748a6
JH
234 path);
235 report("add '%s'", path);
a6e5642f 236 cache_tree_invalidate_path(active_cache_tree, path);
caf4f582 237 return 0;
9945d980
LT
238}
239
227bdb18 240static void chmod_path(int flip, const char *path)
3e09cdfd
JH
241{
242 int pos;
243 struct cache_entry *ce;
244 unsigned int mode;
f2a19340 245
3e09cdfd
JH
246 pos = cache_name_pos(path, strlen(path));
247 if (pos < 0)
227bdb18 248 goto fail;
3e09cdfd
JH
249 ce = active_cache[pos];
250 mode = ntohl(ce->ce_mode);
251 if (!S_ISREG(mode))
227bdb18 252 goto fail;
3e09cdfd
JH
253 switch (flip) {
254 case '+':
255 ce->ce_mode |= htonl(0111); break;
256 case '-':
257 ce->ce_mode &= htonl(~0111); break;
258 default:
227bdb18 259 goto fail;
3e09cdfd 260 }
a6e5642f 261 cache_tree_invalidate_path(active_cache_tree, path);
3e09cdfd 262 active_cache_changed = 1;
227bdb18
AR
263 report("chmod %cx '%s'", flip, path);
264 return;
265 fail:
266 die("git-update-index: cannot chmod %cx '%s'", flip, path);
3e09cdfd
JH
267}
268
ee1bec3d
JH
269static void update_one(const char *path, const char *prefix, int prefix_length)
270{
271 const char *p = prefix_path(prefix, prefix_length, path);
272 if (!verify_path(p)) {
273 fprintf(stderr, "Ignoring path %s\n", path);
fb69a760 274 goto free_return;
ee1bec3d 275 }
5f73076c
JH
276 if (mark_valid_only) {
277 if (mark_valid(p))
278 die("Unable to mark file %s", path);
fb69a760 279 goto free_return;
5f73076c 280 }
a6e5642f 281 cache_tree_invalidate_path(active_cache_tree, path);
5f73076c 282
ee1bec3d
JH
283 if (force_remove) {
284 if (remove_file_from_cache(p))
285 die("git-update-index: unable to remove %s", path);
caf4f582 286 report("remove '%s'", path);
fb69a760 287 goto free_return;
ee1bec3d 288 }
e011054b
LT
289 if (process_path(p))
290 die("Unable to process path %s", path);
caf4f582 291 report("add '%s'", path);
fb69a760 292 free_return:
0cc9e70c 293 if (p < path || p > path + strlen(path))
fb69a760 294 free((char*)p);
ee1bec3d
JH
295}
296
d4dbf36d
JH
297static void read_index_info(int line_termination)
298{
299 struct strbuf buf;
300 strbuf_init(&buf);
301 while (1) {
9c20a470 302 char *ptr, *tab;
973d6a20 303 char *path_name;
d4dbf36d
JH
304 unsigned char sha1[20];
305 unsigned int mode;
d23748a6
JH
306 int stage;
307
308 /* This reads lines formatted in one of three formats:
309 *
310 * (1) mode SP sha1 TAB path
311 * The first format is what "git-apply --index-info"
312 * reports, and used to reconstruct a partial tree
313 * that is used for phony merge base tree when falling
314 * back on 3-way merge.
315 *
316 * (2) mode SP type SP sha1 TAB path
317 * The second format is to stuff git-ls-tree output
318 * into the index file.
fefe81c9 319 *
d23748a6
JH
320 * (3) mode SP sha1 SP stage TAB path
321 * This format is to put higher order stages into the
322 * index file and matches git-ls-files --stage output.
323 */
d4dbf36d
JH
324 read_line(&buf, stdin, line_termination);
325 if (buf.eof)
326 break;
327
328 mode = strtoul(buf.buf, &ptr, 8);
9c20a470 329 if (ptr == buf.buf || *ptr != ' ')
d4dbf36d
JH
330 goto bad_line;
331
9c20a470
JH
332 tab = strchr(ptr, '\t');
333 if (!tab || tab - ptr < 41)
334 goto bad_line;
d23748a6 335
2d497115 336 if (tab[-2] == ' ' && '0' <= tab[-1] && tab[-1] <= '3') {
d23748a6
JH
337 stage = tab[-1] - '0';
338 ptr = tab + 1; /* point at the head of path */
339 tab = tab - 2; /* point at tail of sha1 */
340 }
341 else {
342 stage = 0;
343 ptr = tab + 1; /* point at the head of path */
344 }
345
9c20a470
JH
346 if (get_sha1_hex(tab - 40, sha1) || tab[-41] != ' ')
347 goto bad_line;
973d6a20
JH
348
349 if (line_termination && ptr[0] == '"')
350 path_name = unquote_c_style(ptr, NULL);
351 else
352 path_name = ptr;
353
354 if (!verify_path(path_name)) {
355 fprintf(stderr, "Ignoring path %s\n", path_name);
356 if (path_name != ptr)
357 free(path_name);
d4dbf36d
JH
358 continue;
359 }
a6e5642f 360 cache_tree_invalidate_path(active_cache_tree, path_name);
d4dbf36d
JH
361
362 if (!mode) {
363 /* mode == 0 means there is no such path -- remove */
973d6a20 364 if (remove_file_from_cache(path_name))
d4dbf36d
JH
365 die("git-update-index: unable to remove %s",
366 ptr);
367 }
368 else {
369 /* mode ' ' sha1 '\t' name
370 * ptr[-1] points at tab,
371 * ptr[-41] is at the beginning of sha1
372 */
373 ptr[-42] = ptr[-1] = 0;
d23748a6 374 if (add_cacheinfo(mode, sha1, path_name, stage))
d4dbf36d 375 die("git-update-index: unable to update %s",
973d6a20 376 path_name);
d4dbf36d 377 }
973d6a20
JH
378 if (path_name != ptr)
379 free(path_name);
d4dbf36d
JH
380 continue;
381
382 bad_line:
383 die("malformed index info %s", buf.buf);
384 }
385}
386
f6ab5bb2 387static const char update_index_usage[] =
7099c9c7 388"git-update-index [-q] [--add] [--replace] [--remove] [--unmerged] [--refresh] [--really-refresh] [--cacheinfo] [--chmod=(+|-)x] [--assume-unchanged] [--info-only] [--force-remove] [--stdin] [--index-info] [--unresolve] [--again | -g] [--ignore-missing] [-z] [--verbose] [--] <file>...";
f6ab5bb2 389
2bd452d3
JH
390static unsigned char head_sha1[20];
391static unsigned char merge_head_sha1[20];
392
393static struct cache_entry *read_one_ent(const char *which,
394 unsigned char *ent, const char *path,
395 int namelen, int stage)
396{
397 unsigned mode;
398 unsigned char sha1[20];
399 int size;
400 struct cache_entry *ce;
401
402 if (get_tree_entry(ent, path, sha1, &mode)) {
83e77a25
JH
403 if (which)
404 error("%s: not in %s branch.", path, which);
2bd452d3
JH
405 return NULL;
406 }
407 if (mode == S_IFDIR) {
83e77a25
JH
408 if (which)
409 error("%s: not a blob in %s branch.", path, which);
2bd452d3
JH
410 return NULL;
411 }
412 size = cache_entry_size(namelen);
413 ce = xcalloc(1, size);
414
e702496e 415 hashcpy(ce->sha1, sha1);
2bd452d3
JH
416 memcpy(ce->name, path, namelen);
417 ce->ce_flags = create_ce_flags(namelen, stage);
418 ce->ce_mode = create_ce_mode(mode);
419 return ce;
420}
421
422static int unresolve_one(const char *path)
423{
424 int namelen = strlen(path);
425 int pos;
426 int ret = 0;
427 struct cache_entry *ce_2 = NULL, *ce_3 = NULL;
428
429 /* See if there is such entry in the index. */
430 pos = cache_name_pos(path, namelen);
431 if (pos < 0) {
432 /* If there isn't, either it is unmerged, or
433 * resolved as "removed" by mistake. We do not
434 * want to do anything in the former case.
435 */
436 pos = -pos-1;
437 if (pos < active_nr) {
438 struct cache_entry *ce = active_cache[pos];
439 if (ce_namelen(ce) == namelen &&
440 !memcmp(ce->name, path, namelen)) {
441 fprintf(stderr,
442 "%s: skipping still unmerged path.\n",
443 path);
444 goto free_return;
445 }
446 }
447 }
448
449 /* Grab blobs from given path from HEAD and MERGE_HEAD,
450 * stuff HEAD version in stage #2,
451 * stuff MERGE_HEAD version in stage #3.
452 */
453 ce_2 = read_one_ent("our", head_sha1, path, namelen, 2);
454 ce_3 = read_one_ent("their", merge_head_sha1, path, namelen, 3);
455
456 if (!ce_2 || !ce_3) {
457 ret = -1;
458 goto free_return;
459 }
a89fccd2 460 if (!hashcmp(ce_2->sha1, ce_3->sha1) &&
2bd452d3
JH
461 ce_2->ce_mode == ce_3->ce_mode) {
462 fprintf(stderr, "%s: identical in both, skipping.\n",
463 path);
464 goto free_return;
465 }
466
497c3213 467 cache_tree_invalidate_path(active_cache_tree, path);
2bd452d3
JH
468 remove_file_from_cache(path);
469 if (add_cache_entry(ce_2, ADD_CACHE_OK_TO_ADD)) {
470 error("%s: cannot add our version to the index.", path);
471 ret = -1;
472 goto free_return;
473 }
474 if (!add_cache_entry(ce_3, ADD_CACHE_OK_TO_ADD))
475 return 0;
476 error("%s: cannot add their version to the index.", path);
477 ret = -1;
478 free_return:
479 free(ce_2);
480 free(ce_3);
481 return ret;
482}
483
484static void read_head_pointers(void)
485{
913c983e 486 if (read_ref("HEAD", head_sha1))
2bd452d3 487 die("No HEAD -- no initial commit yet?\n");
913c983e 488 if (read_ref("MERGE_HEAD", merge_head_sha1)) {
2bd452d3
JH
489 fprintf(stderr, "Not in the middle of a merge.\n");
490 exit(0);
491 }
492}
493
09895c1f
JH
494static int do_unresolve(int ac, const char **av,
495 const char *prefix, int prefix_length)
2bd452d3
JH
496{
497 int i;
498 int err = 0;
499
500 /* Read HEAD and MERGE_HEAD; if MERGE_HEAD does not exist, we
501 * are not doing a merge, so exit with success status.
502 */
503 read_head_pointers();
504
505 for (i = 1; i < ac; i++) {
506 const char *arg = av[i];
09895c1f
JH
507 const char *p = prefix_path(prefix, prefix_length, arg);
508 err |= unresolve_one(p);
0cc9e70c 509 if (p < arg || p > arg + strlen(arg))
09895c1f 510 free((char*)p);
2bd452d3
JH
511 }
512 return err;
513}
514
83e77a25
JH
515static int do_reupdate(int ac, const char **av,
516 const char *prefix, int prefix_length)
517{
518 /* Read HEAD and run update-index on paths that are
519 * merged and already different between index and HEAD.
520 */
521 int pos;
522 int has_head = 1;
0cc9e70c 523 const char **pathspec = get_pathspec(prefix, av + 1);
83e77a25 524
913c983e 525 if (read_ref("HEAD", head_sha1))
83e77a25
JH
526 /* If there is no HEAD, that means it is an initial
527 * commit. Update everything in the index.
528 */
529 has_head = 0;
530 redo:
531 for (pos = 0; pos < active_nr; pos++) {
532 struct cache_entry *ce = active_cache[pos];
533 struct cache_entry *old = NULL;
534 int save_nr;
22293b9c
JH
535
536 if (ce_stage(ce) || !ce_path_match(ce, pathspec))
83e77a25
JH
537 continue;
538 if (has_head)
539 old = read_one_ent(NULL, head_sha1,
540 ce->name, ce_namelen(ce), 0);
541 if (old && ce->ce_mode == old->ce_mode &&
a89fccd2 542 !hashcmp(ce->sha1, old->sha1)) {
83e77a25
JH
543 free(old);
544 continue; /* unchanged */
545 }
546 /* Be careful. The working tree may not have the
547 * path anymore, in which case, under 'allow_remove',
548 * or worse yet 'allow_replace', active_nr may decrease.
549 */
550 save_nr = active_nr;
551 update_one(ce->name + prefix_length, prefix, prefix_length);
552 if (save_nr != active_nr)
553 goto redo;
554 }
555 return 0;
556}
557
a633fca0 558int cmd_update_index(int argc, const char **argv, const char *prefix)
e83c5163 559{
ee1bec3d 560 int i, newfd, entries, has_errors = 0, line_termination = '\n';
121481ab 561 int allow_options = 1;
ee1bec3d 562 int read_from_stdin = 0;
ee1bec3d 563 int prefix_length = prefix ? strlen(prefix) : 0;
227bdb18 564 char set_executable_bit = 0;
405e5b2f 565 unsigned int refresh_flags = 0;
7b802b86 566 int lock_error = 0;
fefe81c9 567 struct lock_file *lock_file;
bb233d69 568
3e09cdfd
JH
569 git_config(git_default_config);
570
fefe81c9 571 /* We can't free this memory, it becomes part of a linked list parsed atexit() */
928e47e3 572 lock_file = xcalloc(1, sizeof(struct lock_file));
fefe81c9 573
30ca07a2 574 newfd = hold_locked_index(lock_file, 0);
7b802b86
JH
575 if (newfd < 0)
576 lock_error = errno;
9614b8dc 577
e83c5163 578 entries = read_cache();
9614b8dc 579 if (entries < 0)
2de381f9 580 die("cache corrupted");
e83c5163 581
e83c5163 582 for (i = 1 ; i < argc; i++) {
6b5ee137 583 const char *path = argv[i];
9ebe6cf9 584 const char *p;
121481ab
LT
585
586 if (allow_options && *path == '-') {
587 if (!strcmp(path, "--")) {
588 allow_options = 0;
589 continue;
590 }
0ed3715f 591 if (!strcmp(path, "-q")) {
405e5b2f 592 refresh_flags |= REFRESH_QUIET;
0ed3715f
LT
593 continue;
594 }
121481ab
LT
595 if (!strcmp(path, "--add")) {
596 allow_add = 1;
597 continue;
598 }
192268c1
JH
599 if (!strcmp(path, "--replace")) {
600 allow_replace = 1;
601 continue;
602 }
121481ab
LT
603 if (!strcmp(path, "--remove")) {
604 allow_remove = 1;
605 continue;
606 }
5d1a5c02 607 if (!strcmp(path, "--unmerged")) {
405e5b2f 608 refresh_flags |= REFRESH_UNMERGED;
5d1a5c02
LT
609 continue;
610 }
121481ab 611 if (!strcmp(path, "--refresh")) {
405e5b2f 612 has_errors |= refresh_cache(refresh_flags);
5f73076c
JH
613 continue;
614 }
615 if (!strcmp(path, "--really-refresh")) {
405e5b2f 616 has_errors |= refresh_cache(REFRESH_REALLY | refresh_flags);
121481ab
LT
617 continue;
618 }
9945d980 619 if (!strcmp(path, "--cacheinfo")) {
d23748a6
JH
620 unsigned char sha1[20];
621 unsigned int mode;
622
b3f94c4b 623 if (i+3 >= argc)
215a7ad1 624 die("git-update-index: --cacheinfo <mode> <sha1> <path>");
d23748a6
JH
625
626 if ((sscanf(argv[i+1], "%o", &mode) != 1) ||
627 get_sha1_hex(argv[i+2], sha1) ||
628 add_cacheinfo(mode, sha1, argv[i+3], 0))
629 die("git-update-index: --cacheinfo"
630 " cannot add %s", argv[i+3]);
9945d980
LT
631 i += 3;
632 continue;
633 }
3e09cdfd
JH
634 if (!strcmp(path, "--chmod=-x") ||
635 !strcmp(path, "--chmod=+x")) {
636 if (argc <= i+1)
637 die("git-update-index: %s <path>", path);
227bdb18 638 set_executable_bit = path[8];
3e09cdfd
JH
639 continue;
640 }
5f73076c
JH
641 if (!strcmp(path, "--assume-unchanged")) {
642 mark_valid_only = MARK_VALID;
643 continue;
644 }
645 if (!strcmp(path, "--no-assume-unchanged")) {
646 mark_valid_only = UNMARK_VALID;
647 continue;
648 }
df6e1516
BL
649 if (!strcmp(path, "--info-only")) {
650 info_only = 1;
651 continue;
652 }
0ff5bf7c 653 if (!strcmp(path, "--force-remove")) {
9b63f501 654 force_remove = 1;
0ff5bf7c
JH
655 continue;
656 }
ee1bec3d
JH
657 if (!strcmp(path, "-z")) {
658 line_termination = 0;
659 continue;
660 }
661 if (!strcmp(path, "--stdin")) {
662 if (i != argc - 1)
663 die("--stdin must be at the end");
664 read_from_stdin = 1;
665 break;
666 }
d4dbf36d 667 if (!strcmp(path, "--index-info")) {
a41c175d
SP
668 if (i != argc - 1)
669 die("--index-info must be at the end");
d4dbf36d
JH
670 allow_add = allow_replace = allow_remove = 1;
671 read_index_info(line_termination);
a41c175d 672 break;
d4dbf36d 673 }
2bd452d3 674 if (!strcmp(path, "--unresolve")) {
09895c1f
JH
675 has_errors = do_unresolve(argc - i, argv + i,
676 prefix, prefix_length);
2bd452d3
JH
677 if (has_errors)
678 active_cache_changed = 0;
679 goto finish;
680 }
7099c9c7 681 if (!strcmp(path, "--again") || !strcmp(path, "-g")) {
83e77a25
JH
682 has_errors = do_reupdate(argc - i, argv + i,
683 prefix, prefix_length);
684 if (has_errors)
685 active_cache_changed = 0;
686 goto finish;
687 }
c6e007b0 688 if (!strcmp(path, "--ignore-missing")) {
405e5b2f 689 refresh_flags |= REFRESH_IGNORE_MISSING;
c6e007b0
JB
690 continue;
691 }
caf4f582
JH
692 if (!strcmp(path, "--verbose")) {
693 verbose = 1;
694 continue;
695 }
f6ab5bb2
PB
696 if (!strcmp(path, "-h") || !strcmp(path, "--help"))
697 usage(update_index_usage);
2de381f9 698 die("unknown option %s", path);
121481ab 699 }
9ebe6cf9
AR
700 p = prefix_path(prefix, prefix_length, path);
701 update_one(p, NULL, 0);
227bdb18 702 if (set_executable_bit)
9ebe6cf9
AR
703 chmod_path(set_executable_bit, p);
704 if (p < path || p > path + strlen(path))
705 free((char*)p);
ee1bec3d
JH
706 }
707 if (read_from_stdin) {
708 struct strbuf buf;
709 strbuf_init(&buf);
710 while (1) {
a94d9948 711 char *path_name;
fb69a760 712 const char *p;
ee1bec3d
JH
713 read_line(&buf, stdin, line_termination);
714 if (buf.eof)
715 break;
a94d9948
JH
716 if (line_termination && buf.buf[0] == '"')
717 path_name = unquote_c_style(buf.buf, NULL);
718 else
719 path_name = buf.buf;
fb69a760
JH
720 p = prefix_path(prefix, prefix_length, path_name);
721 update_one(p, NULL, 0);
722 if (set_executable_bit)
227bdb18 723 chmod_path(set_executable_bit, p);
0cc9e70c 724 if (p < path_name || p > path_name + strlen(path_name))
fb69a760 725 free((char*) p);
a94d9948
JH
726 if (path_name != buf.buf)
727 free(path_name);
9b63f501 728 }
e83c5163 729 }
2bd452d3
JH
730
731 finish:
5cd5ace7 732 if (active_cache_changed) {
7b802b86
JH
733 if (newfd < 0) {
734 if (refresh_flags & REFRESH_QUIET)
735 exit(128);
736 die("unable to create '%s.lock': %s",
737 get_index_file(), strerror(lock_error));
738 }
5cd5ace7 739 if (write_cache(newfd, active_cache, active_nr) ||
30ca07a2 740 close(newfd) || commit_locked_index(lock_file))
021b6e45 741 die("Unable to write new index file");
5cd5ace7 742 }
9614b8dc 743
fefe81c9
LS
744 rollback_lock_file(lock_file);
745
c4b83e61 746 return has_errors ? 1 : 0;
e83c5163 747}