summaryrefslogtreecommitdiff
path: root/wt-status.c
diff options
context:
space:
mode:
authorMatthieu Moy <Matthieu.Moy@imag.fr>2010-11-02 15:31:19 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-11-03 16:18:58 (GMT)
commit8009d83c7e7af0a298ef858609a8201d01086396 (patch)
treed0bf98ee009dc1c5582f6579528025018d43cba0 /wt-status.c
parent7ebee44167fc25b975f5543472c851ab1840af1b (diff)
downloadgit-8009d83c7e7af0a298ef858609a8201d01086396.zip
git-8009d83c7e7af0a298ef858609a8201d01086396.tar.gz
git-8009d83c7e7af0a298ef858609a8201d01086396.tar.bz2
Better "Changed but not updated" message in git-status
Older Gits talked about "updating" a file to add its content to the index, but this terminology is confusing for new users. "to stage" is far more intuitive and already used in e.g. the "git stage" command name. Signed-off-by: Matthieu Moy <Matthieu.Moy@imag.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'wt-status.c')
-rw-r--r--wt-status.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/wt-status.c b/wt-status.c
index fc2438f..d9f3d9f 100644
--- a/wt-status.c
+++ b/wt-status.c
@@ -88,7 +88,7 @@ static void wt_status_print_dirty_header(struct wt_status *s,
{
const char *c = color(WT_STATUS_HEADER, s);
- color_fprintf_ln(s->fp, c, "# Changed but not updated:");
+ color_fprintf_ln(s->fp, c, "# Changes not staged for commit:");
if (!advice_status_hints)
return;
if (!has_deleted)