diff options
author | Junio C Hamano <junkio@cox.net> | 2006-12-13 11:08:20 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-12-13 11:08:20 -0800 |
commit | 78ba00407cf69c9f57f17e07d156336ce47c2b03 (patch) | |
tree | 4d98032c7541ac2c620b92c7ed67fca307738de5 /wt-status.c | |
parent | abcb49cb56fc6fa047a8838cd47fbdfa48791798 (diff) | |
parent | 158d0577891441c01457bbcaf45585d3b50f5d75 (diff) | |
download | git-78ba00407cf69c9f57f17e07d156336ce47c2b03.tar.gz |
Merge branch 'np/addcommit'
* np/addcommit:
git-commit: allow --only to lose what was staged earlier.
Documentation/git-commit: rewrite to make it more end-user friendly.
make 'git add' a first class user friendly interface to the index
Diffstat (limited to 'wt-status.c')
-rw-r--r-- | wt-status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wt-status.c b/wt-status.c index df582a03ef..6e9414dbb0 100644 --- a/wt-status.c +++ b/wt-status.c @@ -163,7 +163,7 @@ static void wt_status_print_changed_cb(struct diff_queue_struct *q, int i; if (q->nr) wt_status_print_header("Changed but not updated", - "use git-update-index to mark for commit"); + "use git-add on files to include for commit"); for (i = 0; i < q->nr; i++) wt_status_print_filepair(WT_STATUS_CHANGED, q->queue[i]); if (q->nr) |