diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-04-10 00:11:53 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-04-10 00:43:59 -0700 |
commit | 6cb3f6b28294cb2b3766370f42a570fb46ba4e97 (patch) | |
tree | 7864d62a23bbc92fb1727745191c712bd097f1e3 /wt-status.h | |
parent | f5b26b1d14d3362fa41e51f4f78cdf56968733ba (diff) | |
download | git-6cb3f6b28294cb2b3766370f42a570fb46ba4e97.tar.gz |
wt-status: collect ignored files
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'wt-status.h')
-rw-r--r-- | wt-status.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/wt-status.h b/wt-status.h index 2c49f465f8..1093e65ae0 100644 --- a/wt-status.h +++ b/wt-status.h @@ -41,6 +41,7 @@ struct wt_status { int use_color; int relative_paths; int submodule_summary; + int show_ignored_files; enum untracked_status_type show_untracked_files; char color_palette[WT_STATUS_UNMERGED+1][COLOR_MAXLEN]; @@ -52,6 +53,7 @@ struct wt_status { const char *prefix; struct string_list change; struct string_list untracked; + struct string_list ignored; }; void wt_status_prepare(struct wt_status *s); |