Code

git-status: wording update to deal with deleted files.
authorJunio C Hamano <junkio@cox.net>
Thu, 11 Jan 2007 23:34:41 +0000 (15:34 -0800)
committerJunio C Hamano <junkio@cox.net>
Thu, 11 Jan 2007 23:34:41 +0000 (15:34 -0800)
commit4d229653ab5eda48f7b7c83cb2a876b48a41ffd4
tree91da4b9a9c0554065d9cb9d2171e0f05dcab5d06
parent646ac22bdf7f7011bb4c77647053416e892ce64d
git-status: wording update to deal with deleted files.

If you do:

$ /bin/rm foo
$ git status

we used to say "git add ... to add content to commit".  But
suggsting "git add" to record the deletion of a file is simply
insane.

So this rewords various things:

 - The section header is the old "Changed but not updated",
   instead of "Changed but not added";

 - Suggestion is "git add ... to update what will be committed",
   instead of "... to add content to commit";

 - If there are removed paths, the above suggestion becomes "git
   add/rm ... to update what will be committed";

 - For untracked files, the suggestion is "git add ... to
   include in what will be committed".

Signed-off-by: Junio C Hamano <junkio@cox.net>
wt-status.c