Browse Source

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
maint
Junio C Hamano 9 years ago
parent
commit
a010d61e88
  1. 2
      wt-status.c

2
wt-status.c

@ -1554,7 +1554,7 @@ void wt_status_print(struct wt_status *s) @@ -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"));
}
}


Loading…
Cancel
Save