]> code.delx.au - gnu-emacs/blob - CONTRIBUTE
; CONTRIBUTE: Further updates
[gnu-emacs] / CONTRIBUTE
1 This file contains information on Emacs developer processes.
2
3 For information on contributing to Emacs as a non-developer, see
4 (info "(emacs)Contributing") or
5 http://www.gnu.org/software/emacs/manual/html_node/emacs/Contributing.html
6
7 * Information for Emacs Developers.
8
9 An "Emacs Developer" is someone who contributes a lot of code or
10 documentation to the Emacs repository. Generally, they have write
11 access to the Emacs git repository on Savannah
12 https://savannah.gnu.org/git/?group=emacs.
13
14 ** Write access to the Emacs repository.
15
16 Once you become a frequent contributor to Emacs, we can consider
17 giving you write access to the version-control repository. Request
18 access on the emacs-devel@gnu.org mailing list.
19
20 ** Using the Emacs repository
21
22 Emacs uses git for the source code repository.
23
24 See http://www.emacswiki.org/emacs/GitQuickStartForEmacsDevs to get
25 started, and http://www.emacswiki.org/emacs/GitForEmacsDevs for more
26 advanced information.
27
28 Alternately, see admin/notes/git-workflow.
29
30 If committing changes written by someone else, make the commit in
31 their name, not yours. git distinguishes between the author
32 and the committer; use the --author option on the commit command to
33 specify the actual author; the committer defaults to you.
34
35 ** Commit messages
36
37 When a release is prepared, the commit messages are used to generate
38 the ChangeLog file. So a typical patch does not touch any of the
39 ChangeLog files in the repository, but contains the ChangeLog entries
40 in its message. Here is an example commit message (indented):
41
42 Deactivate shifted region
43
44 Do not silently extend a region that is not highlighted;
45 this can happen after a shift.
46 * doc/emacs/mark.texi (Shift Selection): Document the change.
47 * lisp/window.el (handle-select-window):
48 * src/frame.c (Fhandle_switch_frame, Fselected_frame):
49 Deactivate the mark.
50 Fixes: bug#19003
51
52 The general format is as follows.
53
54 - Start with a single unindented summary line explaining the change,
55 then an empty line, then unindented ChangeLog entries.
56
57 - Limit lines in commit messages to 78 characters, unless they consist
58 of a single word of at most 140 characters; this is enforced by a
59 commit hook. It's nicer to limit the summary line to 50 characters;
60 this isn't enforced. If the change can't be summarized so briefly,
61 add a paragraph after the empty line and before the individual file
62 descriptions.
63
64 - If only a single file is changed, the summary line can be the normal
65 file first line (starting with the asterisk). Then there is no
66 individual files section.
67
68 - Explaining the rationale for a design choice is best done in comments
69 in the source code. However, sometimes it is useful to describe just
70 the rationale for a change; that can be done in the commit message
71 between the summary line and the file entries.
72
73 - Commit messages should contain only printable UTF-8 characters.
74
75 - Commit messages should not contain the "Signed-off-by:" lines that
76 are used in some other projects.
77
78 - Emacs generally follows the GNU coding standards when it comes to
79 ChangeLogs:
80 http://www.gnu.org/prep/standards/html_node/Change-Logs.html . One
81 exception is that we still sometimes quote `like-this' (as the
82 standards used to recommend) rather than 'like-this' (as they do
83 now), because `...' is so widely used elsewhere in Emacs.
84
85 - Some of the rules in the GNU coding standards section 5.2
86 "Commenting Your Work" also apply to ChangeLog entries: they must be
87 in English, and be complete sentences starting with a capital and
88 ending with a period (except the summary line should not end in a
89 period).
90
91 They are preserved indefinitely, and have a reasonable chance of
92 being read in the future, so it's better that they have good
93 presentation.
94
95 - Use the present tense; describe "what the change does", not "what
96 the change did".
97
98 - Preferred form for several entries with the same content:
99
100 * lisp/help.el (view-lossage):
101 * lisp/kmacro.el (kmacro-edit-lossage):
102 * lisp/edmacro.el (edit-kbd-macro): Fix docstring, lossage is now 300.
103
104 (Rather than anything involving "ditto" and suchlike.)
105
106 - If the commit has authors other than yourself, the commit message
107 should contain a separate line like the following:
108
109 Co-authored-by: Joe Schmoe <j.schmoe@example.org>
110
111 - If the commit is a tiny change that is exempt from copyright paperwork,
112 the commit message should contain a separate line like the following:
113
114 Copyright-paperwork-exempt: yes
115
116 - If the commit fixes a bug, append a separate line
117
118 Fixes: bug#NNNN
119
120 where NNNN is the bug number.
121
122 - In ChangeLog entries, there is no standard or recommended way to
123 identify revisions.
124
125 One way to identify revisions is by quoting their summary line.
126 Another is with an action stamp - an RFC3339 date followed by !
127 followed by the committer's email - for example,
128 "2014-01-16T05:43:35Z!esr@thyrsus.com". Often, "my previous commit"
129 will suffice.
130
131 - There is no need to mention files such as NEWS, MAINTAINERS, and
132 FOR-RELEASE, or to indicate regeneration of files such as
133 'configure', in the ChangeLog entry. "There is no need" means you
134 don't have to, but you can if you want to.
135
136 - If a commit message's first line starts with "; ", the message is
137 ignored when generating ChangeLog history files via 'make ChangeLog'
138 or via 'make change-history'. You can use "; " for minor commits
139 that do not need separate ChangeLog entries, as well as commits that
140 only modify files that don't need these entries at all.
141
142 ** Generating ChangeLog entries
143
144 - You can use various Emacs functions to ease the process of writing
145 ChangeLog entries; see (info "(emacs)Change Log Commands") or
146 http://www.gnu.org/software/emacs/manual/html_node/emacs/Change-Log-Commands.html.
147
148 - If you use Emacs VC, one way to format ChangeLog entries is to create
149 a top-level ChangeLog file manually, and update it with 'C-x 4 a' as
150 usual. Do not register the ChangeLog file under git; instead, use
151 'C-c C-a' to insert its contents into into your *vc-log* buffer.
152 Or if `log-edit-hook' includes `log-edit-insert-changelog' (which it
153 does by default), they will be filled in for you automatically.
154
155 - Alternatively, you can use the vc-dwim command to maintain commit
156 messages. When you create a source directory, run the shell command
157 'git-changelog-symlink-init' to create a symbolic link from
158 ChangeLog to .git/c/ChangeLog. Edit this ChangeLog via its symlink
159 with Emacs commands like 'C-x 4 a', and commit the change using the
160 shell command 'vc-dwim --commit'. Type 'vc-dwim --help' for more.
161
162 ** branches
163
164 Development normally takes places on the trunk.
165 Sometimes specialized features are developed on separate branches
166 before possibly being merged to the trunk.
167
168 Development is discussed on the emacs-devel mailing list.
169
170 Sometime before the release of a new major version of Emacs a "feature
171 freeze" is imposed on the trunk, to prepare for creating a release
172 branch. No new features may be added to the trunk after this point,
173 until the release branch is created. Announcements about the freeze
174 (and other important events) are made on the info-gnu-emacs mailing
175 list, and not anywhere else.
176
177 The trunk branch is named "master" in git; release branches are named
178 "emacs-nn" where "nn" is the major version.
179
180 If you are fixing a bug that exists in the current release, be sure to
181 commit it to the release branch; it will be merged to the master
182 branch later.
183
184 However, if you know that the change will be difficult to merge to the
185 trunk (eg because the trunk code has changed a lot), you can apply the
186 change to both trunk and branch yourself. Indicate in the release
187 branch commit log that there is no need to merge the commit to the
188 trunk; start the commit message with "Backport:". gitmerge.el will
189 then exclude that commit from the merge to trunk.
190
191
192 ** Other process information
193
194 See all the files in admin/notes/* . In particular, see
195 admin/notes/newfile, see admin/notes/repo.
196
197 *** git vs rename
198
199 git does not explicitly represent a file renaming; it uses a percent
200 changed heuristic to deduce that a file was renamed. So if you are
201 planning to make extensive changes to a file after renaming it (or
202 moving it to another directory), you should:
203
204 - create a feature branch
205
206 - commit the rename without any changes
207
208 - make other changes
209
210 - merge the feature branch to trunk, _not_ squashing the commits into
211 one. The commit message on this merge should summarize the renames
212 and all the changes.
213
214 ** Emacs Mailing lists.
215
216 Discussion about Emacs development takes place on emacs-devel@gnu.org.
217
218 Bug reports and fixes, feature requests and implementations should be
219 sent to bug-gnu-emacs@gnu.org, the bug/feature list. This is coupled
220 to the tracker at http://debbugs.gnu.org .
221
222 You can subscribe to the mailing lists, or see the list archives,
223 by following links from http://savannah.gnu.org/mail/?group=emacs .
224
225 To email a patch you can use a shell command like 'git format-patch -1'
226 to create a file, and then attach the file to your email. This nicely
227 packages the patch's commit message and changes.
228
229 ** Document your changes.
230
231 Any change that matters to end-users should have an entry in etc/NEWS.
232
233 Doc-strings should be updated together with the code.
234
235 Think about whether your change requires updating the manuals. If you
236 know it does not, mark the NEWS entry with "---". If you know
237 that *all* the necessary documentation updates have been made, mark
238 the entry with "+++". Otherwise do not mark it.
239
240 Please see (info "(elisp)Documentation Tips") or
241 https://www.gnu.org/software/emacs/manual/html_node/elisp/Documentation-Tips.html
242 for more specific tips on Emacs's doc style. Use `checkdoc' to check
243 for documentation errors before submitting a patch.
244
245 ** Test your changes.
246
247 Please test your changes before committing them or sending them to the
248 list.
249
250 Emacs uses ERT, Emacs Lisp Regression Testing, for testing. See (info
251 "(ert)") or https://www.gnu.org/software/emacs/manual/html_node/ert/
252 for more information on writing and running tests.
253
254 To run tests on the entire Emacs tree, run "make check" from the
255 top-level directory. Most tests are in the directory
256 "test/automated". From the "test/automated" directory, run "make
257 <filename>" to run the tests for <filename>.el(c). See
258 "test/automated/Makefile" for more information.
259
260 ** Understanding Emacs Internals.
261
262 The best way to understand Emacs Internals is to read the code,
263 but the nodes "Tips" and "GNU Emacs Internals" in the Appendix
264 of the Emacs Lisp Reference Manual may also help.
265
266 The file etc/DEBUG describes how to debug Emacs bugs.
267
268
269 \f
270 This file is part of GNU Emacs.
271
272 GNU Emacs is free software: you can redistribute it and/or modify
273 it under the terms of the GNU General Public License as published by
274 the Free Software Foundation, either version 3 of the License, or
275 (at your option) any later version.
276
277 GNU Emacs is distributed in the hope that it will be useful,
278 but WITHOUT ANY WARRANTY; without even the implied warranty of
279 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
280 GNU General Public License for more details.
281
282 You should have received a copy of the GNU General Public License
283 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
284 \f
285 Local variables:
286 mode: outline
287 paragraph-separate: "[ \f]*$"
288 end: