Also honor -v to show the "diff --cached" output. Signed-off-by: Junio C Hamano <gitster@xxxxxxxxx> --- * Fix-up to 3/9; will be squashed in the final round to remove the trace of ill conceived wt_status_print_body() refactoring. builtin-commit.c | 8 +++++++- wt-status.c | 27 +++++++++------------------ wt-status.h | 1 - 3 files changed, 16 insertions(+), 20 deletions(-) diff --git a/builtin-commit.c b/builtin-commit.c index 7120876..8db0365 100644 --- a/builtin-commit.c +++ b/builtin-commit.c @@ -352,6 +352,8 @@ static char *prepare_index(int argc, const char **argv, const char *prefix, int static int run_status(FILE *fp, const char *index_file, const char *prefix, int nowarn, struct wt_status *s) { + unsigned char sha1[20]; + if (s->relative_paths) s->prefix = prefix; @@ -363,7 +365,9 @@ static int run_status(FILE *fp, const char *index_file, const char *prefix, int s->index_file = index_file; s->fp = fp; s->nowarn = nowarn; + s->is_initial = get_sha1(s->reference, sha1) ? 1 : 0; + wt_status_collect(s); wt_status_print(s); return s->commitable; @@ -903,6 +907,7 @@ int cmd_stat(int argc, const char **argv, const char *prefix) struct wt_status s; unsigned char sha1[20]; static struct option builtin_stat_options[] = { + OPT__VERBOSE(&verbose), { OPTION_STRING, 'u', "untracked-files", &untracked_files_arg, "mode", "show untracked files, optional modes: all, normal, no. (Default: all)", @@ -922,13 +927,14 @@ int cmd_stat(int argc, const char **argv, const char *prefix) s.is_initial = get_sha1(s.reference, sha1) ? 1 : 0; wt_status_collect(&s); + s.verbose = verbose; if (s.relative_paths) s.prefix = prefix; if (s.use_color == -1) s.use_color = git_use_color_default; if (diff_use_color_default == -1) diff_use_color_default = git_use_color_default; - wt_status_print_body(&s); + wt_status_print(&s); return 0; } diff --git a/wt-status.c b/wt-status.c index c887a90..c55be53 100644 --- a/wt-status.c +++ b/wt-status.c @@ -531,25 +531,10 @@ static void wt_status_print_tracking(struct wt_status *s) color_fprintf_ln(s->fp, color(WT_STATUS_HEADER, s), "#"); } -void wt_status_print_body(struct wt_status *s) -{ - wt_status_print_unmerged(s); - wt_status_print_updated(s); - wt_status_print_changed(s); - if (s->submodule_summary) - wt_status_print_submodule_summary(s); - if (s->show_untracked_files) - wt_status_print_untracked(s); - else if (s->commitable) - fprintf(s->fp, "# Untracked files not listed (use -u option to show untracked files)\n"); -} - void wt_status_print(struct wt_status *s) { - unsigned char sha1[20]; const char *branch_color = color(WT_STATUS_HEADER, s); - s->is_initial = get_sha1(s->reference, sha1) ? 1 : 0; if (s->branch) { const char *on_what = "On branch "; const char *branch_name = s->branch; @@ -566,15 +551,21 @@ void wt_status_print(struct wt_status *s) wt_status_print_tracking(s); } - wt_status_collect(s); - if (s->is_initial) { color_fprintf_ln(s->fp, color(WT_STATUS_HEADER, s), "#"); color_fprintf_ln(s->fp, color(WT_STATUS_HEADER, s), "# Initial commit"); color_fprintf_ln(s->fp, color(WT_STATUS_HEADER, s), "#"); } - wt_status_print_body(s); + wt_status_print_unmerged(s); + wt_status_print_updated(s); + wt_status_print_changed(s); + if (s->submodule_summary) + wt_status_print_submodule_summary(s); + if (s->show_untracked_files) + wt_status_print_untracked(s); + else if (s->commitable) + fprintf(s->fp, "# Untracked files not listed (use -u option to show untracked files)\n"); if (s->verbose) wt_status_print_verbose(s); diff --git a/wt-status.h b/wt-status.h index ab52ce1..a0e7517 100644 --- a/wt-status.h +++ b/wt-status.h @@ -54,6 +54,5 @@ struct wt_status { void wt_status_prepare(struct wt_status *s); void wt_status_print(struct wt_status *s); void wt_status_collect(struct wt_status *s); -void wt_status_print_body(struct wt_status *s); #endif /* STATUS_H */ -- 1.6.4.224.g3be84 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html