Re: [PATCH] status: show in-progress info for short status

2017-05-10 Thread Junio C Hamano
Jacob Keller writes: > On Wed, Apr 12, 2017 at 11:09 PM, Junio C Hamano wrote: >> Jacob Keller writes: >> >>> Personally, I would want this to become the default and not have a new >>> option to trigger it. I think we could

Re: [PATCH] status: show in-progress info for short status

2017-04-17 Thread Junio C Hamano
Michael J Gruber writes: > Ordinary (long) status shows information about bisect, revert, am, > rebase, cherry-pick in progress, and so does git-prompt.sh. status > --short currently shows none of this information. > > Introduce an `--inprogress` argument to git status so that,

Re: [PATCH] status: show in-progress info for short status

2017-04-13 Thread SZEDER Gábor
On Fri, Apr 7, 2017 at 4:05 PM, Michael J Gruber wrote: > SZEDER Gábor venit, vidit, dixit 06.04.2017 16:33: >>> @@ -1779,6 +1780,31 @@ static void wt_shortstatus_print_tracking(struct >>> wt_status *s) >>> } >>> >>> color_fprintf(s->fp, header_color, "]"); >>> + >>> +

Re: [PATCH] status: show in-progress info for short status

2017-04-13 Thread Jacob Keller
On Wed, Apr 12, 2017 at 11:09 PM, Junio C Hamano wrote: > Jacob Keller writes: > >> Personally, I would want this to become the default and not have a new >> option to trigger it. I think we could also extend the porcelain >> format to include this

Re: [PATCH] status: show in-progress info for short status

2017-04-13 Thread Jacob Keller
On Wed, Apr 12, 2017 at 11:09 PM, Junio C Hamano wrote: > Jacob Keller writes: > >> Personally, I would want this to become the default and not have a new >> option to trigger it. I think we could also extend the porcelain >> format to include this

Re: [PATCH] status: show in-progress info for short status

2017-04-13 Thread Junio C Hamano
Jacob Keller writes: > Personally, I would want this to become the default and not have a new > option to trigger it. I think we could also extend the porcelain > format to include this information as well, but I'm not too familiar > with how the v2 format extends or not.

Re: [PATCH] status: show in-progress info for short status

2017-04-07 Thread Jacob Keller
On Fri, Mar 31, 2017 at 11:14 AM, Junio C Hamano wrote: > Michael J Gruber writes: > >> Ordinary (long) status shows information about bisect, revert, am, >> rebase, cherry-pick in progress, and so does git-prompt.sh. status >> --short currently shows none of

Re: [PATCH] status: show in-progress info for short status

2017-04-07 Thread Michael J Gruber
Junio C Hamano venit, vidit, dixit 31.03.2017 20:14: > Michael J Gruber writes: > >> Ordinary (long) status shows information about bisect, revert, am, >> rebase, cherry-pick in progress, and so does git-prompt.sh. status >> --short currently shows none of this information. >> >>

Re: [PATCH] status: show in-progress info for short status

2017-04-07 Thread Michael J Gruber
SZEDER Gábor venit, vidit, dixit 06.04.2017 16:33: >> @@ -1779,6 +1780,31 @@ static void wt_shortstatus_print_tracking(struct >> wt_status *s) >> } >> >> color_fprintf(s->fp, header_color, "]"); >> + >> + inprogress: >> +if (!s->show_inprogress) >> +goto conclude; >> +

Re: [PATCH] status: show in-progress info for short status

2017-04-06 Thread SZEDER Gábor
> @@ -1779,6 +1780,31 @@ static void wt_shortstatus_print_tracking(struct > wt_status *s) > } > > color_fprintf(s->fp, header_color, "]"); > + > + inprogress: > + if (!s->show_inprogress) > + goto conclude; > + memset(, 0, sizeof(state)); > +

Re: [PATCH] status: show in-progress info for short status

2017-04-01 Thread brian m. carlson
On Fri, Mar 31, 2017 at 03:59:17PM +0200, Michael J Gruber wrote: > Ordinary (long) status shows information about bisect, revert, am, > rebase, cherry-pick in progress, and so does git-prompt.sh. status > --short currently shows none of this information. > > Introduce an `--inprogress` argument

Re: [PATCH] status: show in-progress info for short status

2017-03-31 Thread Junio C Hamano
Michael J Gruber writes: > Ordinary (long) status shows information about bisect, revert, am, > rebase, cherry-pick in progress, and so does git-prompt.sh. status > --short currently shows none of this information. > > Introduce an `--inprogress` argument to git status so that,

[PATCH] status: show in-progress info for short status

2017-03-31 Thread Michael J Gruber
Ordinary (long) status shows information about bisect, revert, am, rebase, cherry-pick in progress, and so does git-prompt.sh. status --short currently shows none of this information. Introduce an `--inprogress` argument to git status so that, when used with `--short --branch`, in-progress