* [PATCH] wt-status: remove use_add_msg in wt_status_print
@ 2007-01-05 21:30 Michael Loeffler
0 siblings, 0 replies; only message in thread
From: Michael Loeffler @ 2007-01-05 21:30 UTC (permalink / raw)
To: git
If there is nothing to commit there is no need to say something about
adding files.
If there is something to commit or untracked or modified files, git
status will give this hint. In this case it is also redundant to say it
again.
Signed-off-by: Michael Loeffler <zvpunry@zvpunry.de>
---
wt-status.c | 4 +---
1 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/wt-status.c b/wt-status.c
index db42738..019ec46 100644
--- a/wt-status.c
+++ b/wt-status.c
@@ -292,9 +292,7 @@ void wt_status_print(struct wt_status *s)
if (s->verbose && !s->is_initial)
wt_status_print_verbose(s);
if (!s->commitable)
- printf("%s (%s)\n",
- s->amend ? "# No changes" : "nothing to commit",
- use_add_msg);
+ printf("%s\n", s->amend ? "# No changes" : "nothing to commit");
}
int git_status_config(const char *k, const char *v)
--
1.5.0.rc0.g1fa2
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2007-01-05 21:30 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-01-05 21:30 [PATCH] wt-status: remove use_add_msg in wt_status_print Michael Loeffler
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox