diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-08-10 00:36:33 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-08-10 12:56:43 -0700 |
commit | 7637868362ab64fe22521c645006ba70c4ef83a9 (patch) | |
tree | 4e025592573c7b2cbc8b1a8071a86a6cdff93c67 /wt-status.h | |
parent | f766b36783c7ceeb0427f5e1af862b9a67ae1c4c (diff) | |
download | git-7637868362ab64fe22521c645006ba70c4ef83a9.tar.gz |
wt-status: collect untracked files in a separate "collect" phase
In a way similar to updated and locally modified files are collected.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'wt-status.h')
-rw-r--r-- | wt-status.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/wt-status.h b/wt-status.h index 95f5af8902..a0e75177be 100644 --- a/wt-status.h +++ b/wt-status.h @@ -48,10 +48,11 @@ struct wt_status { FILE *fp; const char *prefix; struct string_list change; + struct string_list untracked; }; void wt_status_prepare(struct wt_status *s); void wt_status_print(struct wt_status *s); -void wt_status_collect_changes(struct wt_status *s); +void wt_status_collect(struct wt_status *s); #endif /* STATUS_H */ |