Re: Bug: "git log --format='format:%+s%+b'" doesn't insert newline before body

2016-07-25 Thread Jakub Narębski
W dniu 2016-07-25 o 09:33, Johannes Schindelin pisze: > Therefore "%s%n%+b" *might* do what you intended (I would not > know, because that information was missing from the report). Shouldn't it be "%s%n%n%-b" or "%s%n%-b"? -- Jakub Narębski -- To unsubscribe from this list: send the line

Re: Bug: "git log --format='format:%+s%+b'" doesn't insert newline before body

2016-07-25 Thread Ilya Tumaykin
On Monday 25 July 2016 10:06:28 Johannes Schindelin wrote: > Hi Ilya, > > On Mon, 25 Jul 2016, Ilya Tumaykin wrote: > > On Monday 25 July 2016 09:33:00 Johannes Schindelin wrote: > > > On Sun, 24 Jul 2016, Ilya Tumaykin wrote: > > > [...] > > > > > > > $ git --no-pager log -1

Re: Bug: "git log --format='format:%+s%+b'" doesn't insert newline before body

2016-07-25 Thread Johannes Schindelin
Hi Ilya, On Mon, 25 Jul 2016, Ilya Tumaykin wrote: > On Monday 25 July 2016 09:33:00 Johannes Schindelin wrote: > > > > On Sun, 24 Jul 2016, Ilya Tumaykin wrote: > > [...] > > > $ git --no-pager log -1 --format='format:%+s%+b' > > > > > > Actual results: > > > ``` > > > > > > This is subject

Re: Bug: "git log --format='format:%+s%+b'" doesn't insert newline before body

2016-07-25 Thread Ilya Tumaykin
On Monday 25 July 2016 09:33:00 Johannes Schindelin wrote: > Hi Ilya, > > On Sun, 24 Jul 2016, Ilya Tumaykin wrote: > > Steps to reproduce: > > $ git init > > $ >123 > > $ git add 123 > > $ git commit -v -m 'This is subject' -m 'And this is body' > > $ git --no-pager log -1

Re: Bug: "git log --format='format:%+s%+b'" doesn't insert newline before body

2016-07-25 Thread Johannes Schindelin
Hi Ilya, On Sun, 24 Jul 2016, Ilya Tumaykin wrote: > Steps to reproduce: > $ git init > $ >123 > $ git add 123 > $ git commit -v -m 'This is subject' -m 'And this is body' > $ git --no-pager log -1 --format='format:%+s%+b' > > Actual results: > ``` > > This is subject > And this is body > ```

Bug: "git log --format='format:%+s%+b'" doesn't insert newline before body

2016-07-24 Thread Ilya Tumaykin
Hello. Steps to reproduce: $ git init $ >123 $ git add 123 $ git commit -v -m 'This is subject' -m 'And this is body' $ git --no-pager log -1 --format='format:%+s%+b' Actual results: ``` This is subject And this is body ``` Expected results: ``` This is subject And this is body ``` $ git