From 2556b9962e7c0353d562b7bf70eed11d8f29d0b0 Mon Sep 17 00:00:00 2001 From: Matthieu Moy Date: Fri, 6 Sep 2013 19:43:07 +0200 Subject: status: disable display of '#' comment prefix by default Historically, "git status" needed to prefix each output line with '#' so that the output could be added as comment to the commit message. This prefix comment has no real purpose when "git status" is ran from the command-line, and this may distract users from the real content. Disable this prefix comment by default, and make it re-activable for users needing backward compatibility with status.displayCommentPrefix. Obviously, "git commit" ignores status.displayCommentPrefix and keeps the comment unconditionnaly when writing to COMMIT_EDITMSG (but not when writing to stdout for an error message or with --dry-run). Signed-off-by: Matthieu Moy Signed-off-by: Junio C Hamano --- wt-status.h | 1 + 1 file changed, 1 insertion(+) (limited to 'wt-status.h') diff --git a/wt-status.h b/wt-status.h index fb7152e187..fac16cadca 100644 --- a/wt-status.h +++ b/wt-status.h @@ -50,6 +50,7 @@ struct wt_status { enum commit_whence whence; int nowarn; int use_color; + int display_comment_prefix; int relative_paths; int submodule_summary; int show_ignored_files; -- cgit v1.2.3