Start the 2.46 cycle
[git.git] / builtin / ls-files.c
blob6eeb5cba783d8dd55a9a0dce77818293bbd6699d
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.
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"
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;
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;
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 = "";
68 static void write_eolinfo(struct index_state *istate,
69 const struct cache_entry *ce, const char *path)
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);
85 static void write_name(const char *name)
88 * With "--full-name", prefix_len=0; this caller needs to pass
89 * an empty string in that case (a NULL is good for "").
91 write_name_quoted_relative(name, prefix_len ? prefix : NULL,
92 stdout, line_terminator);
95 static void write_name_to_buf(struct strbuf *sb, const char *name)
97 struct strbuf buf = STRBUF_INIT;
98 const char *rel = relative_path(name, prefix_len ? prefix : NULL, &buf);
100 if (line_terminator)
101 quote_c_style(rel, sb, NULL, 0);
102 else
103 strbuf_addstr(sb, rel);
105 strbuf_release(&buf);
108 static const char *get_tag(const struct cache_entry *ce, const char *tag)
110 static char alttag[4];
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);
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;
127 tag = alttag;
130 return tag;
133 static void print_debug(const struct cache_entry *ce)
135 if (debug_mode) {
136 const struct stat_data *sd = &ce->ce_stat_data;
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);
146 static void show_dir_entry(struct index_state *istate,
147 const char *tag, struct dir_entry *ent)
149 int len = max_prefix_len;
151 if (len > ent->len)
152 die("git ls-files: internal error - directory entry not superset of prefix");
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);
158 fputs(tag, stdout);
159 write_eolinfo(istate, NULL, ent->name);
160 write_name(ent->name);
163 static void show_other_files(struct index_state *istate,
164 const struct dir_struct *dir)
166 int i;
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);
176 static void show_killed_files(struct index_state *istate,
177 const struct dir_struct *dir)
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;
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.
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?
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;
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.
218 killed = 1;
219 break;
222 if (killed)
223 show_dir_entry(istate, tag_killed, dir->entries[i]);
227 static void show_files(struct repository *repo, struct dir_struct *dir);
229 static void show_submodule(struct repository *superproject,
230 struct dir_struct *dir, const char *path)
232 struct repository subrepo;
234 if (repo_submodule_init(&subrepo, superproject, path, null_oid()))
235 return;
237 if (repo_read_index(&subrepo) < 0)
238 die("index file corrupt");
240 show_files(&subrepo, dir);
242 repo_clear(&subrepo);
245 static void expand_objectsize(struct strbuf *line, const struct object_id *oid,
246 const enum object_type type, unsigned int padded)
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, "-");
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;
268 while (strbuf_expand_step(&sb, &format)) {
269 size_t len;
270 struct stat st;
272 if (skip_prefix(format, "%", &format))
273 strbuf_addch(&sb, '%');
274 else if ((len = strbuf_expand_literal(&sb, format)))
275 format += len;
276 else if (skip_prefix(format, "(objectmode)", &format))
277 strbuf_addf(&sb, "%06o", ce->ce_mode);
278 else if (skip_prefix(format, "(objectname)", &format))
279 strbuf_add_unique_abbrev(&sb, &ce->oid, abbrev);
280 else if (skip_prefix(format, "(objecttype)", &format))
281 strbuf_addstr(&sb, type_name(object_type(ce->ce_mode)));
282 else if (skip_prefix(format, "(objectsize:padded)", &format))
283 expand_objectsize(&sb, &ce->oid,
284 object_type(ce->ce_mode), 1);
285 else if (skip_prefix(format, "(objectsize)", &format))
286 expand_objectsize(&sb, &ce->oid,
287 object_type(ce->ce_mode), 0);
288 else if (skip_prefix(format, "(stage)", &format))
289 strbuf_addf(&sb, "%d", ce_stage(ce));
290 else if (skip_prefix(format, "(eolinfo:index)", &format))
291 strbuf_addstr(&sb, S_ISREG(ce->ce_mode) ?
292 get_cached_convert_stats_ascii(repo->index,
293 ce->name) : "");
294 else if (skip_prefix(format, "(eolinfo:worktree)", &format))
295 strbuf_addstr(&sb, !lstat(fullname, &st) &&
296 S_ISREG(st.st_mode) ?
297 get_wt_convert_stats_ascii(fullname) : "");
298 else if (skip_prefix(format, "(eolattr)", &format))
299 strbuf_addstr(&sb, get_convert_attr_ascii(repo->index,
300 fullname));
301 else if (skip_prefix(format, "(path)", &format))
302 write_name_to_buf(&sb, fullname);
303 else
304 strbuf_expand_bad_format(format, "ls-files");
306 strbuf_addch(&sb, line_terminator);
307 fwrite(sb.buf, sb.len, 1, stdout);
308 strbuf_release(&sb);
311 static void show_ce(struct repository *repo, struct dir_struct *dir,
312 const struct cache_entry *ce, const char *fullname,
313 const char *tag)
315 if (max_prefix_len > strlen(fullname))
316 die("git ls-files: internal error - cache entry not superset of prefix");
318 if (recurse_submodules && S_ISGITLINK(ce->ce_mode) &&
319 is_submodule_active(repo, ce->name)) {
320 show_submodule(repo, dir, ce->name);
321 } else if (match_pathspec(repo->index, &pathspec, fullname, strlen(fullname),
322 max_prefix_len, ps_matched,
323 S_ISDIR(ce->ce_mode) ||
324 S_ISGITLINK(ce->ce_mode))) {
325 if (format) {
326 show_ce_fmt(repo, ce, format, fullname);
327 print_debug(ce);
328 return;
331 tag = get_tag(ce, tag);
333 if (!show_stage) {
334 fputs(tag, stdout);
335 } else {
336 printf("%s%06o %s %d\t",
337 tag,
338 ce->ce_mode,
339 repo_find_unique_abbrev(repo, &ce->oid, abbrev),
340 ce_stage(ce));
342 write_eolinfo(repo->index, ce, fullname);
343 write_name(fullname);
344 print_debug(ce);
348 static void show_ru_info(struct index_state *istate)
350 struct string_list_item *item;
352 if (!istate->resolve_undo)
353 return;
355 for_each_string_list_item(item, istate->resolve_undo) {
356 const char *path = item->string;
357 struct resolve_undo_info *ui = item->util;
358 int i, len;
360 len = strlen(path);
361 if (len < max_prefix_len)
362 continue; /* outside of the prefix */
363 if (!match_pathspec(istate, &pathspec, path, len,
364 max_prefix_len, ps_matched, 0))
365 continue; /* uninterested */
366 for (i = 0; i < 3; i++) {
367 if (!ui->mode[i])
368 continue;
369 printf("%s%06o %s %d\t", tag_resolve_undo, ui->mode[i],
370 repo_find_unique_abbrev(the_repository, &ui->oid[i], abbrev),
371 i + 1);
372 write_name(path);
377 static int ce_excluded(struct dir_struct *dir, struct index_state *istate,
378 const char *fullname, const struct cache_entry *ce)
380 int dtype = ce_to_dtype(ce);
381 return is_excluded(dir, istate, fullname, &dtype);
384 static void construct_fullname(struct strbuf *out, const struct repository *repo,
385 const struct cache_entry *ce)
387 strbuf_reset(out);
388 if (repo->submodule_prefix)
389 strbuf_addstr(out, repo->submodule_prefix);
390 strbuf_addstr(out, ce->name);
393 static void show_files(struct repository *repo, struct dir_struct *dir)
395 int i;
396 struct strbuf fullname = STRBUF_INIT;
398 /* For cached/deleted files we don't need to even do the readdir */
399 if (show_others || show_killed) {
400 if (!show_others)
401 dir->flags |= DIR_COLLECT_KILLED_ONLY;
402 fill_directory(dir, repo->index, &pathspec);
403 if (show_others)
404 show_other_files(repo->index, dir);
405 if (show_killed)
406 show_killed_files(repo->index, dir);
409 if (!(show_cached || show_stage || show_deleted || show_modified))
410 return;
412 if (!show_sparse_dirs)
413 ensure_full_index(repo->index);
415 for (i = 0; i < repo->index->cache_nr; i++) {
416 const struct cache_entry *ce = repo->index->cache[i];
417 struct stat st;
418 int stat_err;
420 construct_fullname(&fullname, repo, ce);
422 if ((dir->flags & DIR_SHOW_IGNORED) &&
423 !ce_excluded(dir, repo->index, fullname.buf, ce))
424 continue;
425 if (ce->ce_flags & CE_UPDATE)
426 continue;
427 if ((show_cached || show_stage) &&
428 (!show_unmerged || ce_stage(ce))) {
429 show_ce(repo, dir, ce, fullname.buf,
430 ce_stage(ce) ? tag_unmerged :
431 (ce_skip_worktree(ce) ? tag_skip_worktree :
432 tag_cached));
433 if (skipping_duplicates)
434 goto skip_to_next_name;
437 if (!(show_deleted || show_modified))
438 continue;
439 if (ce_skip_worktree(ce))
440 continue;
441 stat_err = lstat(fullname.buf, &st);
442 if (stat_err && (errno != ENOENT && errno != ENOTDIR))
443 error_errno("cannot lstat '%s'", fullname.buf);
444 if (stat_err && show_deleted) {
445 show_ce(repo, dir, ce, fullname.buf, tag_removed);
446 if (skipping_duplicates)
447 goto skip_to_next_name;
449 if (show_modified &&
450 (stat_err || ie_modified(repo->index, ce, &st, 0))) {
451 show_ce(repo, dir, ce, fullname.buf, tag_modified);
452 if (skipping_duplicates)
453 goto skip_to_next_name;
455 continue;
457 skip_to_next_name:
459 int j;
460 struct cache_entry **cache = repo->index->cache;
461 for (j = i + 1; j < repo->index->cache_nr; j++)
462 if (strcmp(ce->name, cache[j]->name))
463 break;
464 i = j - 1; /* compensate for the for loop */
468 strbuf_release(&fullname);
472 * Prune the index to only contain stuff starting with "prefix"
474 static void prune_index(struct index_state *istate,
475 const char *prefix, size_t prefixlen)
477 int pos;
478 unsigned int first, last;
480 if (!prefix || !istate->cache_nr)
481 return;
482 pos = index_name_pos(istate, prefix, prefixlen);
483 if (pos < 0)
484 pos = -pos-1;
485 first = pos;
486 last = istate->cache_nr;
487 while (last > first) {
488 int next = first + ((last - first) >> 1);
489 const struct cache_entry *ce = istate->cache[next];
490 if (!strncmp(ce->name, prefix, prefixlen)) {
491 first = next+1;
492 continue;
494 last = next;
496 MOVE_ARRAY(istate->cache, istate->cache + pos, last - pos);
497 istate->cache_nr = last - pos;
500 static int get_common_prefix_len(const char *common_prefix)
502 int common_prefix_len;
504 if (!common_prefix)
505 return 0;
507 common_prefix_len = strlen(common_prefix);
510 * If the prefix has a trailing slash, strip it so that submodules wont
511 * be pruned from the index.
513 if (common_prefix[common_prefix_len - 1] == '/')
514 common_prefix_len--;
516 return common_prefix_len;
519 static const char * const ls_files_usage[] = {
520 N_("git ls-files [<options>] [<file>...]"),
521 NULL
524 static int option_parse_exclude(const struct option *opt,
525 const char *arg, int unset)
527 struct string_list *exclude_list = opt->value;
529 BUG_ON_OPT_NEG(unset);
531 exc_given = 1;
532 string_list_append(exclude_list, arg);
534 return 0;
537 static int option_parse_exclude_from(const struct option *opt,
538 const char *arg, int unset)
540 struct dir_struct *dir = opt->value;
542 BUG_ON_OPT_NEG(unset);
544 exc_given = 1;
545 add_patterns_from_file(dir, arg);
547 return 0;
550 static int option_parse_exclude_standard(const struct option *opt,
551 const char *arg, int unset)
553 struct dir_struct *dir = opt->value;
555 BUG_ON_OPT_NEG(unset);
556 BUG_ON_OPT_ARG(arg);
558 exc_given = 1;
559 setup_standard_excludes(dir);
561 return 0;
564 int cmd_ls_files(int argc, const char **argv, const char *cmd_prefix)
566 int require_work_tree = 0, show_tag = 0, i;
567 char *max_prefix;
568 struct dir_struct dir = DIR_INIT;
569 struct pattern_list *pl;
570 struct string_list exclude_list = STRING_LIST_INIT_NODUP;
571 struct option builtin_ls_files_options[] = {
572 /* Think twice before adding "--nul" synonym to this */
573 OPT_SET_INT('z', NULL, &line_terminator,
574 N_("separate paths with the NUL character"), '\0'),
575 OPT_BOOL('t', NULL, &show_tag,
576 N_("identify the file status with tags")),
577 OPT_BOOL('v', NULL, &show_valid_bit,
578 N_("use lowercase letters for 'assume unchanged' files")),
579 OPT_BOOL('f', NULL, &show_fsmonitor_bit,
580 N_("use lowercase letters for 'fsmonitor clean' files")),
581 OPT_BOOL('c', "cached", &show_cached,
582 N_("show cached files in the output (default)")),
583 OPT_BOOL('d', "deleted", &show_deleted,
584 N_("show deleted files in the output")),
585 OPT_BOOL('m', "modified", &show_modified,
586 N_("show modified files in the output")),
587 OPT_BOOL('o', "others", &show_others,
588 N_("show other files in the output")),
589 OPT_BIT('i', "ignored", &dir.flags,
590 N_("show ignored files in the output"),
591 DIR_SHOW_IGNORED),
592 OPT_BOOL('s', "stage", &show_stage,
593 N_("show staged contents' object name in the output")),
594 OPT_BOOL('k', "killed", &show_killed,
595 N_("show files on the filesystem that need to be removed")),
596 OPT_BIT(0, "directory", &dir.flags,
597 N_("show 'other' directories' names only"),
598 DIR_SHOW_OTHER_DIRECTORIES),
599 OPT_BOOL(0, "eol", &show_eol, N_("show line endings of files")),
600 OPT_NEGBIT(0, "empty-directory", &dir.flags,
601 N_("don't show empty directories"),
602 DIR_HIDE_EMPTY_DIRECTORIES),
603 OPT_BOOL('u', "unmerged", &show_unmerged,
604 N_("show unmerged files in the output")),
605 OPT_BOOL(0, "resolve-undo", &show_resolve_undo,
606 N_("show resolve-undo information")),
607 OPT_CALLBACK_F('x', "exclude", &exclude_list, N_("pattern"),
608 N_("skip files matching pattern"),
609 PARSE_OPT_NONEG, option_parse_exclude),
610 OPT_CALLBACK_F('X', "exclude-from", &dir, N_("file"),
611 N_("read exclude patterns from <file>"),
612 PARSE_OPT_NONEG, option_parse_exclude_from),
613 OPT_STRING(0, "exclude-per-directory", &dir.exclude_per_dir, N_("file"),
614 N_("read additional per-directory exclude patterns in <file>")),
615 OPT_CALLBACK_F(0, "exclude-standard", &dir, NULL,
616 N_("add the standard git exclusions"),
617 PARSE_OPT_NOARG | PARSE_OPT_NONEG,
618 option_parse_exclude_standard),
619 OPT_SET_INT_F(0, "full-name", &prefix_len,
620 N_("make the output relative to the project top directory"),
621 0, PARSE_OPT_NONEG),
622 OPT_BOOL(0, "recurse-submodules", &recurse_submodules,
623 N_("recurse through submodules")),
624 OPT_BOOL(0, "error-unmatch", &error_unmatch,
625 N_("if any <file> is not in the index, treat this as an error")),
626 OPT_STRING(0, "with-tree", &with_tree, N_("tree-ish"),
627 N_("pretend that paths removed since <tree-ish> are still present")),
628 OPT__ABBREV(&abbrev),
629 OPT_BOOL(0, "debug", &debug_mode, N_("show debugging data")),
630 OPT_BOOL(0, "deduplicate", &skipping_duplicates,
631 N_("suppress duplicate entries")),
632 OPT_BOOL(0, "sparse", &show_sparse_dirs,
633 N_("show sparse directories in the presence of a sparse index")),
634 OPT_STRING_F(0, "format", &format, N_("format"),
635 N_("format to use for the output"),
636 PARSE_OPT_NONEG),
637 OPT_END()
639 int ret = 0;
641 if (argc == 2 && !strcmp(argv[1], "-h"))
642 usage_with_options(ls_files_usage, builtin_ls_files_options);
644 prepare_repo_settings(the_repository);
645 the_repository->settings.command_requires_full_index = 0;
647 prefix = cmd_prefix;
648 if (prefix)
649 prefix_len = strlen(prefix);
650 git_config(git_default_config, NULL);
652 if (repo_read_index(the_repository) < 0)
653 die("index file corrupt");
655 argc = parse_options(argc, argv, prefix, builtin_ls_files_options,
656 ls_files_usage, 0);
657 pl = add_pattern_list(&dir, EXC_CMDL, "--exclude option");
658 for (i = 0; i < exclude_list.nr; i++) {
659 add_pattern(exclude_list.items[i].string, "", 0, pl, --exclude_args);
662 if (format && (show_stage || show_others || show_killed ||
663 show_resolve_undo || skipping_duplicates || show_eol || show_tag))
664 usage_msg_opt(_("--format cannot be used with -s, -o, -k, -t, "
665 "--resolve-undo, --deduplicate, --eol"),
666 ls_files_usage, builtin_ls_files_options);
668 if (show_tag || show_valid_bit || show_fsmonitor_bit) {
669 tag_cached = "H ";
670 tag_unmerged = "M ";
671 tag_removed = "R ";
672 tag_modified = "C ";
673 tag_other = "? ";
674 tag_killed = "K ";
675 tag_skip_worktree = "S ";
676 tag_resolve_undo = "U ";
678 if (show_modified || show_others || show_deleted || (dir.flags & DIR_SHOW_IGNORED) || show_killed)
679 require_work_tree = 1;
680 if (show_unmerged)
682 * There's no point in showing unmerged unless
683 * you also show the stage information.
685 show_stage = 1;
686 if (show_tag || show_stage)
687 skipping_duplicates = 0;
688 if (dir.exclude_per_dir)
689 exc_given = 1;
691 if (require_work_tree && !is_inside_work_tree())
692 setup_work_tree();
694 if (recurse_submodules &&
695 (show_deleted || show_others || show_unmerged ||
696 show_killed || show_modified || show_resolve_undo || with_tree))
697 die("ls-files --recurse-submodules unsupported mode");
699 if (recurse_submodules && error_unmatch)
700 die("ls-files --recurse-submodules does not support "
701 "--error-unmatch");
703 parse_pathspec(&pathspec, 0,
704 PATHSPEC_PREFER_CWD,
705 prefix, argv);
708 * Find common prefix for all pathspec's
709 * This is used as a performance optimization which unfortunately cannot
710 * be done when recursing into submodules because when a pathspec is
711 * given which spans repository boundaries you can't simply remove the
712 * submodule entry because the pathspec may match something inside the
713 * submodule.
715 if (recurse_submodules)
716 max_prefix = NULL;
717 else
718 max_prefix = common_prefix(&pathspec);
719 max_prefix_len = get_common_prefix_len(max_prefix);
721 prune_index(the_repository->index, max_prefix, max_prefix_len);
723 /* Treat unmatching pathspec elements as errors */
724 if (pathspec.nr && error_unmatch)
725 ps_matched = xcalloc(pathspec.nr, 1);
727 if ((dir.flags & DIR_SHOW_IGNORED) && !show_others && !show_cached)
728 die("ls-files -i must be used with either -o or -c");
730 if ((dir.flags & DIR_SHOW_IGNORED) && !exc_given)
731 die("ls-files --ignored needs some exclude pattern");
733 /* With no flags, we default to showing the cached files */
734 if (!(show_stage || show_deleted || show_others || show_unmerged ||
735 show_killed || show_modified || show_resolve_undo))
736 show_cached = 1;
738 if (with_tree) {
740 * Basic sanity check; show-stages and show-unmerged
741 * would not make any sense with this option.
743 if (show_stage || show_unmerged)
744 die(_("options '%s' and '%s' cannot be used together"), "ls-files --with-tree", "-s/-u");
745 overlay_tree_on_index(the_repository->index, with_tree, max_prefix);
748 show_files(the_repository, &dir);
750 if (show_resolve_undo)
751 show_ru_info(the_repository->index);
753 if (ps_matched && report_path_error(ps_matched, &pathspec)) {
754 fprintf(stderr, "Did you forget to 'git add'?\n");
755 ret = 1;
758 string_list_clear(&exclude_list, 0);
759 dir_clear(&dir);
760 free(max_prefix);
761 return ret;