Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-08-10 11:36:33 +0400
committerJunio C Hamano <gitster@pobox.com>2009-08-10 23:56:43 +0400
commit7637868362ab64fe22521c645006ba70c4ef83a9 (patch)
tree4e025592573c7b2cbc8b1a8071a86a6cdff93c67 /wt-status.h
parentf766b36783c7ceeb0427f5e1af862b9a67ae1c4c (diff)
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 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 */