Re: [PATCH 2/3] wt-status: add optional stash status information

2017-06-16 Thread Junio C Hamano
Jeff King writes: > On Fri, Jun 16, 2017 at 12:30:49AM -0400, Liam Beguin wrote: > >> @@ -1642,6 +1664,8 @@ static void wt_longstatus_print(struct wt_status *s) >> } else >> printf(_("nothing to commit, working tree clean\n")); >> } >> +if (!git_config_g

Re: [PATCH 2/3] wt-status: add optional stash status information

2017-06-16 Thread Jeff King
On Fri, Jun 16, 2017 at 12:30:49AM -0400, Liam Beguin wrote: > @@ -1642,6 +1664,8 @@ static void wt_longstatus_print(struct wt_status *s) > } else > printf(_("nothing to commit, working tree clean\n")); > } > + if (!git_config_get_bool("status.showStas

[PATCH 2/3] wt-status: add optional stash status information

2017-06-15 Thread Liam Beguin
Add the `status.showStash` configuration option to allow git-status to show information about currently stashed entries. Signed-off-by: Liam Beguin --- Documentation/config.txt | 5 + wt-status.c | 24 2 files changed, 29 insertions(+) diff --git a/Doc