diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-06-27 09:56:51 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-06-27 09:56:51 -0700 |
commit | a010d61e8819205b153afe00744f882e5761b424 (patch) | |
tree | 37fed893d2356118e1fa4c0eacb9a919110963b4 /wt-status.c | |
parent | 880c267a2400d9374d7ca4501313e5ab9f5392fb (diff) | |
parent | 2a0e6cdedab306eccbd297c051035c13d0266343 (diff) | |
download | git-a010d61e8819205b153afe00744f882e5761b424.tar.gz git-a010d61e8819205b153afe00744f882e5761b424.tar.xz |
Merge branch 'lv/status-say-working-tree-not-directory'
"git status" used to say "working directory" when it meant "working
tree".
* lv/status-say-working-tree-not-directory:
Use "working tree" instead of "working directory" for git status
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 4f27bd62a..4ce4e35ac 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")); } } |