* [PATCH, resend] git-commit: colored status when color.ui is set
@ 2009-01-08 18:53 Markus Heidelberg
2009-01-09 9:00 ` Junio C Hamano
0 siblings, 1 reply; 4+ messages in thread
From: Markus Heidelberg @ 2009-01-08 18:53 UTC (permalink / raw)
To: gitster; +Cc: git
When using "git commit" and there was nothing to commit (the editor
wasn't launched), the status output wasn't colored, even though color.ui
was set. Only when setting color.status it worked.
Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
---
builtin-commit.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/builtin-commit.c b/builtin-commit.c
index e88b78f..2d90f74 100644
--- a/builtin-commit.c
+++ b/builtin-commit.c
@@ -945,6 +945,9 @@ int cmd_commit(int argc, const char **argv, const char *prefix)
git_config(git_commit_config, NULL);
+ if (wt_status_use_color == -1)
+ wt_status_use_color = git_use_color_default;
+
argc = parse_and_validate_options(argc, argv, builtin_commit_usage, prefix);
index_file = prepare_index(argc, argv, prefix);
--
1.6.1.35.g0c23
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH, resend] git-commit: colored status when color.ui is set
2009-01-08 18:53 [PATCH, resend] git-commit: colored status when color.ui is set Markus Heidelberg
@ 2009-01-09 9:00 ` Junio C Hamano
2009-01-09 10:56 ` Johannes Schindelin
0 siblings, 1 reply; 4+ messages in thread
From: Junio C Hamano @ 2009-01-09 9:00 UTC (permalink / raw)
To: markus.heidelberg; +Cc: git
Markus Heidelberg <markus.heidelberg@web.de> writes:
> When using "git commit" and there was nothing to commit (the editor
> wasn't launched), the status output wasn't colored, even though color.ui
> was set. Only when setting color.status it worked.
>
> Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
> ---
> builtin-commit.c | 3 +++
> 1 files changed, 3 insertions(+), 0 deletions(-)
>
> diff --git a/builtin-commit.c b/builtin-commit.c
> index e88b78f..2d90f74 100644
> --- a/builtin-commit.c
> +++ b/builtin-commit.c
> @@ -945,6 +945,9 @@ int cmd_commit(int argc, const char **argv, const char *prefix)
>
> git_config(git_commit_config, NULL);
>
> + if (wt_status_use_color == -1)
> + wt_status_use_color = git_use_color_default;
> +
> argc = parse_and_validate_options(argc, argv, builtin_commit_usage, prefix);
>
> index_file = prepare_index(argc, argv, prefix);
My first reaction was:
When the editor does get launched, what would the new code do with
your patch? Would we see bunch of escape codes in the editor now?
But we do disable color explicitly when we generate contents to feed the
editor in that case since bc5d248 (builtin-commit: do not color status
output shown in the message template, 2007-11-18), so that fear is
unfounded.
Thanks for a reminder, will queue.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH, resend] git-commit: colored status when color.ui is set
2009-01-09 9:00 ` Junio C Hamano
@ 2009-01-09 10:56 ` Johannes Schindelin
2009-01-09 16:24 ` Markus Heidelberg
0 siblings, 1 reply; 4+ messages in thread
From: Johannes Schindelin @ 2009-01-09 10:56 UTC (permalink / raw)
To: Junio C Hamano; +Cc: markus.heidelberg, git
Hi,
On Fri, 9 Jan 2009, Junio C Hamano wrote:
> Markus Heidelberg <markus.heidelberg@web.de> writes:
>
> > When using "git commit" and there was nothing to commit (the editor
> > wasn't launched), the status output wasn't colored, even though color.ui
> > was set. Only when setting color.status it worked.
> >
> > Signed-off-by: Markus Heidelberg <markus.heidelberg@web.de>
> > ---
> > builtin-commit.c | 3 +++
> > 1 files changed, 3 insertions(+), 0 deletions(-)
> >
> > diff --git a/builtin-commit.c b/builtin-commit.c
> > index e88b78f..2d90f74 100644
> > --- a/builtin-commit.c
> > +++ b/builtin-commit.c
> > @@ -945,6 +945,9 @@ int cmd_commit(int argc, const char **argv, const char *prefix)
> >
> > git_config(git_commit_config, NULL);
> >
> > + if (wt_status_use_color == -1)
> > + wt_status_use_color = git_use_color_default;
> > +
> > argc = parse_and_validate_options(argc, argv, builtin_commit_usage, prefix);
> >
> > index_file = prepare_index(argc, argv, prefix);
>
> My first reaction was:
>
> When the editor does get launched, what would the new code do with
> your patch? Would we see bunch of escape codes in the editor now?
>
> But we do disable color explicitly when we generate contents to feed the
> editor in that case since bc5d248 (builtin-commit: do not color status
> output shown in the message template, 2007-11-18), so that fear is
> unfounded.
I had the same reaction, so I would like to see this reasoning in the
commit message.
Ciao,
Dscho
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH, resend] git-commit: colored status when color.ui is set
2009-01-09 10:56 ` Johannes Schindelin
@ 2009-01-09 16:24 ` Markus Heidelberg
0 siblings, 0 replies; 4+ messages in thread
From: Markus Heidelberg @ 2009-01-09 16:24 UTC (permalink / raw)
To: Johannes Schindelin; +Cc: Junio C Hamano, git
Johannes Schindelin, 09.01.2009:
> Hi,
>
> On Fri, 9 Jan 2009, Junio C Hamano wrote:
>
> > Markus Heidelberg <markus.heidelberg@web.de> writes:
> > > When using "git commit" and there was nothing to commit (the editor
> > > wasn't launched), the status output wasn't colored, even though color.ui
> > > was set. Only when setting color.status it worked.
> >
> > My first reaction was:
> >
> > When the editor does get launched, what would the new code do with
> > your patch? Would we see bunch of escape codes in the editor now?
Of course I tested this case :)
> > But we do disable color explicitly when we generate contents to feed the
> > editor in that case since bc5d248 (builtin-commit: do not color status
> > output shown in the message template, 2007-11-18), so that fear is
> > unfounded.
>
> I had the same reaction, so I would like to see this reasoning in the
> commit message.
wt_status_use_color could have already been set during git_config()
without this patch, just not with color.ui, but color.status, so this is
not really a new case. But I can understand the reaction and don't have
ocjections against this explanation in the commit message.
Markus
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-01-09 16:26 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-08 18:53 [PATCH, resend] git-commit: colored status when color.ui is set Markus Heidelberg
2009-01-09 9:00 ` Junio C Hamano
2009-01-09 10:56 ` Johannes Schindelin
2009-01-09 16:24 ` Markus Heidelberg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).