From: Lars Vogel Date: Thu, 9 Jun 2016 18:19:30 +0000 (+0200) Subject: Use "working tree" instead of "working directory" for git status X-Git-Tag: v2.9.1~24^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/2a0e6cdedab306eccbd297c051035c13d0266343?ds=inline;hp=--cc Use "working tree" instead of "working directory" for git status 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 Signed-off-by: Junio C Hamano --- 2a0e6cdedab306eccbd297c051035c13d0266343 diff --git a/wt-status.c b/wt-status.c index 4f27bd62af..4ce4e35ac3 100644 --- a/wt-status.c +++ b/wt-status.c @@ -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")); } }