All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/5] Use skip_blank_lines() for more commit messages
@ 2016-06-29 14:14 Johannes Schindelin
  2016-06-29 14:14 ` [PATCH 1/5] commit -C: skip blank lines at the beginning of the message Johannes Schindelin
                   ` (5 more replies)
  0 siblings, 6 replies; 11+ messages in thread
From: Johannes Schindelin @ 2016-06-29 14:14 UTC (permalink / raw)
  To: git; +Cc: Junio C Hamano

These patches are on top of js/find-commit-subject-ignore-leading-blanks
(whether you want to put them into the same topic branch before merging
or put them into their own add-on topic branch does not really matter to
me).

It occurred to me that there might be more code locations where finding
the commit object's body is hand-rolled, and could benefit from using
the skip_blank_lines() function to handle not-quite-standard but
still-allowed objects from being processed correctly.

I found a couple of instances, and made them consistent with the
pretty-printing machinery.

I made fine-grained commits to allow for dropping contentious patches
more easily.

There are four more instances which I did *not* change:

- fast-export: I designed this command to be as faithful in exporting
  the commits as possible. As such, even non-standard commit objects
  should be kept as-are.

- fmt-merge-msg: when showing signed commit messages, it is better to
  show the commit messages verbatim rather than trimming them.

- when signing a commit, it is better to use the original commit message
  than a munged one.

- notes' messages are left alone. I do not know whether there might be
  an intentional use of leading blank lines, but I wanted to err on the
  safe side.

I also considered treating tag messages the same way, but tags are much
more likely to be signed, and I did not want to risk munging the tag
messages just before signing them.


Johannes Schindelin (5):
  commit -C: skip blank lines at the beginning of the message
  sequencer: use skip_blank_lines() to find the commit subject
  reset --hard: skip blank lines when reporting the commit subject
  commit -S: avoid invalid pointer with empty message
  Skip blank lines when matching <commit>^{/foo}

 builtin/commit.c | 2 +-
 builtin/reset.c  | 2 +-
 commit.c         | 6 +++++-
 sequencer.c      | 6 ++----
 sha1_name.c      | 3 ++-
 5 files changed, 11 insertions(+), 8 deletions(-)

Published-As: https://github.com/dscho/git/releases/tag/more-blank-line-skipping-v1
-- 
2.9.0.270.g810e421

base-commit: 38a2ea1900489a76d9840002bf60bd7ff29f07cd

^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2016-07-02  6:35 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-29 14:14 [PATCH 0/5] Use skip_blank_lines() for more commit messages Johannes Schindelin
2016-06-29 14:14 ` [PATCH 1/5] commit -C: skip blank lines at the beginning of the message Johannes Schindelin
2016-06-29 21:59   ` Junio C Hamano
2016-06-29 14:14 ` [PATCH 2/5] sequencer: use skip_blank_lines() to find the commit subject Johannes Schindelin
2016-06-29 22:03   ` Junio C Hamano
2016-06-29 14:14 ` [PATCH 3/5] reset --hard: skip blank lines when reporting " Johannes Schindelin
2016-06-29 14:14 ` [PATCH 4/5] commit -S: avoid invalid pointer with empty message Johannes Schindelin
2016-06-29 14:15 ` [PATCH 5/5] Skip blank lines when matching <commit>^{/foo} Johannes Schindelin
2016-06-29 22:53   ` Junio C Hamano
2016-07-02  6:34     ` Johannes Schindelin
2016-06-29 17:51 ` [PATCH 0/5] Use skip_blank_lines() for more commit messages Junio C Hamano

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.