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 <Lars.Vogel@vogella.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Lars Vogel committed
Jun 9, 2016 at 20:19 UTC
2a0e6cdedab306eccbd297c051035c13d0266343
1 file changed
+1
-1
wt-status.c
+1
-1
@@ -1554,7 +1554,7 @@ void wt_status_print(struct wt_status *s)
1554
else
1555
printf(_("nothing to commit\n"));
1556
} else
1557
- printf(_("nothing to commit, working directory clean\n"));
1557
+ printf(_("nothing to commit, working tree clean\n"));
1558
}
1559
}
1560