CONTRIBUTE 14 KB

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