diff options
| author | Glenn Morris | 2010-01-16 12:24:08 -0800 |
|---|---|---|
| committer | Glenn Morris | 2010-01-16 12:24:08 -0800 |
| commit | 4572d05251f0b1eeca32a11b6315188623ad8341 (patch) | |
| tree | 0d7cbb39676e7ad3452903290d3afa1f447744cd /admin/notes | |
| parent | 617364feb7163852e7c86323983d58d645063760 (diff) | |
| download | emacs-4572d05251f0b1eeca32a11b6315188623ad8341.tar.gz emacs-4572d05251f0b1eeca32a11b6315188623ad8341.zip | |
Update with Miles's advice on how to commit.
Diffstat (limited to 'admin/notes')
| -rw-r--r-- | admin/notes/commits | 58 |
1 files changed, 48 insertions, 10 deletions
diff --git a/admin/notes/commits b/admin/notes/commits index ff2dcc93ff5..2896328c664 100644 --- a/admin/notes/commits +++ b/admin/notes/commits | |||
| @@ -1,15 +1,53 @@ | |||
| 1 | http://lists.gnu.org/archive/html/emacs-devel/2007-12/msg01208.html | 1 | HOW TO COMMIT CHANGES TO EMACS |
| 2 | 2 | ||
| 3 | From: Eli Zaretskii | 3 | http://lists.gnu.org/archive/html/emacs-devel/2009-03/msg00555.html |
| 4 | Subject: Re: Log messages in CVS | 4 | From: Miles Bader |
| 5 | Date: Sat, 29 Dec 2007 16:06:29 +0200 | 5 | Subject: commit style redux |
| 6 | Date: Tue, 31 Mar 2009 12:21:20 +0900 | ||
| 7 | |||
| 8 | (1) Commit all changed files at once with a single log message (which | ||
| 9 | in CVS will result in an identical log message for all committed | ||
| 10 | files), not one-by-one. This is pretty easy using vc-dir now. | ||
| 11 | |||
| 12 | (2) Make the log message describe the entire changeset, perhaps | ||
| 13 | including relevant changelog entiries (I often don't bother with | ||
| 14 | the latter if it's a trivial sort of change). | ||
| 15 | |||
| 16 | Many modern source-control systems vaguely distinguish the first | ||
| 17 | line of the log message to use as a short summary for abbreviated | ||
| 18 | history listing (in arch this was explicitly called the summary, | ||
| 19 | but many other systems have a similar concept). So it's nice if | ||
| 20 | you can format the log entry like: | ||
| 21 | |||
| 22 | SHORTISH ONE-LINE SUMMARY | ||
| 23 | |||
| 24 | MULTIPLE-LINE DETAILED DESCRIPTION POSSIBLY INCLUDING (OR | ||
| 25 | CONSISTING OF) CHANGELOG ENTRIES | ||
| 6 | 26 | ||
| 7 | I once posted a summary that I know about; see: | 27 | [Even with CVS this style is useful, because web CVS browsing |
| 28 | interfaces often include the first N words of the log message of | ||
| 29 | the most recent commit as a short "most recent change" | ||
| 30 | description.] | ||
| 8 | 31 | ||
| 9 | http://lists.gnu.org/archive/html/emacs-devel/2006-11/msg00229.html | 32 | (3) Don't phrase log messages assuming the filename is known, because |
| 10 | http://lists.gnu.org/archive/html/emacs-devel/2006-11/msg00234.html | 33 | in non-file-oriented systems (everything modern other than CVS), |
| 11 | http://lists.gnu.org/archive/html/emacs-devel/2006-11/msg00312.html | 34 | the log listing tends to be treated as global information, and the |
| 35 | connection with specific files is less explicit. | ||
| 12 | 36 | ||
| 13 | Richard commented here, basically approving my summary: | 37 | For instance, currently I often see log messages like "Regenerate"; |
| 38 | for modern source-control systems with a global log, it's better to | ||
| 39 | have something like "Regenerate configure". | ||
| 14 | 40 | ||
| 15 | http://lists.gnu.org/archive/html/emacs-devel/2006-11/msg00276.html | 41 | |
| 42 | Followup discussion: | ||
| 43 | http://lists.gnu.org/archive/html/emacs-devel/2010-01/msg00897.html | ||
| 44 | |||
| 45 | |||
| 46 | PREVIOUS GUIDELINES FOR CVS | ||
| 47 | |||
| 48 | For historical interest only, here is the old-style advice for CVS logs: | ||
| 49 | http://lists.gnu.org/archive/html/emacs-devel/2007-12/msg01208.html | ||
| 50 | |||
| 51 | From: Eli Zaretskii | ||
| 52 | Subject: Re: Log messages in CVS | ||
| 53 | Date: Sat, 29 Dec 2007 16:06:29 +0200 | ||