summaryrefslogtreecommitdiff
path: root/wt-status.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-08-10 07:36:33 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-08-10 19:56:43 (GMT)
commit7637868362ab64fe22521c645006ba70c4ef83a9 (patch)
tree4e025592573c7b2cbc8b1a8071a86a6cdff93c67 /wt-status.h
parentf766b36783c7ceeb0427f5e1af862b9a67ae1c4c (diff)
downloadgit-7637868362ab64fe22521c645006ba70c4ef83a9.zip
git-7637868362ab64fe22521c645006ba70c4ef83a9.tar.gz
git-7637868362ab64fe22521c645006ba70c4ef83a9.tar.bz2
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.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/wt-status.h b/wt-status.h
index 95f5af8..a0e7517 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 */