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
13 #include "parse-options.h"
14 #include "resolve-undo.h"
15 #include "string-list.h"
18 static int show_deleted
;
19 static int show_cached
;
20 static int show_others
;
21 static int show_stage
;
22 static int show_unmerged
;
23 static int show_resolve_undo
;
24 static int show_modified
;
25 static int show_killed
;
26 static int show_valid_bit
;
27 static int line_terminator
= '\n';
29 static int prefix_len
;
30 static int prefix_offset
;
31 static const char **pathspec
;
32 static int error_unmatch
;
33 static char *ps_matched
;
34 static const char *with_tree
;
37 static const char *tag_cached
= "";
38 static const char *tag_unmerged
= "";
39 static const char *tag_removed
= "";
40 static const char *tag_other
= "";
41 static const char *tag_killed
= "";
42 static const char *tag_modified
= "";
43 static const char *tag_skip_worktree
= "";
44 static const char *tag_resolve_undo
= "";
46 static void show_dir_entry(const char *tag
, struct dir_entry
*ent
)
49 int offset
= prefix_offset
;
52 die("git ls-files: internal error - directory entry not superset of prefix");
54 if (!match_pathspec(pathspec
, ent
->name
, ent
->len
, len
, ps_matched
))
58 write_name_quoted(ent
->name
+ offset
, stdout
, line_terminator
);
61 static void show_other_files(struct dir_struct
*dir
)
65 for (i
= 0; i
< dir
->nr
; i
++) {
66 struct dir_entry
*ent
= dir
->entries
[i
];
67 if (!cache_name_is_other(ent
->name
, ent
->len
))
69 show_dir_entry(tag_other
, ent
);
73 static void show_killed_files(struct dir_struct
*dir
)
76 for (i
= 0; i
< dir
->nr
; i
++) {
77 struct dir_entry
*ent
= dir
->entries
[i
];
79 int pos
, len
, killed
= 0;
81 for (cp
= ent
->name
; cp
- ent
->name
< ent
->len
; cp
= sp
+ 1) {
84 /* If ent->name is prefix of an entry in the
85 * cache, it will be killed.
87 pos
= cache_name_pos(ent
->name
, ent
->len
);
89 die("bug in show-killed-files");
91 while (pos
< active_nr
&&
92 ce_stage(active_cache
[pos
]))
93 pos
++; /* skip unmerged */
96 /* pos points at a name immediately after
97 * ent->name in the cache. Does it expect
98 * ent->name to be a directory?
100 len
= ce_namelen(active_cache
[pos
]);
101 if ((ent
->len
< len
) &&
102 !strncmp(active_cache
[pos
]->name
,
103 ent
->name
, ent
->len
) &&
104 active_cache
[pos
]->name
[ent
->len
] == '/')
108 if (0 <= cache_name_pos(ent
->name
, sp
- ent
->name
)) {
109 /* If any of the leading directories in
110 * ent->name is registered in the cache,
111 * ent->name will be killed.
118 show_dir_entry(tag_killed
, dir
->entries
[i
]);
122 static void show_ce_entry(const char *tag
, struct cache_entry
*ce
)
124 int len
= prefix_len
;
125 int offset
= prefix_offset
;
127 if (len
>= ce_namelen(ce
))
128 die("git ls-files: internal error - cache entry not superset of prefix");
130 if (!match_pathspec(pathspec
, ce
->name
, ce_namelen(ce
), len
, ps_matched
))
133 if (tag
&& *tag
&& show_valid_bit
&&
134 (ce
->ce_flags
& CE_VALID
)) {
135 static char alttag
[4];
136 memcpy(alttag
, tag
, 3);
138 alttag
[0] = tolower(tag
[0]);
139 else if (tag
[0] == '?')
153 printf("%s%06o %s %d\t",
156 find_unique_abbrev(ce
->sha1
,abbrev
),
159 write_name_quoted(ce
->name
+ offset
, stdout
, line_terminator
);
162 static int show_one_ru(struct string_list_item
*item
, void *cbdata
)
164 int offset
= prefix_offset
;
165 const char *path
= item
->string
;
166 struct resolve_undo_info
*ui
= item
->util
;
170 if (len
< prefix_len
)
171 return 0; /* outside of the prefix */
172 if (!match_pathspec(pathspec
, path
, len
, prefix_len
, ps_matched
))
173 return 0; /* uninterested */
174 for (i
= 0; i
< 3; i
++) {
177 printf("%s%06o %s %d\t", tag_resolve_undo
, ui
->mode
[i
],
178 find_unique_abbrev(ui
->sha1
[i
], abbrev
),
180 write_name_quoted(path
+ offset
, stdout
, line_terminator
);
185 static void show_ru_info(const char *prefix
)
187 if (!the_index
.resolve_undo
)
189 for_each_string_list(show_one_ru
, the_index
.resolve_undo
, NULL
);
192 static void show_files(struct dir_struct
*dir
, const char *prefix
)
196 /* For cached/deleted files we don't need to even do the readdir */
197 if (show_others
|| show_killed
) {
198 fill_directory(dir
, pathspec
);
200 show_other_files(dir
);
202 show_killed_files(dir
);
204 if (show_cached
| show_stage
) {
205 for (i
= 0; i
< active_nr
; i
++) {
206 struct cache_entry
*ce
= active_cache
[i
];
207 int dtype
= ce_to_dtype(ce
);
208 if (dir
->flags
& DIR_SHOW_IGNORED
&&
209 !excluded(dir
, ce
->name
, &dtype
))
211 if (show_unmerged
&& !ce_stage(ce
))
213 if (ce
->ce_flags
& CE_UPDATE
)
215 show_ce_entry(ce_stage(ce
) ? tag_unmerged
:
216 (ce_skip_worktree(ce
) ? tag_skip_worktree
: tag_cached
), ce
);
219 if (show_deleted
| show_modified
) {
220 for (i
= 0; i
< active_nr
; i
++) {
221 struct cache_entry
*ce
= active_cache
[i
];
224 int dtype
= ce_to_dtype(ce
);
225 if (dir
->flags
& DIR_SHOW_IGNORED
&&
226 !excluded(dir
, ce
->name
, &dtype
))
228 if (ce
->ce_flags
& CE_UPDATE
)
230 if (ce_skip_worktree(ce
))
232 err
= lstat(ce
->name
, &st
);
233 if (show_deleted
&& err
)
234 show_ce_entry(tag_removed
, ce
);
235 if (show_modified
&& ce_modified(ce
, &st
, 0))
236 show_ce_entry(tag_modified
, ce
);
242 * Prune the index to only contain stuff starting with "prefix"
244 static void prune_cache(const char *prefix
)
246 int pos
= cache_name_pos(prefix
, prefix_len
);
247 unsigned int first
, last
;
251 memmove(active_cache
, active_cache
+ pos
,
252 (active_nr
- pos
) * sizeof(struct cache_entry
*));
256 while (last
> first
) {
257 int next
= (last
+ first
) >> 1;
258 struct cache_entry
*ce
= active_cache
[next
];
259 if (!strncmp(ce
->name
, prefix
, prefix_len
)) {
268 static const char *verify_pathspec(const char *prefix
)
270 const char **p
, *n
, *prev
;
275 for (p
= pathspec
; (n
= *p
) != NULL
; p
++) {
277 for (i
= 0; i
< max
; i
++) {
279 if (prev
&& prev
[i
] != c
)
281 if (!c
|| c
== '*' || c
== '?')
294 if (prefix_offset
> max
|| memcmp(prev
, prefix
, prefix_offset
))
295 die("git ls-files: cannot generate relative filenames containing '..'");
298 return max
? xmemdupz(prev
, max
) : NULL
;
301 static void strip_trailing_slash_from_submodules(void)
305 for (p
= pathspec
; *p
!= NULL
; p
++) {
306 int len
= strlen(*p
), pos
;
308 if (len
< 1 || (*p
)[len
- 1] != '/')
310 pos
= cache_name_pos(*p
, len
- 1);
311 if (pos
>= 0 && S_ISGITLINK(active_cache
[pos
]->ce_mode
))
312 *p
= xstrndup(*p
, len
- 1);
317 * Read the tree specified with --with-tree option
318 * (typically, HEAD) into stage #1 and then
319 * squash them down to stage #0. This is used for
320 * --error-unmatch to list and check the path patterns
321 * that were given from the command line. We are not
322 * going to write this index out.
324 void overlay_tree_on_cache(const char *tree_name
, const char *prefix
)
327 unsigned char sha1
[20];
329 struct cache_entry
*last_stage0
= NULL
;
332 if (get_sha1(tree_name
, sha1
))
333 die("tree-ish %s not found.", tree_name
);
334 tree
= parse_tree_indirect(sha1
);
336 die("bad tree-ish %s", tree_name
);
338 /* Hoist the unmerged entries up to stage #3 to make room */
339 for (i
= 0; i
< active_nr
; i
++) {
340 struct cache_entry
*ce
= active_cache
[i
];
343 ce
->ce_flags
|= CE_STAGEMASK
;
347 static const char *(matchbuf
[2]);
348 matchbuf
[0] = prefix
;
353 if (read_tree(tree
, 1, match
))
354 die("unable to read tree entries %s", tree_name
);
356 for (i
= 0; i
< active_nr
; i
++) {
357 struct cache_entry
*ce
= active_cache
[i
];
358 switch (ce_stage(ce
)) {
366 * If there is stage #0 entry for this, we do not
367 * need to show it. We use CE_UPDATE bit to mark
371 !strcmp(last_stage0
->name
, ce
->name
))
372 ce
->ce_flags
|= CE_UPDATE
;
377 int report_path_error(const char *ps_matched
, const char **pathspec
, int prefix_offset
)
380 * Make sure all pathspec matched; otherwise it is an error.
383 for (num
= 0; pathspec
[num
]; num
++) {
384 int other
, found_dup
;
389 * The caller might have fed identical pathspec
390 * twice. Do not barf on such a mistake.
392 for (found_dup
= other
= 0;
393 !found_dup
&& pathspec
[other
];
395 if (other
== num
|| !ps_matched
[other
])
397 if (!strcmp(pathspec
[other
], pathspec
[num
]))
399 * Ok, we have a match already.
406 error("pathspec '%s' did not match any file(s) known to git.",
407 pathspec
[num
] + prefix_offset
);
413 static const char * const ls_files_usage
[] = {
414 "git ls-files [options] [<file>]*",
418 static int option_parse_z(const struct option
*opt
,
419 const char *arg
, int unset
)
421 line_terminator
= unset
? '\n' : '\0';
426 static int option_parse_exclude(const struct option
*opt
,
427 const char *arg
, int unset
)
429 struct exclude_list
*list
= opt
->value
;
432 add_exclude(arg
, "", 0, list
);
437 static int option_parse_exclude_from(const struct option
*opt
,
438 const char *arg
, int unset
)
440 struct dir_struct
*dir
= opt
->value
;
443 add_excludes_from_file(dir
, arg
);
448 static int option_parse_exclude_standard(const struct option
*opt
,
449 const char *arg
, int unset
)
451 struct dir_struct
*dir
= opt
->value
;
454 setup_standard_excludes(dir
);
459 int cmd_ls_files(int argc
, const char **argv
, const char *prefix
)
461 int require_work_tree
= 0, show_tag
= 0;
462 struct dir_struct dir
;
463 struct option builtin_ls_files_options
[] = {
464 { OPTION_CALLBACK
, 'z', NULL
, NULL
, NULL
,
465 "paths are separated with NUL character",
466 PARSE_OPT_NOARG
, option_parse_z
},
467 OPT_BOOLEAN('t', NULL
, &show_tag
,
468 "identify the file status with tags"),
469 OPT_BOOLEAN('v', NULL
, &show_valid_bit
,
470 "use lowercase letters for 'assume unchanged' files"),
471 OPT_BOOLEAN('c', "cached", &show_cached
,
472 "show cached files in the output (default)"),
473 OPT_BOOLEAN('d', "deleted", &show_deleted
,
474 "show deleted files in the output"),
475 OPT_BOOLEAN('m', "modified", &show_modified
,
476 "show modified files in the output"),
477 OPT_BOOLEAN('o', "others", &show_others
,
478 "show other files in the output"),
479 OPT_BIT('i', "ignored", &dir
.flags
,
480 "show ignored files in the output",
482 OPT_BOOLEAN('s', "stage", &show_stage
,
483 "show staged contents' object name in the output"),
484 OPT_BOOLEAN('k', "killed", &show_killed
,
485 "show files on the filesystem that need to be removed"),
486 OPT_BIT(0, "directory", &dir
.flags
,
487 "show 'other' directories' name only",
488 DIR_SHOW_OTHER_DIRECTORIES
),
489 OPT_NEGBIT(0, "empty-directory", &dir
.flags
,
490 "don't show empty directories",
491 DIR_HIDE_EMPTY_DIRECTORIES
),
492 OPT_BOOLEAN('u', "unmerged", &show_unmerged
,
493 "show unmerged files in the output"),
494 OPT_BOOLEAN(0, "resolve-undo", &show_resolve_undo
,
495 "show resolve-undo information"),
496 { OPTION_CALLBACK
, 'x', "exclude", &dir
.exclude_list
[EXC_CMDL
], "pattern",
497 "skip files matching pattern",
498 0, option_parse_exclude
},
499 { OPTION_CALLBACK
, 'X', "exclude-from", &dir
, "file",
500 "exclude patterns are read from <file>",
501 0, option_parse_exclude_from
},
502 OPT_STRING(0, "exclude-per-directory", &dir
.exclude_per_dir
, "file",
503 "read additional per-directory exclude patterns in <file>"),
504 { OPTION_CALLBACK
, 0, "exclude-standard", &dir
, NULL
,
505 "add the standard git exclusions",
506 PARSE_OPT_NOARG
, option_parse_exclude_standard
},
507 { OPTION_SET_INT
, 0, "full-name", &prefix_offset
, NULL
,
508 "make the output relative to the project top directory",
509 PARSE_OPT_NOARG
| PARSE_OPT_NONEG
, NULL
},
510 OPT_BOOLEAN(0, "error-unmatch", &error_unmatch
,
511 "if any <file> is not in the index, treat this as an error"),
512 OPT_STRING(0, "with-tree", &with_tree
, "tree-ish",
513 "pretend that paths removed since <tree-ish> are still present"),
514 OPT__ABBREV(&abbrev
),
518 memset(&dir
, 0, sizeof(dir
));
520 prefix_offset
= strlen(prefix
);
521 git_config(git_default_config
, NULL
);
523 if (read_cache() < 0)
524 die("index file corrupt");
526 argc
= parse_options(argc
, argv
, prefix
, builtin_ls_files_options
,
528 if (show_tag
|| show_valid_bit
) {
535 tag_skip_worktree
= "S ";
536 tag_resolve_undo
= "U ";
538 if (show_modified
|| show_others
|| show_deleted
|| (dir
.flags
& DIR_SHOW_IGNORED
) || show_killed
)
539 require_work_tree
= 1;
542 * There's no point in showing unmerged unless
543 * you also show the stage information.
546 if (dir
.exclude_per_dir
)
549 if (require_work_tree
&& !is_inside_work_tree())
552 pathspec
= get_pathspec(prefix
, argv
);
554 /* be nice with submodule paths ending in a slash */
556 strip_trailing_slash_from_submodules();
558 /* Verify that the pathspec matches the prefix */
560 prefix
= verify_pathspec(prefix
);
562 /* Treat unmatching pathspec elements as errors */
563 if (pathspec
&& error_unmatch
) {
565 for (num
= 0; pathspec
[num
]; num
++)
567 ps_matched
= xcalloc(1, num
);
570 if ((dir
.flags
& DIR_SHOW_IGNORED
) && !exc_given
)
571 die("ls-files --ignored needs some exclude pattern");
573 /* With no flags, we default to showing the cached files */
574 if (!(show_stage
| show_deleted
| show_others
| show_unmerged
|
575 show_killed
| show_modified
| show_resolve_undo
))
582 * Basic sanity check; show-stages and show-unmerged
583 * would not make any sense with this option.
585 if (show_stage
|| show_unmerged
)
586 die("ls-files --with-tree is incompatible with -s or -u");
587 overlay_tree_on_cache(with_tree
, prefix
);
589 show_files(&dir
, prefix
);
590 if (show_resolve_undo
)
591 show_ru_info(prefix
);
595 bad
= report_path_error(ps_matched
, pathspec
, prefix_offset
);
597 fprintf(stderr
, "Did you forget to 'git add'?\n");