5 #include "string-list.h"
11 enum color_wt_status
{
18 WT_STATUS_LOCAL_BRANCH
,
19 WT_STATUS_REMOTE_BRANCH
,
24 enum untracked_status_type
{
25 SHOW_NO_UNTRACKED_FILES
,
26 SHOW_NORMAL_UNTRACKED_FILES
,
27 SHOW_ALL_UNTRACKED_FILES
30 enum show_ignored_type
{
32 SHOW_TRADITIONAL_IGNORED
,
33 SHOW_MATCHING_IGNORED
,
36 /* from where does this commit originate */
38 FROM_COMMIT
, /* normal */
39 FROM_MERGE
, /* commit came from merge */
40 FROM_CHERRY_PICK
/* commit came from cherry-pick */
43 struct wt_status_change_data
{
47 int mode_head
, mode_index
, mode_worktree
;
48 struct object_id oid_head
, oid_index
;
52 unsigned dirty_submodule
: 2;
53 unsigned new_submodule_commits
: 1;
56 enum wt_status_format
{
57 STATUS_FORMAT_NONE
= 0,
60 STATUS_FORMAT_PORCELAIN
,
61 STATUS_FORMAT_PORCELAIN_V2
,
63 STATUS_FORMAT_UNSPECIFIED
69 const char *reference
;
70 struct pathspec pathspec
;
73 enum commit_whence whence
;
77 int display_comment_prefix
;
79 int submodule_summary
;
80 enum show_ignored_type show_ignored_mode
;
81 enum untracked_status_type show_untracked_files
;
82 const char *ignore_submodule_arg
;
83 char color_palette
[WT_STATUS_MAXSLOT
][COLOR_MAXLEN
];
91 enum wt_status_format status_format
;
92 unsigned char sha1_commit
[GIT_MAX_RAWSZ
]; /* when not Initial */
94 /* These are computed during processing of the individual sections */
97 const char *index_file
;
100 struct string_list change
;
101 struct string_list untracked
;
102 struct string_list ignored
;
103 uint32_t untracked_in_ms
;
106 struct wt_status_state
{
107 int merge_in_progress
;
110 int rebase_in_progress
;
111 int rebase_interactive_in_progress
;
112 int cherry_pick_in_progress
;
113 int bisect_in_progress
;
114 int revert_in_progress
;
119 unsigned char detached_sha1
[20];
120 unsigned char revert_head_sha1
[20];
121 unsigned char cherry_pick_head_sha1
[20];
124 size_t wt_status_locate_end(const char *s
, size_t len
);
125 void wt_status_add_cut_line(FILE *fp
);
126 void wt_status_prepare(struct wt_status
*s
);
127 void wt_status_print(struct wt_status
*s
);
128 void wt_status_collect(struct wt_status
*s
);
129 void wt_status_get_state(struct wt_status_state
*state
, int get_detached_from
);
130 int wt_status_check_rebase(const struct worktree
*wt
,
131 struct wt_status_state
*state
);
132 int wt_status_check_bisect(const struct worktree
*wt
,
133 struct wt_status_state
*state
);
135 __attribute__((format (printf
, 3, 4)))
136 void status_printf_ln(struct wt_status
*s
, const char *color
, const char *fmt
, ...);
137 __attribute__((format (printf
, 3, 4)))
138 void status_printf(struct wt_status
*s
, const char *color
, const char *fmt
, ...);
140 /* The following functions expect that the caller took care of reading the index. */
141 int has_unstaged_changes(int ignore_submodules
);
142 int has_uncommitted_changes(int ignore_submodules
);
143 int require_clean_work_tree(const char *action
, const char *hint
,
144 int ignore_submodules
, int gently
);
146 #endif /* STATUS_H */