On Sat, Sep 11, 2021 at 6:43 AM Ævar Arnfjörð Bjarmason <avarab@xxxxxxxxx> wrote: > On Sat, Sep 11 2021, Eric Sunshine wrote: > > Notes don't store the indented blank lines; it's only at output time, > > such as with `git format-patch --notes` that the blank lines get > > indented along with the rest of the note text (just as is happening in > > your `git show` example in which the entire commit message is being > > indented, including the blank lines). > > Ah, so with your change we'd end up with trimmed notes, but not the > trimmed main body of the commit message? That's correct. This "fix" is specific to the note-printing machinery which is invoked by (at least) git-format-patch and git-log. (Until your demonstration of git-show indentation, I wasn't even aware that blank lines in commit messages were getting indented there, as well.) > > Anyhow, since then, I've discovered that `git format-patch > > --range-diff` also indents blank lines. And you've now shown that `git > > show` does, as well, so the behavior which triggered this "fix" turns > > out to be somewhat normal in this project, rather than a one-off "bug" > > in need of a fix. > > Per the above I wouldn't mind this just being changed for all of them, > even one at a time. I'm not a fan of the trailing whitespace either, however, Junio does have the concern that there may be some tooling somewhere which relies upon the "indented blank lines" (even if such tooling would not be robust).