Use "working tree" instead of "working directory" for git status
authorLars Vogel <lars.vogel@gmail.com>
Thu, 9 Jun 2016 18:19:30 +0000 (20:19 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 9 Jun 2016 19:21:52 +0000 (12:21 -0700)
Working directory can be easily confused with the current directory.
In one of my patches I already updated the usage of working directory
with working tree for the man page but I noticed that git status also
uses this incorrect term.

Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
wt-status.c
index 4f27bd62af992122d83df911c42b585342ac1066..4ce4e35ac3f3542c42c9f71e7bb3f0c5e2c67492 100644 (file)
@@ -1554,7 +1554,7 @@ void wt_status_print(struct wt_status *s)
                        else
                                printf(_("nothing to commit\n"));
                } else
-                       printf(_("nothing to commit, working directory clean\n"));
+                       printf(_("nothing to commit, working tree clean\n"));
        }
 }