README_GIT 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. -*- mode: org; fill-column:65 -*-
  2. This is the GIT repository for the development of Org-mode, an
  3. Emacs mode for organizing your life.
  4. The text below explains the rules for participating in Org-mode
  5. development.
  6. * Main rules
  7. 1. The git repository is hosted publicly at repo.or.cs. Anyone
  8. can get a clone of the current repository state using the
  9. command
  10. git clone git://repo.or.cz/org-mode.git
  11. Having a clone is sufficient to start hacking and to produce
  12. patches that can easily and consistently be applied to the
  13. main repository.
  14. 2. People who are interested to participate in the Org-mode
  15. development can do so by sending patches to
  16. emacs-orgmode@gnu.org.
  17. 3. An interested developer can also request push access to the
  18. central repository by sending his/her user-info at repo.or.cz
  19. the maintainer of Org-mode. By requesting push access, you
  20. acknowledge that you have read and agreed with the following
  21. rules:
  22. - Org-mode is part of Emacs. Therefore we need to be very
  23. conscious about changes moving into the Org-mode core.
  24. These can originate only from people who have signed the
  25. appropriate papers with the free software foundation. The
  26. files to which this applies are:
  27. - all *.el files in the root directory of the repository
  28. - org.texi, orgcard.tex, and ChangeLog.
  29. - Before making any significant changes, please explain and
  30. discuss them on the mailing list emacs-orgmode@gnu.org.
  31. This does obviously not apply to people who are maintaining
  32. their own contributions to Org-mode. Please, just use the
  33. new mechanism to make sure all changes end up in the right
  34. place.
  35. - Creating and pushing a change to the Org-mode core requires
  36. you also to provide ChangeLog entries. Just press `C-x 4 a'
  37. in each function or variable you have modified and describe
  38. the change you made in the ChangeLog buffer/file.
  39. - Among other things, Org-mode is widely appreciated because
  40. if its simplicity, cleanness and consistency. We should try
  41. hard to preserve this and I would like to ask everyone to
  42. keep this in mind when developing changes.
  43. * The CONTRIB directory
  44. The git repository contains a CONTRIB directory. This directory
  45. is the playing field for any developer, also people who have not
  46. (yet) signed the papers with the FSF. You are free to add files
  47. to this directory, implementing extensions, new link types etc.
  48. Also non-Lisp extensions like scripts to process Org-mode files
  49. in different ways are welcome in this directory. You should
  50. provide documentation with your extensions, at least in the form
  51. of commentary in the file. Please discuss your extensions on
  52. emacs-orgmode@gnu.org.
  53. The CONTRIB directory will be part of the Org-mode distribution
  54. starting with version 5.21. When that happens, people who want
  55. to use extensions will have to make sure their search path
  56. (executable or Lisp) includes the relevant directories.
  57. After files have been tested in CONTRIB and found to be generally
  58. useful, we may decide to clarify copyright questions and then
  59. move the file into the Org-mode core. This means they will be
  60. moved up to the root directory and will also eventually be added
  61. to Emacs CVS tree. The final decision about this rests with the
  62. maintainer.