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
9 #include "repository.h"
15 #include "object-name.h"
17 #include "parse-options.h"
18 #include "resolve-undo.h"
19 #include "string-list.h"
22 #include "read-cache.h"
24 #include "sparse-index.h"
25 #include "submodule.h"
26 #include "object-store.h"
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
;
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
;
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
)
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
,
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
);
101 quote_c_style(rel
, sb
, NULL
, 0);
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] == '?') {
133 static void print_debug(const struct cache_entry
*ce
)
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
;
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. */
156 dir_path_match(istate
, ent
, &pathspec
, len
, ps_matched
);
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
)
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
))
172 show_dir_entry(istate
, tag_other
, ent
);
176 static void show_killed_files(struct index_state
*istate
,
177 const struct dir_struct
*dir
)
180 for (i
= 0; i
< dir
->nr
; i
++) {
181 struct dir_entry
*ent
= dir
->entries
[i
];
183 int pos
, len
, killed
= 0;
185 for (cp
= ent
->name
; cp
- ent
->name
< ent
->len
; cp
= sp
+ 1) {
186 sp
= strchr(cp
, '/');
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
);
193 BUG("killed-file %.*s not found",
194 ent
->len
, ent
->name
);
196 while (pos
< istate
->cache_nr
&&
197 ce_stage(istate
->cache
[pos
]))
198 pos
++; /* skip unmerged */
199 if (istate
->cache_nr
<= pos
)
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
] == '/')
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.
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()))
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
) {
250 if (oid_object_info(the_repository
, oid
, &size
) < 0)
251 die(_("could not get object info about '%s'"),
254 strbuf_addf(line
, "%7"PRIuMAX
, (uintmax_t)size
);
256 strbuf_addf(line
, "%"PRIuMAX
, (uintmax_t)size
);
258 strbuf_addf(line
, "%7s", "-");
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
)) {
272 if (skip_prefix(format
, "%", &format
))
273 strbuf_addch(&sb
, '%');
274 else if ((len
= strbuf_expand_literal(&sb
, format
)))
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
,
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
,
301 else if (skip_prefix(format
, "(path)", &format
))
302 write_name_to_buf(&sb
, fullname
);
304 strbuf_expand_bad_format(format
, "ls-files");
306 strbuf_addch(&sb
, line_terminator
);
307 fwrite(sb
.buf
, sb
.len
, 1, stdout
);
311 static void show_ce(struct repository
*repo
, struct dir_struct
*dir
,
312 const struct cache_entry
*ce
, const char *fullname
,
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
))) {
326 show_ce_fmt(repo
, ce
, format
, fullname
);
331 tag
= get_tag(ce
, tag
);
336 printf("%s%06o %s %d\t",
339 repo_find_unique_abbrev(repo
, &ce
->oid
, abbrev
),
342 write_eolinfo(repo
->index
, ce
, fullname
);
343 write_name(fullname
);
348 static void show_ru_info(struct index_state
*istate
)
350 struct string_list_item
*item
;
352 if (!istate
->resolve_undo
)
355 for_each_string_list_item(item
, istate
->resolve_undo
) {
356 const char *path
= item
->string
;
357 struct resolve_undo_info
*ui
= item
->util
;
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
++) {
369 printf("%s%06o %s %d\t", tag_resolve_undo
, ui
->mode
[i
],
370 repo_find_unique_abbrev(the_repository
, &ui
->oid
[i
], abbrev
),
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
)
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
)
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
) {
401 dir
->flags
|= DIR_COLLECT_KILLED_ONLY
;
402 fill_directory(dir
, repo
->index
, &pathspec
);
404 show_other_files(repo
->index
, dir
);
406 show_killed_files(repo
->index
, dir
);
409 if (!(show_cached
|| show_stage
|| show_deleted
|| show_modified
))
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
];
420 construct_fullname(&fullname
, repo
, ce
);
422 if ((dir
->flags
& DIR_SHOW_IGNORED
) &&
423 !ce_excluded(dir
, repo
->index
, fullname
.buf
, ce
))
425 if (ce
->ce_flags
& CE_UPDATE
)
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
:
433 if (skipping_duplicates
)
434 goto skip_to_next_name
;
437 if (!(show_deleted
|| show_modified
))
439 if (ce_skip_worktree(ce
))
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
;
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
;
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
))
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
)
478 unsigned int first
, last
;
480 if (!prefix
|| !istate
->cache_nr
)
482 pos
= index_name_pos(istate
, prefix
, prefixlen
);
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
)) {
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
;
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] == '/')
516 return common_prefix_len
;
519 static const char * const ls_files_usage
[] = {
520 N_("git ls-files [<options>] [<file>...]"),
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
);
532 string_list_append(exclude_list
, arg
);
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
);
545 add_patterns_from_file(dir
, arg
);
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
);
559 setup_standard_excludes(dir
);
564 int cmd_ls_files(int argc
, const char **argv
, const char *cmd_prefix
)
566 int require_work_tree
= 0, show_tag
= 0, i
;
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"),
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"),
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"),
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;
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
,
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
) {
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;
682 * There's no point in showing unmerged unless
683 * you also show the stage information.
686 if (show_tag
|| show_stage
)
687 skipping_duplicates
= 0;
688 if (dir
.exclude_per_dir
)
691 if (require_work_tree
&& !is_inside_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 "
703 parse_pathspec(&pathspec
, 0,
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
715 if (recurse_submodules
)
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
))
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");
758 string_list_clear(&exclude_list
, 0);