Add an optional <mode> argument to commit/status -u|--untracked-files option
[git/mingw/4msysgit.git] / wt-status.h
blob54f756de2be173879c69ec6204535c7efb5c18e1
1 #ifndef STATUS_H
2 #define STATUS_H
4 #include <stdio.h>
6 enum color_wt_status {
7 WT_STATUS_HEADER,
8 WT_STATUS_UPDATED,
9 WT_STATUS_CHANGED,
10 WT_STATUS_UNTRACKED,
11 WT_STATUS_NOBRANCH,
14 enum untracked_status_type {
15 SHOW_NORMAL_UNTRACKED_FILES = 1,
16 SHOW_ALL_UNTRACKED_FILES
18 extern enum untracked_status_type show_untracked_files;
20 struct wt_status {
21 int is_initial;
22 char *branch;
23 const char *reference;
24 int verbose;
25 int amend;
26 int untracked;
27 int nowarn;
28 /* These are computed during processing of the individual sections */
29 int commitable;
30 int workdir_dirty;
31 int workdir_untracked;
32 const char *index_file;
33 FILE *fp;
34 const char *prefix;
37 int git_status_config(const char *var, const char *value, void *cb);
38 extern int wt_status_use_color;
39 extern int wt_status_relative_paths;
40 void wt_status_prepare(struct wt_status *s);
41 void wt_status_print(struct wt_status *s);
43 #endif /* STATUS_H */