Merge branch 'master' into comment-cache
[emacs.git] / CONTRIBUTE
blob8aba424b744923372b5cf661623d23ce3225f7a4
1 * How developers contribute to GNU Emacs
3 Here is how software developers can contribute to Emacs.  (Non-developers: see
4 http://www.gnu.org/software/emacs/manual/html_node/emacs/Contributing.html
5 or run the shell command 'info "(emacs)Contributing"'.)
7 ** The Emacs repository
9 Emacs development uses Git on Savannah for its main repository.
10 Briefly, the following shell commands build and run Emacs from scratch:
12         git config --global user.name 'Your Name'
13         git config --global user.email 'your.name@example.com'
14         git config --global transfer.fsckObjects true
15         git clone git://git.sv.gnu.org/emacs.git
16         cd emacs
17         ./autogen.sh
18         ./configure
19         make
20         src/emacs
22 For more details, see
23 http://www.emacswiki.org/emacs/GitQuickStartForEmacsDevs and
24 http://www.emacswiki.org/emacs/GitForEmacsDevs or see the file
25 admin/notes/git-workflow.
27 ** Getting involved with development
29 You can subscribe to the emacs-devel@gnu.org mailing list, paying
30 attention to postings with subject lines containing "emacs-announce",
31 as these discuss important events like feature freezes.  See
32 http://lists.gnu.org/mailman/listinfo/emacs-devel for mailing list
33 instructions and archives.  You can develop and commit changes in your
34 own copy of the repository, and discuss proposed changes on the
35 mailing list.  Frequent contributors to Emacs can request write access
36 there.
38 ** Committing changes by others
40 If committing changes written by someone else, commit in their name,
41 not yours.  You can use 'git commit --author="AUTHOR"' to specify a
42 change's author.
44 ** Commit messages
46 Ordinarily, a change you commit should contain a log entry in its
47 commit message and should not touch the repository's ChangeLog files.
48 Here is an example commit message (indented):
50         Deactivate shifted region
52         Do not silently extend a region that is not highlighted;
53         this can happen after a shift (Bug#19003).
54         * doc/emacs/mark.texi (Shift Selection): Document the change.
55         * lisp/window.el (handle-select-window):
56         * src/frame.c (Fhandle_switch_frame, Fselected_frame):
57         Deactivate the mark.
59 Occasionally, commit messages are collected and prepended to a
60 ChangeLog file, where they can be corrected.  It saves time to get
61 them right the first time, so here are guidelines for formatting them:
63 - Start with a single unindented summary line explaining the change;
64   do not end this line with a period.  If that line starts with a
65   semicolon and a space "; ", the commit message will be ignored when
66   generating the ChangeLog file.  Use this for minor commits that do
67   not need separate ChangeLog entries, such as changes in etc/NEWS.
69 - After the summary line, there should be an empty line, then
70   unindented ChangeLog entries.
72 - Limit lines in commit messages to 78 characters, unless they consist
73   of a single word of at most 140 characters; this is enforced by a
74   commit hook.  It's nicer to limit the summary line to 50 characters;
75   this isn't enforced.  If the change can't be summarized so briefly,
76   add a paragraph after the empty line and before the individual file
77   descriptions.
79 - If only a single file is changed, the summary line can be the normal
80   file first line (starting with the asterisk).  Then there is no
81   individual files section.
83 - If the commit has more than one author, the commit message should
84   contain separate lines to mention the other authors, like the
85   following:
87         Co-authored-by: Joe Schmoe <j.schmoe@example.org>
89 - If the commit is a tiny change that is exempt from copyright paperwork,
90   the commit message should contain a separate line like the following:
92         Copyright-paperwork-exempt: yes
94 - The commit message should contain "Bug#NNNNN" if it is related to
95   bug number NNNNN in the debbugs database.  This string is often
96   parenthesized, as in "(Bug#19003)".
98 - Commit messages should contain only printable UTF-8 characters.
100 - Commit messages should not contain the "Signed-off-by:" lines that
101   are used in some other projects.
103 - Any lines of the commit message that start with "; " are omitted
104   from the generated ChangeLog.
106 - Explaining the rationale for a design choice is best done in comments
107   in the source code.  However, sometimes it is useful to describe just
108   the rationale for a change; that can be done in the commit message
109   between the summary line and the file entries.
111 - Emacs generally follows the GNU coding standards for ChangeLogs: see
112   http://www.gnu.org/prep/standards/html_node/Change-Logs.html
113   or run 'info "(standards)Change Logs"'.  One exception is that
114   commits still sometimes quote `like-this' (as the standards used to
115   recommend) rather than 'like-this' or ‘like this’ (as they do now),
116   as `...' is so widely used elsewhere in Emacs.
118 - Some commenting rules in the GNU coding standards also apply
119   to ChangeLog entries: they must be in English, and be complete
120   sentences starting with a capital and ending with a period (except
121   the summary line should not end in a period).  See
122   http://www.gnu.org/prep/standards/html_node/Comments.html
123   or run 'info "(standards)Comments"'.
125   They are preserved indefinitely, and have a reasonable chance of
126   being read in the future, so it's better that they have good
127   presentation.
129 - Use the present tense; describe "what the change does", not "what
130   the change did".
132 - Preferred form for several entries with the same content:
134         * lisp/help.el (view-lossage):
135         * lisp/kmacro.el (kmacro-edit-lossage):
136         * lisp/edmacro.el (edit-kbd-macro): Fix docstring, lossage is now 300.
138   (Rather than anything involving "ditto" and suchlike.)
140 - There is no standard or recommended way to identify revisions in
141   ChangeLog entries.  Using Git SHA1 values limits the usability of
142   the references to Git, and will become much less useful if Emacs
143   switches to a different VCS.  So we recommend against that.
145   One way to identify revisions is by quoting their summary line.
146   Another is with an action stamp - an RFC3339 date followed by !
147   followed by the committer's email - for example,
148   "2014-01-16T05:43:35Z!esr@thyrsus.com".  Often, "my previous commit"
149   will suffice.
151 - There is no need to mention files such as NEWS and MAINTAINERS, or
152   to indicate regeneration of files such as 'lib/gnulib.mk', in the
153   ChangeLog entry.  "There is no need" means you don't have to, but
154   you can if you want to.
156 ** Generating ChangeLog entries
158 - You can use Emacs functions to write ChangeLog entries; see
159   http://www.gnu.org/software/emacs/manual/html_node/emacs/Change-Log-Commands.html
160   or run 'info "(emacs)Change Log Commands"'.
162 - If you use Emacs VC, one way to format ChangeLog entries is to create
163   a top-level ChangeLog file manually, and update it with 'C-x 4 a' as
164   usual.  Do not register the ChangeLog file under git; instead, use
165   'C-c C-a' to insert its contents into into your *vc-log* buffer.
166   Or if 'log-edit-hook' includes 'log-edit-insert-changelog' (which it
167   does by default), they will be filled in for you automatically.
169 - Alternatively, you can use the vc-dwim command to maintain commit
170   messages.  When you create a source directory, run the shell command
171   'git-changelog-symlink-init' to create a symbolic link from
172   ChangeLog to .git/c/ChangeLog.  Edit this ChangeLog via its symlink
173   with Emacs commands like 'C-x 4 a', and commit the change using the
174   shell command 'vc-dwim --commit'.  Type 'vc-dwim --help' for more.
176 ** Branches
178 Future development normally takes place on the master branch.
179 Sometimes specialized features are developed on other branches before
180 possibly being merged to the master.  Release branches are named
181 "emacs-NN" where NN is the major version number, and are mainly
182 intended for more-conservative changes such as bug fixes.  Typically,
183 collective development is active on the master branch and possibly on
184 the current release branch.  Periodically, the current release branch
185 is merged into the master, using the gitmerge function described in
186 admin/notes/git-workflow.
188 If you are fixing a bug that exists in the current release, be sure to
189 commit it to the release branch; it will be merged to the master
190 branch later by the gitmerge function.
192 Documentation fixes (in doc strings, in manuals, and in comments)
193 should always go to the release branch, if the documentation to be
194 fixed exists and is relevant to the release-branch codebase.  Doc
195 fixes are always considered "safe" -- even when a release branch is in
196 feature freeze, it can still receive doc fixes.
198 When you know that the change will be difficult to merge to the
199 master (e.g., because the code on master has changed a lot), you can
200 apply the change to both master and branch yourself.  It could also
201 happen that a change is cherry-picked from master to the release
202 branch, and so doesn't need to be merged back.  In these cases,
203 say in the release branch commit message that there is no need to merge
204 the commit to master, by starting the commit message with "Backport:".
205 The gitmerge function excludes these commits from the merge to the master.
207 Some changes should not be merged to master at all, for whatever
208 reasons.  These should be marked by including something like "Do not
209 merge to master" or anything that matches gitmerge-skip-regexp (see
210 admin/gitmerge.el) in the commit message.
212 ** Other process information
214 ** Emacs Mailing lists.
216 Discussion about Emacs development takes place on emacs-devel@gnu.org.
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 http://debbugs.gnu.org tracker.
222 The Savannah info page http://savannah.gnu.org/mail/?group=emacs
223 describes how to subscribe to the mailing lists, or see the list
224 archives.
226 To email a patch you can use a shell command like 'git format-patch -1'
227 to create a file, and then attach the file to your email.  This nicely
228 packages the patch's commit message and changes.  To send just one
229 such patch without additional remarks, you can use a command like
230 'git send-email --to=bug-gnu-emacs@gnu.org 0001-DESCRIPTION.patch'.
232 ** Issue tracker (a.k.a. "bug tracker")
234 The Emacs issue tracker at http://debbugs.gnu.org lets you view bug
235 reports and search the database for bugs matching several criteria.
236 Messages posted to the bug-gnu-emacs@gnu.org mailing list, mentioned
237 above, are recorded by the tracker with the corresponding bugs/issues.
239 GNU ELPA has a 'debbugs' package that allows accessing the tracker
240 database from Emacs.
242 Bugs needs regular attention.  A large backlog of bugs is
243 disheartening to the developers, and a culture of ignoring bugs is
244 harmful to users, who expect software that works.  Bugs have to be
245 regularly looked at and acted upon.  Not all bugs are critical, but at
246 the least, each bug needs to be regularly re-reviewed to make sure it
247 is still reproducible.
249 The process of going through old or new bugs and acting on them is
250 called bug triage.  This process is described in the file
251 admin/notes/bug-triage.
253 ** Documenting your changes
255 Any change that matters to end-users should have an entry in etc/NEWS.
257 Doc-strings should be updated together with the code.
259 Think about whether your change requires updating the manuals.  If you
260 know it does not, mark the NEWS entry with "---".  If you know
261 that *all* the necessary documentation updates have been made, mark
262 the entry with "+++".  Otherwise do not mark it.
264 For more specific tips on Emacs's doc style, see
265 http://www.gnu.org/software/emacs/manual/html_node/elisp/Documentation-Tips.html
266 Use 'checkdoc' to check for documentation errors before submitting a patch.
268 ** Testing your changes
270 Please test your changes before committing them or sending them to the
271 list.  If possible, add a new test along with any bug fix or new
272 functionality you commit (of course, some changes cannot be easily
273 tested).
275 Emacs uses ERT, Emacs Lisp Regression Testing, for testing.  See
276 http://www.gnu.org/software/emacs/manual/html_node/ert/
277 or run 'info "(ert)"' for for more information on writing and running
278 tests.
280 If your test lasts longer than some few seconds, mark it in its
281 'ert-deftest' definition with ":tags '(:expensive-test)".
283 To run tests on the entire Emacs tree, run "make check" from the
284 top-level directory.  Most tests are in the directory "test/".  From
285 the "test/" directory, run "make <filename>" to run the tests for
286 <filename>.el(c).  See "test/README" for more information.
288 ** Understanding Emacs internals
290 The best way to understand Emacs internals is to read the code.  Some
291 source files, such as xdisp.c, have extensive comments describing the
292 design and implementation.  The following resources may also help:
294 http://www.gnu.org/software/emacs/manual/html_node/elisp/Tips.html
295 http://www.gnu.org/software/emacs/manual/html_node/elisp/GNU-Emacs-Internals.html
297 or run 'info "(elisp)Tips"' or 'info "(elisp)GNU Emacs Internals"'.
299 The file etc/DEBUG describes how to debug Emacs bugs.
301 *** Non-ASCII characters in Emacs files
303 If you introduce non-ASCII characters into Emacs source files, use the
304 UTF-8 encoding unless it cannot do the job for some good reason.
305 Although it is generally a good idea to add 'coding:' cookies to
306 non-ASCII source files, cookies are not needed in UTF-8-encoded *.el
307 files intended for use only with Emacs version 24.5 and later.
309 *** Useful files in the admin/ directory
311 See all the files in admin/notes/* .  In particular, see
312 admin/notes/newfile, see admin/notes/repo.
314 The file admin/MAINTAINERS records the areas of interest of frequent
315 Emacs contributors.  If you are making changes in one of the files
316 mentioned there, it is a good idea to consult the person who expressed
317 an interest in that file, and/or get his/her feedback for the changes.
318 If you are a frequent contributor and have interest in maintaining
319 specific files, please record those interests in that file, so that
320 others could be aware of that.
322 *** git vs rename
324 Git does not explicitly represent a file renaming; it uses a percent
325 changed heuristic to deduce that a file was renamed.  So if you are
326 planning to make extensive changes to a file after renaming it (or
327 moving it to another directory), you should:
329 - Create a feature branch.
331 - Commit the rename without any changes.
333 - Make other changes.
335 - Merge the feature branch to the master branch, instead of squashing
336   the commits into one.  The commit message on this merge should
337   summarize the renames and all the changes.
341 This file is part of GNU Emacs.
343 GNU Emacs is free software: you can redistribute it and/or modify
344 it under the terms of the GNU General Public License as published by
345 the Free Software Foundation, either version 3 of the License, or
346 (at your option) any later version.
348 GNU Emacs is distributed in the hope that it will be useful,
349 but WITHOUT ANY WARRANTY; without even the implied warranty of
350 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
351 GNU General Public License for more details.
353 You should have received a copy of the GNU General Public License
354 along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
356 Local variables:
357 mode: outline
358 paragraph-separate: "[  \f]*$"
359 coding: utf-8
360 end: