all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#36208: 26.2.50; Add tooling for commit message format checking
@ 2019-06-14 16:47 Damien Cassou
       [not found] ` <mailman.90.1560530885.10840.bug-gnu-emacs@gnu.org>
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Damien Cassou @ 2019-06-14 16:47 UTC (permalink / raw)
  To: 36208

Hi



writing commit messages that comply with Emacs' guidelines requires a
good understanding of many details described in CONTRIBUTE.  To reduce
the workload of new contributors and of reviewers, part of these
guidelines could be transformed into tools.

Here are some of the checks that humans have to do these days:

1. dots after every sentence (even just "New function" must terminate
   with a dot)
2. double-space after dots ending sentences
3. no indentation (M-q adds 2 spaces which we don't want)
4. line length
5. the Copyright-paperwork-exempt token
6. every single change is documented
7. no colon if another function of the same file has the same comment

I can imagine several tools:

- a major mode for editing commit messages:

  - for check 2., sentence-end-double-space could be set to t

  - for check 3., I guess another variable could be set

  - for check 4., setting fill-column

  - for check 5., a shortcut could help adding such tokens

  - for check 6., a shortcut (beyond `C' which triggers
    `magit-commit-add-log-insert') could add a template with all the
    changes

- a flymake backend to mark problems:

  - for checks 1., 3., 4., and 7., I believe it's obvious

  - for check 2., words ending with a dot and just one space (with a
    whitelist to avoid false positives such as "etc."  and "aka.")

- a patch checker (e.g., `./check_patch.sh *.patch`):

  - could check the same as the flymake backend and also checks 5 and 6.

Best,

-- 
Damien Cassou
http://damiencassou.seasidehosting.st

"Success is the ability to go from one failure to another without
losing enthusiasm." --Winston Churchill





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

* bug#36208: 26.2.50; Add tooling for commit message format checking
       [not found] ` <mailman.90.1560530885.10840.bug-gnu-emacs@gnu.org>
@ 2019-06-17  7:39   ` Alan Mackenzie
  2019-06-17  7:46     ` Juanma Barranquero
  0 siblings, 1 reply; 6+ messages in thread
From: Alan Mackenzie @ 2019-06-17  7:39 UTC (permalink / raw)
  To: Damien Cassou; +Cc: 36208

Hello, Damien.

In article <mailman.90.1560530885.10840.bug-gnu-emacs@gnu.org> you wrote:
> Hi

> writing commit messages that comply with Emacs' guidelines requires a
> good understanding of many details described in CONTRIBUTE.  To reduce
> the workload of new contributors and of reviewers, part of these
> guidelines could be transformed into tools.

It's worth pointing out that C-x 4 a
(add-change-log-entry-other-window), from the days when we used to
write ChangeLog entries, does some of what you're asking for.  Maybe
this could be adapted.

> Here are some of the checks that humans have to do these days:

> 1. dots after every sentence (even just "New function" must terminate
>    with a dot)
> 2. double-space after dots ending sentences
> 3. no indentation (M-q adds 2 spaces which we don't want)
> 4. line length
> 5. the Copyright-paperwork-exempt token
> 6. every single change is documented
> 7. no colon if another function of the same file has the same comment

What we are really missing is an ability to edit commit messages after
committing with a faulty message.  This is a deficiency of git.

> I can imagine several tools:

> - a major mode for editing commit messages:

>   - for check 2., sentence-end-double-space could be set to t

>   - for check 3., I guess another variable could be set

>   - for check 4., setting fill-column

>   - for check 5., a shortcut could help adding such tokens

>   - for check 6., a shortcut (beyond `C' which triggers
>     `magit-commit-add-log-insert') could add a template with all the
>     changes

> - a flymake backend to mark problems:

>   - for checks 1., 3., 4., and 7., I believe it's obvious

>   - for check 2., words ending with a dot and just one space (with a
>     whitelist to avoid false positives such as "etc."  and "aka.")

> - a patch checker (e.g., `./check_patch.sh *.patch`):

>   - could check the same as the flymake backend and also checks 5 and 6.

> Best,

> -- 
> Damien Cassou
> http://damiencassou.seasidehosting.st

> "Success is the ability to go from one failure to another without
> losing enthusiasm." --Winston Churchill

-- 
Alan Mackenzie (Nuremberg, Germany).






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

* bug#36208: 26.2.50; Add tooling for commit message format checking
  2019-06-17  7:39   ` Alan Mackenzie
@ 2019-06-17  7:46     ` Juanma Barranquero
  2019-06-17 15:10       ` Noam Postavsky
  0 siblings, 1 reply; 6+ messages in thread
From: Juanma Barranquero @ 2019-06-17  7:46 UTC (permalink / raw)
  To: Alan Mackenzie; +Cc: Damien Cassou, 36208

> What we are really missing is an ability to edit commit messages after
> committing with a faulty message.  This is a deficiency of git.

We can add information with git notes, though I think we're not using
that capability.





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

* bug#36208: 26.2.50; Add tooling for commit message format checking
  2019-06-17  7:46     ` Juanma Barranquero
@ 2019-06-17 15:10       ` Noam Postavsky
  0 siblings, 0 replies; 6+ messages in thread
From: Noam Postavsky @ 2019-06-17 15:10 UTC (permalink / raw)
  To: Juanma Barranquero; +Cc: Damien Cassou, Alan Mackenzie, 36208

Juanma Barranquero <lekktu@gmail.com> writes:

>> What we are really missing is an ability to edit commit messages after
>> committing with a faulty message.  This is a deficiency of git.
>
> We can add information with git notes, though I think we're not using
> that capability.

Last time I checked this out, having many note refs in the git
repository would noticeably slow down all git operations.

https://lists.gnu.org/archive/html/emacs-devel/2016-07/msg01184.html





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

* bug#36208: 26.2.50; Add tooling for commit message format checking
  2019-06-14 16:47 bug#36208: 26.2.50; Add tooling for commit message format checking Damien Cassou
       [not found] ` <mailman.90.1560530885.10840.bug-gnu-emacs@gnu.org>
@ 2019-07-05  2:02 ` Noam Postavsky
  2019-07-05 16:21 ` Basil L. Contovounesios
  2 siblings, 0 replies; 6+ messages in thread
From: Noam Postavsky @ 2019-07-05  2:02 UTC (permalink / raw)
  To: Damien Cassou; +Cc: 36208

Damien Cassou <damien@cassou.me> writes:

> 1. dots after every sentence (even just "New function" must terminate
>    with a dot)
> 2. double-space after dots ending sentences

>   - for check 6., a shortcut (beyond `C' which triggers
>     `magit-commit-add-log-insert') could add a template with all the
>     changes

I've started work on a command which can generate the ChangeLog
skeleton, see https://debbugs.gnu.org/16301#11.  While doing that, I
found that we already have log-edit-mode (and derived mode
vc-git-log-edit-mode) which already has some checking for 1 and 2 in its
font-lock rules.






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

* bug#36208: 26.2.50; Add tooling for commit message format checking
  2019-06-14 16:47 bug#36208: 26.2.50; Add tooling for commit message format checking Damien Cassou
       [not found] ` <mailman.90.1560530885.10840.bug-gnu-emacs@gnu.org>
  2019-07-05  2:02 ` Noam Postavsky
@ 2019-07-05 16:21 ` Basil L. Contovounesios
  2 siblings, 0 replies; 6+ messages in thread
From: Basil L. Contovounesios @ 2019-07-05 16:21 UTC (permalink / raw)
  To: Damien Cassou; +Cc: 36208

Damien Cassou <damien@cassou.me> writes:

> writing commit messages that comply with Emacs' guidelines requires a
> good understanding of many details described in CONTRIBUTE.  To reduce
> the workload of new contributors and of reviewers, part of these
> guidelines could be transformed into tools.
>
> Here are some of the checks that humans have to do these days:
>
> 1. dots after every sentence (even just "New function" must terminate
>    with a dot)
> 2. double-space after dots ending sentences
> 3. no indentation (M-q adds 2 spaces which we don't want)

Are you using Magit's git-commit-mode?  If so, see PR #3911:
https://github.com/magit/magit/pull/3911

Thanks,

-- 
Basil





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

end of thread, other threads:[~2019-07-05 16:21 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-14 16:47 bug#36208: 26.2.50; Add tooling for commit message format checking Damien Cassou
     [not found] ` <mailman.90.1560530885.10840.bug-gnu-emacs@gnu.org>
2019-06-17  7:39   ` Alan Mackenzie
2019-06-17  7:46     ` Juanma Barranquero
2019-06-17 15:10       ` Noam Postavsky
2019-07-05  2:02 ` Noam Postavsky
2019-07-05 16:21 ` Basil L. Contovounesios

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

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.