Re: [PATCH] config doc: add missing list separator for checkout.optimizeNewBranch

2018-09-18 Thread Ævar Arnfjörð Bjarmason
On Tue, Sep 18 2018, Jeff King wrote: > On Tue, Sep 18, 2018 at 05:34:49AM +, Ævar Arnfjörð Bjarmason wrote: > >> The documentation added in fa655d8411 ("checkout: optimize "git >> checkout -b "", 2018-08-16) didn't add the double-colon >> needed for the labeled list separator, as a result t

Re: [PATCH] config doc: add missing list separator for checkout.optimizeNewBranch

2018-09-18 Thread Taylor Blau
On Tue, Sep 18, 2018 at 01:16:43PM -0400, Jeff King wrote: > On Tue, Sep 18, 2018 at 12:57:07PM -0400, Taylor Blau wrote: > > > Hi Ævar, > > > > On Tue, Sep 18, 2018 at 05:34:49AM +, Ævar Arnfjörð Bjarmason wrote: > > > The documentation added in fa655d8411 ("checkout: optimize "git > > > check

Re: [PATCH] config doc: add missing list separator for checkout.optimizeNewBranch

2018-09-18 Thread Jeff King
On Tue, Sep 18, 2018 at 12:57:07PM -0400, Taylor Blau wrote: > Hi Ævar, > > On Tue, Sep 18, 2018 at 05:34:49AM +, Ævar Arnfjörð Bjarmason wrote: > > The documentation added in fa655d8411 ("checkout: optimize "git > > checkout -b "", 2018-08-16) didn't add the double-colon > > needed for the l

Re: [PATCH] config doc: add missing list separator for checkout.optimizeNewBranch

2018-09-18 Thread Jeff King
On Tue, Sep 18, 2018 at 05:34:49AM +, Ævar Arnfjörð Bjarmason wrote: > The documentation added in fa655d8411 ("checkout: optimize "git > checkout -b "", 2018-08-16) didn't add the double-colon > needed for the labeled list separator, as a result the added > documentation all got squashed into

Re: [PATCH] config doc: add missing list separator for checkout.optimizeNewBranch

2018-09-18 Thread Taylor Blau
Hi Ævar, On Tue, Sep 18, 2018 at 05:34:49AM +, Ævar Arnfjörð Bjarmason wrote: > The documentation added in fa655d8411 ("checkout: optimize "git > checkout -b "", 2018-08-16) didn't add the double-colon > needed for the labeled list separator, as a result the added > documentation all got squas

[PATCH] config doc: add missing list separator for checkout.optimizeNewBranch

2018-09-17 Thread Ævar Arnfjörð Bjarmason
The documentation added in fa655d8411 ("checkout: optimize "git checkout -b "", 2018-08-16) didn't add the double-colon needed for the labeled list separator, as a result the added documentation all got squashed into one paragraph. Fix that by adding the list separator. Signed-off-by: Ævar Arnfjör