[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: What does mean of commits prefix ; ?
From: |
Stephen Berman |
Subject: |
Re: What does mean of commits prefix ; ? |
Date: |
Wed, 03 Apr 2024 23:46:07 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) |
On Thu, 04 Apr 2024 05:28:02 +0800 Feng Shu <tumashu@163.com> wrote:
> Hello:
>
> I have found that many commits prefix ';', is it has
> special mean?
>
> for example:
>
> e95a8622263 ; * lisp/keymap.el (key-parse): Fix processing of "[TAB]".
> (Bug#69893)
> afb7a23e7b9 ; Improve documentation of 'backup-by-copying'
This is explained the the CONTRIBUTE file in the Emacs sources:
If the summary line starts with a semicolon and a space "; ", the
commit message will be skipped and not added to the generated
ChangeLog file. Use this for minor commits that do not need to be
mentioned in the ChangeLog file, such as changes in etc/NEWS, typo
fixes, etc.
Steve Berman