]> git.ipfire.org Git - thirdparty/git.git/commit - Documentation/SubmittingPatches
SubmittingPatches: provide tag naming advice
authorJosh Soref <jsoref@gmail.com>
Thu, 28 Dec 2023 04:55:21 +0000 (04:55 +0000)
committerJunio C Hamano <gitster@pobox.com>
Thu, 28 Dec 2023 05:33:23 +0000 (21:33 -0800)
commit08e2e6f8d27539b7573c9ce3b5e4958b93876229
tree02dc6c54b40988809dc72d638349391ea9e7ef00
parentc771ef6f77d36fc9bfe6e70f805f52f84f681536
SubmittingPatches: provide tag naming advice

Current statistics show a strong preference to only capitalize the first
letter in a hyphenated tag, but that some guidance would be helpful:

git log |
  perl -ne 'next unless /^\s+(?:Signed-[oO]ff|Acked)-[bB]y:/;
    s/^\s+//;s/:.*/:/;print'|
  sort|uniq -c|sort -n
   2 Signed-off-By:
   4 Signed-Off-by:
  22 Acked-By:
  47 Signed-Off-By:
2202 Acked-by:
95315 Signed-off-by:

Signed-off-by: Josh Soref <jsoref@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/SubmittingPatches