surround %s with quotes when failed to lookup commit
[git/debian.git] / builtin / ls-files.c
blob625f48f0d6178f9078f887a2941e4d8c2a9efe30
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 "cache.h"
9 #include "repository.h"
10 #include "config.h"
11 #include "convert.h"
12 #include "quote.h"
13 #include "dir.h"
14 #include "builtin.h"
15 #include "gettext.h"
16 #include "object-name.h"
17 #include "strbuf.h"
18 #include "tree.h"
19 #include "cache-tree.h"
20 #include "parse-options.h"
21 #include "resolve-undo.h"
22 #include "string-list.h"
23 #include "pathspec.h"
24 #include "run-command.h"
25 #include "setup.h"
26 #include "submodule.h"
27 #include "submodule-config.h"
29 static int abbrev;
30 static int show_deleted;
31 static int show_cached;
32 static int show_others;
33 static int show_stage;
34 static int show_unmerged;
35 static int show_resolve_undo;
36 static int show_modified;
37 static int show_killed;
38 static int show_valid_bit;
39 static int show_fsmonitor_bit;
40 static int line_terminator = '\n';
41 static int debug_mode;
42 static int show_eol;
43 static int recurse_submodules;
44 static int skipping_duplicates;
45 static int show_sparse_dirs;
47 static const char *prefix;
48 static int max_prefix_len;
49 static int prefix_len;
50 static struct pathspec pathspec;
51 static int error_unmatch;
52 static char *ps_matched;
53 static const char *with_tree;
54 static int exc_given;
55 static int exclude_args;
56 static const char *format;
58 static const char *tag_cached = "";
59 static const char *tag_unmerged = "";
60 static const char *tag_removed = "";
61 static const char *tag_other = "";
62 static const char *tag_killed = "";
63 static const char *tag_modified = "";
64 static const char *tag_skip_worktree = "";
65 static const char *tag_resolve_undo = "";
67 static void write_eolinfo(struct index_state *istate,
68 const struct cache_entry *ce, const char *path)
70 if (show_eol) {
71 struct stat st;
72 const char *i_txt = "";
73 const char *w_txt = "";
74 const char *a_txt = get_convert_attr_ascii(istate, path);
75 if (ce && S_ISREG(ce->ce_mode))
76 i_txt = get_cached_convert_stats_ascii(istate,
77 ce->name);
78 if (!lstat(path, &st) && S_ISREG(st.st_mode))
79 w_txt = get_wt_convert_stats_ascii(path);
80 printf("i/%-5s w/%-5s attr/%-17s\t", i_txt, w_txt, a_txt);
84 static void write_name(const char *name)
87 * With "--full-name", prefix_len=0; this caller needs to pass
88 * an empty string in that case (a NULL is good for "").
90 write_name_quoted_relative(name, prefix_len ? prefix : NULL,
91 stdout, line_terminator);
94 static void write_name_to_buf(struct strbuf *sb, const char *name)
96 struct strbuf buf = STRBUF_INIT;
97 const char *rel = relative_path(name, prefix_len ? prefix : NULL, &buf);
99 if (line_terminator)
100 quote_c_style(rel, sb, NULL, 0);
101 else
102 strbuf_addstr(sb, rel);
104 strbuf_release(&buf);
107 static const char *get_tag(const struct cache_entry *ce, const char *tag)
109 static char alttag[4];
111 if (tag && *tag && ((show_valid_bit && (ce->ce_flags & CE_VALID)) ||
112 (show_fsmonitor_bit && (ce->ce_flags & CE_FSMONITOR_VALID)))) {
113 memcpy(alttag, tag, 3);
115 if (isalpha(tag[0])) {
116 alttag[0] = tolower(tag[0]);
117 } else if (tag[0] == '?') {
118 alttag[0] = '!';
119 } else {
120 alttag[0] = 'v';
121 alttag[1] = tag[0];
122 alttag[2] = ' ';
123 alttag[3] = 0;
126 tag = alttag;
129 return tag;
132 static void print_debug(const struct cache_entry *ce)
134 if (debug_mode) {
135 const struct stat_data *sd = &ce->ce_stat_data;
137 printf(" ctime: %u:%u\n", sd->sd_ctime.sec, sd->sd_ctime.nsec);
138 printf(" mtime: %u:%u\n", sd->sd_mtime.sec, sd->sd_mtime.nsec);
139 printf(" dev: %u\tino: %u\n", sd->sd_dev, sd->sd_ino);
140 printf(" uid: %u\tgid: %u\n", sd->sd_uid, sd->sd_gid);
141 printf(" size: %u\tflags: %x\n", sd->sd_size, ce->ce_flags);
145 static void show_dir_entry(struct index_state *istate,
146 const char *tag, struct dir_entry *ent)
148 int len = max_prefix_len;
150 if (len > ent->len)
151 die("git ls-files: internal error - directory entry not superset of prefix");
153 /* If ps_matches is non-NULL, figure out which pathspec(s) match. */
154 if (ps_matched)
155 dir_path_match(istate, ent, &pathspec, len, ps_matched);
157 fputs(tag, stdout);
158 write_eolinfo(istate, NULL, ent->name);
159 write_name(ent->name);
162 static void show_other_files(struct index_state *istate,
163 const struct dir_struct *dir)
165 int i;
167 for (i = 0; i < dir->nr; i++) {
168 struct dir_entry *ent = dir->entries[i];
169 if (!index_name_is_other(istate, ent->name, ent->len))
170 continue;
171 show_dir_entry(istate, tag_other, ent);
175 static void show_killed_files(struct index_state *istate,
176 const struct dir_struct *dir)
178 int i;
179 for (i = 0; i < dir->nr; i++) {
180 struct dir_entry *ent = dir->entries[i];
181 char *cp, *sp;
182 int pos, len, killed = 0;
184 for (cp = ent->name; cp - ent->name < ent->len; cp = sp + 1) {
185 sp = strchr(cp, '/');
186 if (!sp) {
187 /* If ent->name is prefix of an entry in the
188 * cache, it will be killed.
190 pos = index_name_pos(istate, ent->name, ent->len);
191 if (0 <= pos)
192 BUG("killed-file %.*s not found",
193 ent->len, ent->name);
194 pos = -pos - 1;
195 while (pos < istate->cache_nr &&
196 ce_stage(istate->cache[pos]))
197 pos++; /* skip unmerged */
198 if (istate->cache_nr <= pos)
199 break;
200 /* pos points at a name immediately after
201 * ent->name in the cache. Does it expect
202 * ent->name to be a directory?
204 len = ce_namelen(istate->cache[pos]);
205 if ((ent->len < len) &&
206 !strncmp(istate->cache[pos]->name,
207 ent->name, ent->len) &&
208 istate->cache[pos]->name[ent->len] == '/')
209 killed = 1;
210 break;
212 if (0 <= index_name_pos(istate, ent->name, sp - ent->name)) {
213 /* If any of the leading directories in
214 * ent->name is registered in the cache,
215 * ent->name will be killed.
217 killed = 1;
218 break;
221 if (killed)
222 show_dir_entry(istate, tag_killed, dir->entries[i]);
226 static void show_files(struct repository *repo, struct dir_struct *dir);
228 static void show_submodule(struct repository *superproject,
229 struct dir_struct *dir, const char *path)
231 struct repository subrepo;
233 if (repo_submodule_init(&subrepo, superproject, path, null_oid()))
234 return;
236 if (repo_read_index(&subrepo) < 0)
237 die("index file corrupt");
239 show_files(&subrepo, dir);
241 repo_clear(&subrepo);
244 struct show_index_data {
245 const char *pathname;
246 struct index_state *istate;
247 const struct cache_entry *ce;
250 static size_t expand_show_index(struct strbuf *sb, const char *start,
251 void *context)
253 struct show_index_data *data = context;
254 const char *end;
255 const char *p;
256 size_t len = strbuf_expand_literal_cb(sb, start, NULL);
257 struct stat st;
259 if (len)
260 return len;
261 if (*start != '(')
262 die(_("bad ls-files format: element '%s' "
263 "does not start with '('"), start);
265 end = strchr(start + 1, ')');
266 if (!end)
267 die(_("bad ls-files format: element '%s' "
268 "does not end in ')'"), start);
270 len = end - start + 1;
271 if (skip_prefix(start, "(objectmode)", &p))
272 strbuf_addf(sb, "%06o", data->ce->ce_mode);
273 else if (skip_prefix(start, "(objectname)", &p))
274 strbuf_add_unique_abbrev(sb, &data->ce->oid, abbrev);
275 else if (skip_prefix(start, "(stage)", &p))
276 strbuf_addf(sb, "%d", ce_stage(data->ce));
277 else if (skip_prefix(start, "(eolinfo:index)", &p))
278 strbuf_addstr(sb, S_ISREG(data->ce->ce_mode) ?
279 get_cached_convert_stats_ascii(data->istate,
280 data->ce->name) : "");
281 else if (skip_prefix(start, "(eolinfo:worktree)", &p))
282 strbuf_addstr(sb, !lstat(data->pathname, &st) &&
283 S_ISREG(st.st_mode) ?
284 get_wt_convert_stats_ascii(data->pathname) : "");
285 else if (skip_prefix(start, "(eolattr)", &p))
286 strbuf_addstr(sb, get_convert_attr_ascii(data->istate,
287 data->pathname));
288 else if (skip_prefix(start, "(path)", &p))
289 write_name_to_buf(sb, data->pathname);
290 else
291 die(_("bad ls-files format: %%%.*s"), (int)len, start);
293 return len;
296 static void show_ce_fmt(struct repository *repo, const struct cache_entry *ce,
297 const char *format, const char *fullname) {
298 struct show_index_data data = {
299 .pathname = fullname,
300 .istate = repo->index,
301 .ce = ce,
303 struct strbuf sb = STRBUF_INIT;
305 strbuf_expand(&sb, format, expand_show_index, &data);
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 int read_one_entry_opt(struct index_state *istate,
520 const struct object_id *oid,
521 struct strbuf *base,
522 const char *pathname,
523 unsigned mode, int opt)
525 int len;
526 struct cache_entry *ce;
528 if (S_ISDIR(mode))
529 return READ_TREE_RECURSIVE;
531 len = strlen(pathname);
532 ce = make_empty_cache_entry(istate, base->len + len);
534 ce->ce_mode = create_ce_mode(mode);
535 ce->ce_flags = create_ce_flags(1);
536 ce->ce_namelen = base->len + len;
537 memcpy(ce->name, base->buf, base->len);
538 memcpy(ce->name + base->len, pathname, len+1);
539 oidcpy(&ce->oid, oid);
540 return add_index_entry(istate, ce, opt);
543 static int read_one_entry(const struct object_id *oid, struct strbuf *base,
544 const char *pathname, unsigned mode,
545 void *context)
547 struct index_state *istate = context;
548 return read_one_entry_opt(istate, oid, base, pathname,
549 mode,
550 ADD_CACHE_OK_TO_ADD|ADD_CACHE_SKIP_DFCHECK);
554 * This is used when the caller knows there is no existing entries at
555 * the stage that will conflict with the entry being added.
557 static int read_one_entry_quick(const struct object_id *oid, struct strbuf *base,
558 const char *pathname, unsigned mode,
559 void *context)
561 struct index_state *istate = context;
562 return read_one_entry_opt(istate, oid, base, pathname,
563 mode, ADD_CACHE_JUST_APPEND);
567 * Read the tree specified with --with-tree option
568 * (typically, HEAD) into stage #1 and then
569 * squash them down to stage #0. This is used for
570 * --error-unmatch to list and check the path patterns
571 * that were given from the command line. We are not
572 * going to write this index out.
574 void overlay_tree_on_index(struct index_state *istate,
575 const char *tree_name, const char *prefix)
577 struct tree *tree;
578 struct object_id oid;
579 struct pathspec pathspec;
580 struct cache_entry *last_stage0 = NULL;
581 int i;
582 read_tree_fn_t fn = NULL;
583 int err;
585 if (repo_get_oid(the_repository, tree_name, &oid))
586 die("tree-ish %s not found.", tree_name);
587 tree = parse_tree_indirect(&oid);
588 if (!tree)
589 die("bad tree-ish %s", tree_name);
591 /* Hoist the unmerged entries up to stage #3 to make room */
592 /* TODO: audit for interaction with sparse-index. */
593 ensure_full_index(istate);
594 for (i = 0; i < istate->cache_nr; i++) {
595 struct cache_entry *ce = istate->cache[i];
596 if (!ce_stage(ce))
597 continue;
598 ce->ce_flags |= CE_STAGEMASK;
601 if (prefix) {
602 static const char *(matchbuf[1]);
603 matchbuf[0] = NULL;
604 parse_pathspec(&pathspec, PATHSPEC_ALL_MAGIC,
605 PATHSPEC_PREFER_CWD, prefix, matchbuf);
606 } else
607 memset(&pathspec, 0, sizeof(pathspec));
610 * See if we have cache entry at the stage. If so,
611 * do it the original slow way, otherwise, append and then
612 * sort at the end.
614 for (i = 0; !fn && i < istate->cache_nr; i++) {
615 const struct cache_entry *ce = istate->cache[i];
616 if (ce_stage(ce) == 1)
617 fn = read_one_entry;
620 if (!fn)
621 fn = read_one_entry_quick;
622 err = read_tree(the_repository, tree, &pathspec, fn, istate);
623 clear_pathspec(&pathspec);
624 if (err)
625 die("unable to read tree entries %s", tree_name);
628 * Sort the cache entry -- we need to nuke the cache tree, though.
630 if (fn == read_one_entry_quick) {
631 cache_tree_free(&istate->cache_tree);
632 QSORT(istate->cache, istate->cache_nr, cmp_cache_name_compare);
635 for (i = 0; i < istate->cache_nr; i++) {
636 struct cache_entry *ce = istate->cache[i];
637 switch (ce_stage(ce)) {
638 case 0:
639 last_stage0 = ce;
640 /* fallthru */
641 default:
642 continue;
643 case 1:
645 * If there is stage #0 entry for this, we do not
646 * need to show it. We use CE_UPDATE bit to mark
647 * such an entry.
649 if (last_stage0 &&
650 !strcmp(last_stage0->name, ce->name))
651 ce->ce_flags |= CE_UPDATE;
656 static const char * const ls_files_usage[] = {
657 N_("git ls-files [<options>] [<file>...]"),
658 NULL
661 static int option_parse_exclude(const struct option *opt,
662 const char *arg, int unset)
664 struct string_list *exclude_list = opt->value;
666 BUG_ON_OPT_NEG(unset);
668 exc_given = 1;
669 string_list_append(exclude_list, arg);
671 return 0;
674 static int option_parse_exclude_from(const struct option *opt,
675 const char *arg, int unset)
677 struct dir_struct *dir = opt->value;
679 BUG_ON_OPT_NEG(unset);
681 exc_given = 1;
682 add_patterns_from_file(dir, arg);
684 return 0;
687 static int option_parse_exclude_standard(const struct option *opt,
688 const char *arg, int unset)
690 struct dir_struct *dir = opt->value;
692 BUG_ON_OPT_NEG(unset);
693 BUG_ON_OPT_ARG(arg);
695 exc_given = 1;
696 setup_standard_excludes(dir);
698 return 0;
701 int cmd_ls_files(int argc, const char **argv, const char *cmd_prefix)
703 int require_work_tree = 0, show_tag = 0, i;
704 char *max_prefix;
705 struct dir_struct dir = DIR_INIT;
706 struct pattern_list *pl;
707 struct string_list exclude_list = STRING_LIST_INIT_NODUP;
708 struct option builtin_ls_files_options[] = {
709 /* Think twice before adding "--nul" synonym to this */
710 OPT_SET_INT('z', NULL, &line_terminator,
711 N_("separate paths with the NUL character"), '\0'),
712 OPT_BOOL('t', NULL, &show_tag,
713 N_("identify the file status with tags")),
714 OPT_BOOL('v', NULL, &show_valid_bit,
715 N_("use lowercase letters for 'assume unchanged' files")),
716 OPT_BOOL('f', NULL, &show_fsmonitor_bit,
717 N_("use lowercase letters for 'fsmonitor clean' files")),
718 OPT_BOOL('c', "cached", &show_cached,
719 N_("show cached files in the output (default)")),
720 OPT_BOOL('d', "deleted", &show_deleted,
721 N_("show deleted files in the output")),
722 OPT_BOOL('m', "modified", &show_modified,
723 N_("show modified files in the output")),
724 OPT_BOOL('o', "others", &show_others,
725 N_("show other files in the output")),
726 OPT_BIT('i', "ignored", &dir.flags,
727 N_("show ignored files in the output"),
728 DIR_SHOW_IGNORED),
729 OPT_BOOL('s', "stage", &show_stage,
730 N_("show staged contents' object name in the output")),
731 OPT_BOOL('k', "killed", &show_killed,
732 N_("show files on the filesystem that need to be removed")),
733 OPT_BIT(0, "directory", &dir.flags,
734 N_("show 'other' directories' names only"),
735 DIR_SHOW_OTHER_DIRECTORIES),
736 OPT_BOOL(0, "eol", &show_eol, N_("show line endings of files")),
737 OPT_NEGBIT(0, "empty-directory", &dir.flags,
738 N_("don't show empty directories"),
739 DIR_HIDE_EMPTY_DIRECTORIES),
740 OPT_BOOL('u', "unmerged", &show_unmerged,
741 N_("show unmerged files in the output")),
742 OPT_BOOL(0, "resolve-undo", &show_resolve_undo,
743 N_("show resolve-undo information")),
744 OPT_CALLBACK_F('x', "exclude", &exclude_list, N_("pattern"),
745 N_("skip files matching pattern"),
746 PARSE_OPT_NONEG, option_parse_exclude),
747 OPT_CALLBACK_F('X', "exclude-from", &dir, N_("file"),
748 N_("read exclude patterns from <file>"),
749 PARSE_OPT_NONEG, option_parse_exclude_from),
750 OPT_STRING(0, "exclude-per-directory", &dir.exclude_per_dir, N_("file"),
751 N_("read additional per-directory exclude patterns in <file>")),
752 OPT_CALLBACK_F(0, "exclude-standard", &dir, NULL,
753 N_("add the standard git exclusions"),
754 PARSE_OPT_NOARG | PARSE_OPT_NONEG,
755 option_parse_exclude_standard),
756 OPT_SET_INT_F(0, "full-name", &prefix_len,
757 N_("make the output relative to the project top directory"),
758 0, PARSE_OPT_NONEG),
759 OPT_BOOL(0, "recurse-submodules", &recurse_submodules,
760 N_("recurse through submodules")),
761 OPT_BOOL(0, "error-unmatch", &error_unmatch,
762 N_("if any <file> is not in the index, treat this as an error")),
763 OPT_STRING(0, "with-tree", &with_tree, N_("tree-ish"),
764 N_("pretend that paths removed since <tree-ish> are still present")),
765 OPT__ABBREV(&abbrev),
766 OPT_BOOL(0, "debug", &debug_mode, N_("show debugging data")),
767 OPT_BOOL(0, "deduplicate", &skipping_duplicates,
768 N_("suppress duplicate entries")),
769 OPT_BOOL(0, "sparse", &show_sparse_dirs,
770 N_("show sparse directories in the presence of a sparse index")),
771 OPT_STRING_F(0, "format", &format, N_("format"),
772 N_("format to use for the output"),
773 PARSE_OPT_NONEG),
774 OPT_END()
776 int ret = 0;
778 if (argc == 2 && !strcmp(argv[1], "-h"))
779 usage_with_options(ls_files_usage, builtin_ls_files_options);
781 prepare_repo_settings(the_repository);
782 the_repository->settings.command_requires_full_index = 0;
784 prefix = cmd_prefix;
785 if (prefix)
786 prefix_len = strlen(prefix);
787 git_config(git_default_config, NULL);
789 if (repo_read_index(the_repository) < 0)
790 die("index file corrupt");
792 argc = parse_options(argc, argv, prefix, builtin_ls_files_options,
793 ls_files_usage, 0);
794 pl = add_pattern_list(&dir, EXC_CMDL, "--exclude option");
795 for (i = 0; i < exclude_list.nr; i++) {
796 add_pattern(exclude_list.items[i].string, "", 0, pl, --exclude_args);
799 if (format && (show_stage || show_others || show_killed ||
800 show_resolve_undo || skipping_duplicates || show_eol || show_tag))
801 usage_msg_opt(_("--format cannot be used with -s, -o, -k, -t, "
802 "--resolve-undo, --deduplicate, --eol"),
803 ls_files_usage, builtin_ls_files_options);
805 if (show_tag || show_valid_bit || show_fsmonitor_bit) {
806 tag_cached = "H ";
807 tag_unmerged = "M ";
808 tag_removed = "R ";
809 tag_modified = "C ";
810 tag_other = "? ";
811 tag_killed = "K ";
812 tag_skip_worktree = "S ";
813 tag_resolve_undo = "U ";
815 if (show_modified || show_others || show_deleted || (dir.flags & DIR_SHOW_IGNORED) || show_killed)
816 require_work_tree = 1;
817 if (show_unmerged)
819 * There's no point in showing unmerged unless
820 * you also show the stage information.
822 show_stage = 1;
823 if (show_tag || show_stage)
824 skipping_duplicates = 0;
825 if (dir.exclude_per_dir)
826 exc_given = 1;
828 if (require_work_tree && !is_inside_work_tree())
829 setup_work_tree();
831 if (recurse_submodules &&
832 (show_deleted || show_others || show_unmerged ||
833 show_killed || show_modified || show_resolve_undo || with_tree))
834 die("ls-files --recurse-submodules unsupported mode");
836 if (recurse_submodules && error_unmatch)
837 die("ls-files --recurse-submodules does not support "
838 "--error-unmatch");
840 parse_pathspec(&pathspec, 0,
841 PATHSPEC_PREFER_CWD,
842 prefix, argv);
845 * Find common prefix for all pathspec's
846 * This is used as a performance optimization which unfortunately cannot
847 * be done when recursing into submodules because when a pathspec is
848 * given which spans repository boundaries you can't simply remove the
849 * submodule entry because the pathspec may match something inside the
850 * submodule.
852 if (recurse_submodules)
853 max_prefix = NULL;
854 else
855 max_prefix = common_prefix(&pathspec);
856 max_prefix_len = get_common_prefix_len(max_prefix);
858 prune_index(the_repository->index, max_prefix, max_prefix_len);
860 /* Treat unmatching pathspec elements as errors */
861 if (pathspec.nr && error_unmatch)
862 ps_matched = xcalloc(pathspec.nr, 1);
864 if ((dir.flags & DIR_SHOW_IGNORED) && !show_others && !show_cached)
865 die("ls-files -i must be used with either -o or -c");
867 if ((dir.flags & DIR_SHOW_IGNORED) && !exc_given)
868 die("ls-files --ignored needs some exclude pattern");
870 /* With no flags, we default to showing the cached files */
871 if (!(show_stage || show_deleted || show_others || show_unmerged ||
872 show_killed || show_modified || show_resolve_undo))
873 show_cached = 1;
875 if (with_tree) {
877 * Basic sanity check; show-stages and show-unmerged
878 * would not make any sense with this option.
880 if (show_stage || show_unmerged)
881 die(_("options '%s' and '%s' cannot be used together"), "ls-files --with-tree", "-s/-u");
882 overlay_tree_on_index(the_repository->index, with_tree, max_prefix);
885 show_files(the_repository, &dir);
887 if (show_resolve_undo)
888 show_ru_info(the_repository->index);
890 if (ps_matched && report_path_error(ps_matched, &pathspec)) {
891 fprintf(stderr, "Did you forget to 'git add'?\n");
892 ret = 1;
895 string_list_clear(&exclude_list, 0);
896 dir_clear(&dir);
897 free(max_prefix);
898 return ret;