CONTRIBUTE 16 KB

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