]> git.ipfire.org Git - thirdparty/git.git/blob - builtin/ls-files.c
Merge branch 'vd/fsck-submodule-url-test'
[thirdparty/git.git] / builtin / ls-files.c
1 /*
2 * This merges the file listing in the directory cache index
3 * with the actual working directory list, and shows different
4 * combinations of the two.
5 *
6 * Copyright (C) Linus Torvalds, 2005
7 */
8 #include "builtin.h"
9 #include "repository.h"
10 #include "config.h"
11 #include "convert.h"
12 #include "quote.h"
13 #include "dir.h"
14 #include "gettext.h"
15 #include "object-name.h"
16 #include "strbuf.h"
17 #include "parse-options.h"
18 #include "resolve-undo.h"
19 #include "string-list.h"
20 #include "path.h"
21 #include "pathspec.h"
22 #include "read-cache.h"
23 #include "setup.h"
24 #include "sparse-index.h"
25 #include "submodule.h"
26 #include "object-store.h"
27 #include "hex.h"
28
29
30 static int abbrev;
31 static int show_deleted;
32 static int show_cached;
33 static int show_others;
34 static int show_stage;
35 static int show_unmerged;
36 static int show_resolve_undo;
37 static int show_modified;
38 static int show_killed;
39 static int show_valid_bit;
40 static int show_fsmonitor_bit;
41 static int line_terminator = '\n';
42 static int debug_mode;
43 static int show_eol;
44 static int recurse_submodules;
45 static int skipping_duplicates;
46 static int show_sparse_dirs;
47
48 static const char *prefix;
49 static int max_prefix_len;
50 static int prefix_len;
51 static struct pathspec pathspec;
52 static int error_unmatch;
53 static char *ps_matched;
54 static const char *with_tree;
55 static int exc_given;
56 static int exclude_args;
57 static const char *format;
58
59 static const char *tag_cached = "";
60 static const char *tag_unmerged = "";
61 static const char *tag_removed = "";
62 static const char *tag_other = "";
63 static const char *tag_killed = "";
64 static const char *tag_modified = "";
65 static const char *tag_skip_worktree = "";
66 static const char *tag_resolve_undo = "";
67
68 static void write_eolinfo(struct index_state *istate,
69 const struct cache_entry *ce, const char *path)
70 {
71 if (show_eol) {
72 struct stat st;
73 const char *i_txt = "";
74 const char *w_txt = "";
75 const char *a_txt = get_convert_attr_ascii(istate, path);
76 if (ce && S_ISREG(ce->ce_mode))
77 i_txt = get_cached_convert_stats_ascii(istate,
78 ce->name);
79 if (!lstat(path, &st) && S_ISREG(st.st_mode))
80 w_txt = get_wt_convert_stats_ascii(path);
81 printf("i/%-5s w/%-5s attr/%-17s\t", i_txt, w_txt, a_txt);
82 }
83 }
84
85 static void write_name(const char *name)
86 {
87 /*
88 * With "--full-name", prefix_len=0; this caller needs to pass
89 * an empty string in that case (a NULL is good for "").
90 */
91 write_name_quoted_relative(name, prefix_len ? prefix : NULL,
92 stdout, line_terminator);
93 }
94
95 static void write_name_to_buf(struct strbuf *sb, const char *name)
96 {
97 struct strbuf buf = STRBUF_INIT;
98 const char *rel = relative_path(name, prefix_len ? prefix : NULL, &buf);
99
100 if (line_terminator)
101 quote_c_style(rel, sb, NULL, 0);
102 else
103 strbuf_addstr(sb, rel);
104
105 strbuf_release(&buf);
106 }
107
108 static const char *get_tag(const struct cache_entry *ce, const char *tag)
109 {
110 static char alttag[4];
111
112 if (tag && *tag && ((show_valid_bit && (ce->ce_flags & CE_VALID)) ||
113 (show_fsmonitor_bit && (ce->ce_flags & CE_FSMONITOR_VALID)))) {
114 memcpy(alttag, tag, 3);
115
116 if (isalpha(tag[0])) {
117 alttag[0] = tolower(tag[0]);
118 } else if (tag[0] == '?') {
119 alttag[0] = '!';
120 } else {
121 alttag[0] = 'v';
122 alttag[1] = tag[0];
123 alttag[2] = ' ';
124 alttag[3] = 0;
125 }
126
127 tag = alttag;
128 }
129
130 return tag;
131 }
132
133 static void print_debug(const struct cache_entry *ce)
134 {
135 if (debug_mode) {
136 const struct stat_data *sd = &ce->ce_stat_data;
137
138 printf(" ctime: %u:%u\n", sd->sd_ctime.sec, sd->sd_ctime.nsec);
139 printf(" mtime: %u:%u\n", sd->sd_mtime.sec, sd->sd_mtime.nsec);
140 printf(" dev: %u\tino: %u\n", sd->sd_dev, sd->sd_ino);
141 printf(" uid: %u\tgid: %u\n", sd->sd_uid, sd->sd_gid);
142 printf(" size: %u\tflags: %x\n", sd->sd_size, ce->ce_flags);
143 }
144 }
145
146 static void show_dir_entry(struct index_state *istate,
147 const char *tag, struct dir_entry *ent)
148 {
149 int len = max_prefix_len;
150
151 if (len > ent->len)
152 die("git ls-files: internal error - directory entry not superset of prefix");
153
154 /* If ps_matches is non-NULL, figure out which pathspec(s) match. */
155 if (ps_matched)
156 dir_path_match(istate, ent, &pathspec, len, ps_matched);
157
158 fputs(tag, stdout);
159 write_eolinfo(istate, NULL, ent->name);
160 write_name(ent->name);
161 }
162
163 static void show_other_files(struct index_state *istate,
164 const struct dir_struct *dir)
165 {
166 int i;
167
168 for (i = 0; i < dir->nr; i++) {
169 struct dir_entry *ent = dir->entries[i];
170 if (!index_name_is_other(istate, ent->name, ent->len))
171 continue;
172 show_dir_entry(istate, tag_other, ent);
173 }
174 }
175
176 static void show_killed_files(struct index_state *istate,
177 const struct dir_struct *dir)
178 {
179 int i;
180 for (i = 0; i < dir->nr; i++) {
181 struct dir_entry *ent = dir->entries[i];
182 char *cp, *sp;
183 int pos, len, killed = 0;
184
185 for (cp = ent->name; cp - ent->name < ent->len; cp = sp + 1) {
186 sp = strchr(cp, '/');
187 if (!sp) {
188 /* If ent->name is prefix of an entry in the
189 * cache, it will be killed.
190 */
191 pos = index_name_pos(istate, ent->name, ent->len);
192 if (0 <= pos)
193 BUG("killed-file %.*s not found",
194 ent->len, ent->name);
195 pos = -pos - 1;
196 while (pos < istate->cache_nr &&
197 ce_stage(istate->cache[pos]))
198 pos++; /* skip unmerged */
199 if (istate->cache_nr <= pos)
200 break;
201 /* pos points at a name immediately after
202 * ent->name in the cache. Does it expect
203 * ent->name to be a directory?
204 */
205 len = ce_namelen(istate->cache[pos]);
206 if ((ent->len < len) &&
207 !strncmp(istate->cache[pos]->name,
208 ent->name, ent->len) &&
209 istate->cache[pos]->name[ent->len] == '/')
210 killed = 1;
211 break;
212 }
213 if (0 <= index_name_pos(istate, ent->name, sp - ent->name)) {
214 /* If any of the leading directories in
215 * ent->name is registered in the cache,
216 * ent->name will be killed.
217 */
218 killed = 1;
219 break;
220 }
221 }
222 if (killed)
223 show_dir_entry(istate, tag_killed, dir->entries[i]);
224 }
225 }
226
227 static void show_files(struct repository *repo, struct dir_struct *dir);
228
229 static void show_submodule(struct repository *superproject,
230 struct dir_struct *dir, const char *path)
231 {
232 struct repository subrepo;
233
234 if (repo_submodule_init(&subrepo, superproject, path, null_oid()))
235 return;
236
237 if (repo_read_index(&subrepo) < 0)
238 die("index file corrupt");
239
240 show_files(&subrepo, dir);
241
242 repo_clear(&subrepo);
243 }
244
245 static void expand_objectsize(struct strbuf *line, const struct object_id *oid,
246 const enum object_type type, unsigned int padded)
247 {
248 if (type == OBJ_BLOB) {
249 unsigned long size;
250 if (oid_object_info(the_repository, oid, &size) < 0)
251 die(_("could not get object info about '%s'"),
252 oid_to_hex(oid));
253 if (padded)
254 strbuf_addf(line, "%7"PRIuMAX, (uintmax_t)size);
255 else
256 strbuf_addf(line, "%"PRIuMAX, (uintmax_t)size);
257 } else if (padded) {
258 strbuf_addf(line, "%7s", "-");
259 } else {
260 strbuf_addstr(line, "-");
261 }
262 }
263
264 static void show_ce_fmt(struct repository *repo, const struct cache_entry *ce,
265 const char *format, const char *fullname) {
266 struct strbuf sb = STRBUF_INIT;
267
268 while (strbuf_expand_step(&sb, &format)) {
269 const char *end;
270 size_t len;
271 struct stat st;
272
273 if (skip_prefix(format, "%", &format))
274 strbuf_addch(&sb, '%');
275 else if ((len = strbuf_expand_literal(&sb, format)))
276 format += len;
277 else if (*format != '(')
278 die(_("bad ls-files format: element '%s' "
279 "does not start with '('"), format);
280 else if (!(end = strchr(format + 1, ')')))
281 die(_("bad ls-files format: element '%s' "
282 "does not end in ')'"), format);
283 else if (skip_prefix(format, "(objectmode)", &format))
284 strbuf_addf(&sb, "%06o", ce->ce_mode);
285 else if (skip_prefix(format, "(objectname)", &format))
286 strbuf_add_unique_abbrev(&sb, &ce->oid, abbrev);
287 else if (skip_prefix(format, "(objecttype)", &format))
288 strbuf_addstr(&sb, type_name(object_type(ce->ce_mode)));
289 else if (skip_prefix(format, "(objectsize:padded)", &format))
290 expand_objectsize(&sb, &ce->oid,
291 object_type(ce->ce_mode), 1);
292 else if (skip_prefix(format, "(objectsize)", &format))
293 expand_objectsize(&sb, &ce->oid,
294 object_type(ce->ce_mode), 0);
295 else if (skip_prefix(format, "(stage)", &format))
296 strbuf_addf(&sb, "%d", ce_stage(ce));
297 else if (skip_prefix(format, "(eolinfo:index)", &format))
298 strbuf_addstr(&sb, S_ISREG(ce->ce_mode) ?
299 get_cached_convert_stats_ascii(repo->index,
300 ce->name) : "");
301 else if (skip_prefix(format, "(eolinfo:worktree)", &format))
302 strbuf_addstr(&sb, !lstat(fullname, &st) &&
303 S_ISREG(st.st_mode) ?
304 get_wt_convert_stats_ascii(fullname) : "");
305 else if (skip_prefix(format, "(eolattr)", &format))
306 strbuf_addstr(&sb, get_convert_attr_ascii(repo->index,
307 fullname));
308 else if (skip_prefix(format, "(path)", &format))
309 write_name_to_buf(&sb, fullname);
310 else
311 die(_("bad ls-files format: %%%.*s"),
312 (int)(end - format + 1), format);
313 }
314 strbuf_addch(&sb, line_terminator);
315 fwrite(sb.buf, sb.len, 1, stdout);
316 strbuf_release(&sb);
317 }
318
319 static void show_ce(struct repository *repo, struct dir_struct *dir,
320 const struct cache_entry *ce, const char *fullname,
321 const char *tag)
322 {
323 if (max_prefix_len > strlen(fullname))
324 die("git ls-files: internal error - cache entry not superset of prefix");
325
326 if (recurse_submodules && S_ISGITLINK(ce->ce_mode) &&
327 is_submodule_active(repo, ce->name)) {
328 show_submodule(repo, dir, ce->name);
329 } else if (match_pathspec(repo->index, &pathspec, fullname, strlen(fullname),
330 max_prefix_len, ps_matched,
331 S_ISDIR(ce->ce_mode) ||
332 S_ISGITLINK(ce->ce_mode))) {
333 if (format) {
334 show_ce_fmt(repo, ce, format, fullname);
335 print_debug(ce);
336 return;
337 }
338
339 tag = get_tag(ce, tag);
340
341 if (!show_stage) {
342 fputs(tag, stdout);
343 } else {
344 printf("%s%06o %s %d\t",
345 tag,
346 ce->ce_mode,
347 repo_find_unique_abbrev(repo, &ce->oid, abbrev),
348 ce_stage(ce));
349 }
350 write_eolinfo(repo->index, ce, fullname);
351 write_name(fullname);
352 print_debug(ce);
353 }
354 }
355
356 static void show_ru_info(struct index_state *istate)
357 {
358 struct string_list_item *item;
359
360 if (!istate->resolve_undo)
361 return;
362
363 for_each_string_list_item(item, istate->resolve_undo) {
364 const char *path = item->string;
365 struct resolve_undo_info *ui = item->util;
366 int i, len;
367
368 len = strlen(path);
369 if (len < max_prefix_len)
370 continue; /* outside of the prefix */
371 if (!match_pathspec(istate, &pathspec, path, len,
372 max_prefix_len, ps_matched, 0))
373 continue; /* uninterested */
374 for (i = 0; i < 3; i++) {
375 if (!ui->mode[i])
376 continue;
377 printf("%s%06o %s %d\t", tag_resolve_undo, ui->mode[i],
378 repo_find_unique_abbrev(the_repository, &ui->oid[i], abbrev),
379 i + 1);
380 write_name(path);
381 }
382 }
383 }
384
385 static int ce_excluded(struct dir_struct *dir, struct index_state *istate,
386 const char *fullname, const struct cache_entry *ce)
387 {
388 int dtype = ce_to_dtype(ce);
389 return is_excluded(dir, istate, fullname, &dtype);
390 }
391
392 static void construct_fullname(struct strbuf *out, const struct repository *repo,
393 const struct cache_entry *ce)
394 {
395 strbuf_reset(out);
396 if (repo->submodule_prefix)
397 strbuf_addstr(out, repo->submodule_prefix);
398 strbuf_addstr(out, ce->name);
399 }
400
401 static void show_files(struct repository *repo, struct dir_struct *dir)
402 {
403 int i;
404 struct strbuf fullname = STRBUF_INIT;
405
406 /* For cached/deleted files we don't need to even do the readdir */
407 if (show_others || show_killed) {
408 if (!show_others)
409 dir->flags |= DIR_COLLECT_KILLED_ONLY;
410 fill_directory(dir, repo->index, &pathspec);
411 if (show_others)
412 show_other_files(repo->index, dir);
413 if (show_killed)
414 show_killed_files(repo->index, dir);
415 }
416
417 if (!(show_cached || show_stage || show_deleted || show_modified))
418 return;
419
420 if (!show_sparse_dirs)
421 ensure_full_index(repo->index);
422
423 for (i = 0; i < repo->index->cache_nr; i++) {
424 const struct cache_entry *ce = repo->index->cache[i];
425 struct stat st;
426 int stat_err;
427
428 construct_fullname(&fullname, repo, ce);
429
430 if ((dir->flags & DIR_SHOW_IGNORED) &&
431 !ce_excluded(dir, repo->index, fullname.buf, ce))
432 continue;
433 if (ce->ce_flags & CE_UPDATE)
434 continue;
435 if ((show_cached || show_stage) &&
436 (!show_unmerged || ce_stage(ce))) {
437 show_ce(repo, dir, ce, fullname.buf,
438 ce_stage(ce) ? tag_unmerged :
439 (ce_skip_worktree(ce) ? tag_skip_worktree :
440 tag_cached));
441 if (skipping_duplicates)
442 goto skip_to_next_name;
443 }
444
445 if (!(show_deleted || show_modified))
446 continue;
447 if (ce_skip_worktree(ce))
448 continue;
449 stat_err = lstat(fullname.buf, &st);
450 if (stat_err && (errno != ENOENT && errno != ENOTDIR))
451 error_errno("cannot lstat '%s'", fullname.buf);
452 if (stat_err && show_deleted) {
453 show_ce(repo, dir, ce, fullname.buf, tag_removed);
454 if (skipping_duplicates)
455 goto skip_to_next_name;
456 }
457 if (show_modified &&
458 (stat_err || ie_modified(repo->index, ce, &st, 0))) {
459 show_ce(repo, dir, ce, fullname.buf, tag_modified);
460 if (skipping_duplicates)
461 goto skip_to_next_name;
462 }
463 continue;
464
465 skip_to_next_name:
466 {
467 int j;
468 struct cache_entry **cache = repo->index->cache;
469 for (j = i + 1; j < repo->index->cache_nr; j++)
470 if (strcmp(ce->name, cache[j]->name))
471 break;
472 i = j - 1; /* compensate for the for loop */
473 }
474 }
475
476 strbuf_release(&fullname);
477 }
478
479 /*
480 * Prune the index to only contain stuff starting with "prefix"
481 */
482 static void prune_index(struct index_state *istate,
483 const char *prefix, size_t prefixlen)
484 {
485 int pos;
486 unsigned int first, last;
487
488 if (!prefix || !istate->cache_nr)
489 return;
490 pos = index_name_pos(istate, prefix, prefixlen);
491 if (pos < 0)
492 pos = -pos-1;
493 first = pos;
494 last = istate->cache_nr;
495 while (last > first) {
496 int next = first + ((last - first) >> 1);
497 const struct cache_entry *ce = istate->cache[next];
498 if (!strncmp(ce->name, prefix, prefixlen)) {
499 first = next+1;
500 continue;
501 }
502 last = next;
503 }
504 MOVE_ARRAY(istate->cache, istate->cache + pos, last - pos);
505 istate->cache_nr = last - pos;
506 }
507
508 static int get_common_prefix_len(const char *common_prefix)
509 {
510 int common_prefix_len;
511
512 if (!common_prefix)
513 return 0;
514
515 common_prefix_len = strlen(common_prefix);
516
517 /*
518 * If the prefix has a trailing slash, strip it so that submodules wont
519 * be pruned from the index.
520 */
521 if (common_prefix[common_prefix_len - 1] == '/')
522 common_prefix_len--;
523
524 return common_prefix_len;
525 }
526
527 static const char * const ls_files_usage[] = {
528 N_("git ls-files [<options>] [<file>...]"),
529 NULL
530 };
531
532 static int option_parse_exclude(const struct option *opt,
533 const char *arg, int unset)
534 {
535 struct string_list *exclude_list = opt->value;
536
537 BUG_ON_OPT_NEG(unset);
538
539 exc_given = 1;
540 string_list_append(exclude_list, arg);
541
542 return 0;
543 }
544
545 static int option_parse_exclude_from(const struct option *opt,
546 const char *arg, int unset)
547 {
548 struct dir_struct *dir = opt->value;
549
550 BUG_ON_OPT_NEG(unset);
551
552 exc_given = 1;
553 add_patterns_from_file(dir, arg);
554
555 return 0;
556 }
557
558 static int option_parse_exclude_standard(const struct option *opt,
559 const char *arg, int unset)
560 {
561 struct dir_struct *dir = opt->value;
562
563 BUG_ON_OPT_NEG(unset);
564 BUG_ON_OPT_ARG(arg);
565
566 exc_given = 1;
567 setup_standard_excludes(dir);
568
569 return 0;
570 }
571
572 int cmd_ls_files(int argc, const char **argv, const char *cmd_prefix)
573 {
574 int require_work_tree = 0, show_tag = 0, i;
575 char *max_prefix;
576 struct dir_struct dir = DIR_INIT;
577 struct pattern_list *pl;
578 struct string_list exclude_list = STRING_LIST_INIT_NODUP;
579 struct option builtin_ls_files_options[] = {
580 /* Think twice before adding "--nul" synonym to this */
581 OPT_SET_INT('z', NULL, &line_terminator,
582 N_("separate paths with the NUL character"), '\0'),
583 OPT_BOOL('t', NULL, &show_tag,
584 N_("identify the file status with tags")),
585 OPT_BOOL('v', NULL, &show_valid_bit,
586 N_("use lowercase letters for 'assume unchanged' files")),
587 OPT_BOOL('f', NULL, &show_fsmonitor_bit,
588 N_("use lowercase letters for 'fsmonitor clean' files")),
589 OPT_BOOL('c', "cached", &show_cached,
590 N_("show cached files in the output (default)")),
591 OPT_BOOL('d', "deleted", &show_deleted,
592 N_("show deleted files in the output")),
593 OPT_BOOL('m', "modified", &show_modified,
594 N_("show modified files in the output")),
595 OPT_BOOL('o', "others", &show_others,
596 N_("show other files in the output")),
597 OPT_BIT('i', "ignored", &dir.flags,
598 N_("show ignored files in the output"),
599 DIR_SHOW_IGNORED),
600 OPT_BOOL('s', "stage", &show_stage,
601 N_("show staged contents' object name in the output")),
602 OPT_BOOL('k', "killed", &show_killed,
603 N_("show files on the filesystem that need to be removed")),
604 OPT_BIT(0, "directory", &dir.flags,
605 N_("show 'other' directories' names only"),
606 DIR_SHOW_OTHER_DIRECTORIES),
607 OPT_BOOL(0, "eol", &show_eol, N_("show line endings of files")),
608 OPT_NEGBIT(0, "empty-directory", &dir.flags,
609 N_("don't show empty directories"),
610 DIR_HIDE_EMPTY_DIRECTORIES),
611 OPT_BOOL('u', "unmerged", &show_unmerged,
612 N_("show unmerged files in the output")),
613 OPT_BOOL(0, "resolve-undo", &show_resolve_undo,
614 N_("show resolve-undo information")),
615 OPT_CALLBACK_F('x', "exclude", &exclude_list, N_("pattern"),
616 N_("skip files matching pattern"),
617 PARSE_OPT_NONEG, option_parse_exclude),
618 OPT_CALLBACK_F('X', "exclude-from", &dir, N_("file"),
619 N_("read exclude patterns from <file>"),
620 PARSE_OPT_NONEG, option_parse_exclude_from),
621 OPT_STRING(0, "exclude-per-directory", &dir.exclude_per_dir, N_("file"),
622 N_("read additional per-directory exclude patterns in <file>")),
623 OPT_CALLBACK_F(0, "exclude-standard", &dir, NULL,
624 N_("add the standard git exclusions"),
625 PARSE_OPT_NOARG | PARSE_OPT_NONEG,
626 option_parse_exclude_standard),
627 OPT_SET_INT_F(0, "full-name", &prefix_len,
628 N_("make the output relative to the project top directory"),
629 0, PARSE_OPT_NONEG),
630 OPT_BOOL(0, "recurse-submodules", &recurse_submodules,
631 N_("recurse through submodules")),
632 OPT_BOOL(0, "error-unmatch", &error_unmatch,
633 N_("if any <file> is not in the index, treat this as an error")),
634 OPT_STRING(0, "with-tree", &with_tree, N_("tree-ish"),
635 N_("pretend that paths removed since <tree-ish> are still present")),
636 OPT__ABBREV(&abbrev),
637 OPT_BOOL(0, "debug", &debug_mode, N_("show debugging data")),
638 OPT_BOOL(0, "deduplicate", &skipping_duplicates,
639 N_("suppress duplicate entries")),
640 OPT_BOOL(0, "sparse", &show_sparse_dirs,
641 N_("show sparse directories in the presence of a sparse index")),
642 OPT_STRING_F(0, "format", &format, N_("format"),
643 N_("format to use for the output"),
644 PARSE_OPT_NONEG),
645 OPT_END()
646 };
647 int ret = 0;
648
649 if (argc == 2 && !strcmp(argv[1], "-h"))
650 usage_with_options(ls_files_usage, builtin_ls_files_options);
651
652 prepare_repo_settings(the_repository);
653 the_repository->settings.command_requires_full_index = 0;
654
655 prefix = cmd_prefix;
656 if (prefix)
657 prefix_len = strlen(prefix);
658 git_config(git_default_config, NULL);
659
660 if (repo_read_index(the_repository) < 0)
661 die("index file corrupt");
662
663 argc = parse_options(argc, argv, prefix, builtin_ls_files_options,
664 ls_files_usage, 0);
665 pl = add_pattern_list(&dir, EXC_CMDL, "--exclude option");
666 for (i = 0; i < exclude_list.nr; i++) {
667 add_pattern(exclude_list.items[i].string, "", 0, pl, --exclude_args);
668 }
669
670 if (format && (show_stage || show_others || show_killed ||
671 show_resolve_undo || skipping_duplicates || show_eol || show_tag))
672 usage_msg_opt(_("--format cannot be used with -s, -o, -k, -t, "
673 "--resolve-undo, --deduplicate, --eol"),
674 ls_files_usage, builtin_ls_files_options);
675
676 if (show_tag || show_valid_bit || show_fsmonitor_bit) {
677 tag_cached = "H ";
678 tag_unmerged = "M ";
679 tag_removed = "R ";
680 tag_modified = "C ";
681 tag_other = "? ";
682 tag_killed = "K ";
683 tag_skip_worktree = "S ";
684 tag_resolve_undo = "U ";
685 }
686 if (show_modified || show_others || show_deleted || (dir.flags & DIR_SHOW_IGNORED) || show_killed)
687 require_work_tree = 1;
688 if (show_unmerged)
689 /*
690 * There's no point in showing unmerged unless
691 * you also show the stage information.
692 */
693 show_stage = 1;
694 if (show_tag || show_stage)
695 skipping_duplicates = 0;
696 if (dir.exclude_per_dir)
697 exc_given = 1;
698
699 if (require_work_tree && !is_inside_work_tree())
700 setup_work_tree();
701
702 if (recurse_submodules &&
703 (show_deleted || show_others || show_unmerged ||
704 show_killed || show_modified || show_resolve_undo || with_tree))
705 die("ls-files --recurse-submodules unsupported mode");
706
707 if (recurse_submodules && error_unmatch)
708 die("ls-files --recurse-submodules does not support "
709 "--error-unmatch");
710
711 parse_pathspec(&pathspec, 0,
712 PATHSPEC_PREFER_CWD,
713 prefix, argv);
714
715 /*
716 * Find common prefix for all pathspec's
717 * This is used as a performance optimization which unfortunately cannot
718 * be done when recursing into submodules because when a pathspec is
719 * given which spans repository boundaries you can't simply remove the
720 * submodule entry because the pathspec may match something inside the
721 * submodule.
722 */
723 if (recurse_submodules)
724 max_prefix = NULL;
725 else
726 max_prefix = common_prefix(&pathspec);
727 max_prefix_len = get_common_prefix_len(max_prefix);
728
729 prune_index(the_repository->index, max_prefix, max_prefix_len);
730
731 /* Treat unmatching pathspec elements as errors */
732 if (pathspec.nr && error_unmatch)
733 ps_matched = xcalloc(pathspec.nr, 1);
734
735 if ((dir.flags & DIR_SHOW_IGNORED) && !show_others && !show_cached)
736 die("ls-files -i must be used with either -o or -c");
737
738 if ((dir.flags & DIR_SHOW_IGNORED) && !exc_given)
739 die("ls-files --ignored needs some exclude pattern");
740
741 /* With no flags, we default to showing the cached files */
742 if (!(show_stage || show_deleted || show_others || show_unmerged ||
743 show_killed || show_modified || show_resolve_undo))
744 show_cached = 1;
745
746 if (with_tree) {
747 /*
748 * Basic sanity check; show-stages and show-unmerged
749 * would not make any sense with this option.
750 */
751 if (show_stage || show_unmerged)
752 die(_("options '%s' and '%s' cannot be used together"), "ls-files --with-tree", "-s/-u");
753 overlay_tree_on_index(the_repository->index, with_tree, max_prefix);
754 }
755
756 show_files(the_repository, &dir);
757
758 if (show_resolve_undo)
759 show_ru_info(the_repository->index);
760
761 if (ps_matched && report_path_error(ps_matched, &pathspec)) {
762 fprintf(stderr, "Did you forget to 'git add'?\n");
763 ret = 1;
764 }
765
766 string_list_clear(&exclude_list, 0);
767 dir_clear(&dir);
768 free(max_prefix);
769 return ret;
770 }