What's cooking (2011/11 #02)
[alt-git.git] / MaintNotes
blobb39853dcc055fdaaf8984a6b59024e09bfc3c9e6
1 Subject: A note from the maintainer
3 Welcome to git development community.
5 This message is written by the maintainer and talks about how Git
6 project is managed, and how you can work with it.
8 * Mailing list and the community
10 The development is primarily done on the Git mailing list. Help
11 requests, feature proposals, bug reports and patches should be sent to
12 the list address <git@vger.kernel.org>.  You don't have to be
13 subscribed to send messages.  The convention on the list is to keep
14 everybody involved on Cc:, so it is unnecessary to say "Please Cc: me,
15 I am not subscribed".
17 Before sending patches, please read Documentation/SubmittingPatches
18 and Documentation/CodingGuidelines to familiarize yourself with the
19 project convention.
21 If you sent a patch and you did not hear any response from anybody for
22 several days, it could be that your patch was totally uninteresting,
23 but it also is possible that it was simply lost in the noise.  Please
24 do not hesitate to send a reminder message in such a case.  Messages
25 getting lost in the noise is a sign that people involved don't have
26 enough mental/time bandwidth to process them right at the moment, and
27 it often helps to wait until the list traffic becomes calmer before
28 sending such a reminder.
30 The list archive is available at a few public sites:
32         http://news.gmane.org/gmane.comp.version-control.git/
33         http://marc.theaimsgroup.com/?l=git
34         http://www.spinics.net/lists/git/
36 Some people seem to prefer to read it over NNTP:
38         nntp://news.gmane.org/gmane.comp.version-control.git
40 When you point at a message in a mailing list archive, using
41 gmane is often the easiest to follow by readers, like this:
43         http://thread.gmane.org/gmane.comp.version-control.git/27/focus=217
45 as it also allows people who subscribe to the mailing list as gmane
46 newsgroup to "jump to" the article.
48 Some members of the development community can sometimes also be found
49 on the #git IRC channel on Freenode.  Its log is available at:
51         http://colabti.org/irclogger/irclogger_log/git
53 * Reporting bugs
55 When you think git does not behave as you expect, please do not stop your
56 bug report with just "git does not work".  "I tried to do X but it did not
57 work" is not much better, neither is "I tried to do X and git did Y, which
58 is broken".  It often is that what you expect is _not_ what other people
59 expect, and chances are that what you expect is very different from what
60 people who have worked on git have expected---otherwise, the behavior
61 would have been changed to match your expectation long time ago.
63 Please remember to always state
65  - what you wanted to achieve;
67  - what you did (the version of git and the command sequence to reproduce
68    the behavior);
70  - what you saw happen;
72  - what you expected to see; and
74  - how the last two are different.
76 See http://www.chiark.greenend.org.uk/~sgtatham/bugs.html for further
77 hints.
79 * Repositories, branches and documentation.
81 My public git.git repository is at:
83         git://git.kernel.org/pub/scm/git/git.git/
84         git://repo.or.cz/alt-git.git
85         https://github.com/git/git
86         https://code.google.com/p/git-core/
88 There are a few other mirrors I push into at sourceforge and github as
89 well.
91 Their gitweb interfaces are found at:
93         http://git.kernel.org/?p=git/git.git
94         http://repo.or.cz/w/alt-git.git
96 Preformatted documentation from the tip of the "master" branch can be
97 found in:
99         git://git.kernel.org/pub/scm/git/git-{htmldocs,manpages}.git/
100         git://repo.or.cz/git-{htmldocs,manpages}.git/
101         https://code.google.com/p/git-{htmldocs,manpages}.git/
102         https://github.com/gitster/git-{htmldocs,manpages}.git/
104 There are four branches in git.git repository that track the source tree
105 of git: "master", "maint", "next", and "pu".
107 The "master" branch is meant to contain what are very well tested and
108 ready to be used in a production setting.  Every now and then, a "feature
109 release" is cut from the tip of this branch and they typically are named
110 with three dotted decimal digits.  The last such release was 1.7.7 done on
111 Sept 30, 2011. You can expect that the tip of the "master" branch is always
112 more stable than any of the released versions.
114 Whenever a feature release is made, "maint" branch is forked off from
115 "master" at that point.  Obvious, safe and urgent fixes after a feature
116 release are applied to this branch and maintenance releases are cut from
117 it.  The maintenance releases are named with four dotted decimal, named
118 after the feature release they are updates to; the last such release was
119 1.7.7.1.  New features never go to this branch.  This branch is also
120 merged into "master" to propagate the fixes forward.
122 A new development does not usually happen on "master". When you send a
123 series of patches, after review on the mailing list, a separate topic
124 branch is forked from the tip of "master" and your patches are queued
125 there, and kept out of "master" while people test it out. The quality of
126 topic branches are judged primarily by the mailing list discussions.
128 Topic branches that are in good shape are merged to the "next" branch. In
129 general, the "next" branch always contains the tip of "master".  It might
130 not be quite rock-solid, but is expected to work more or less without major
131 breakage. The "next" branch is where new and exciting things take place. A
132 topic that is in "next" is expected to be polished to perfection before it
133 is merged to "master".
135 The "pu" (proposed updates) branch bundles all the remaining topic
136 branches. The topics on the branch are not complete, well tested, nor well
137 documented and need further work. When a topic that was in "pu" proves to
138 be in testable shape, it is merged to "next".
140 You can run "git log --first-parent master..pu" to see what topics are
141 currently in flight.  Sometimes, an idea that looked promising turns out
142 to be not so good and the topic can be dropped from "pu" in such a case.
144 The two branches "master" and "maint" are never rewound, and "next"
145 usually will not be either.  After a feature release is made from
146 "master", however, "next" will be rebuilt from the tip of "master"
147 using the topics that didn't make the cut in the feature release.
149 Note that being in "next" is not a guarantee to appear in the next
150 release, nor even in any future release.  There were cases that topics
151 needed reverting a few commits in them before graduating to "master",
152 or a topic that already was in "next" was reverted from "next" because
153 fatal flaws were found in it after it was merged.
156 * Other people's trees, trusted lieutenants and credits.
158 Documentation/SubmittingPatches outlines to whom your proposed changes
159 should be sent.  As described in contrib/README, I would delegate fixes
160 and enhancements in contrib/ area to the primary contributors of them.
162 Although the following are included in git.git repository, they have their
163 own authoritative repository and maintainers:
165  - git-gui/ comes from git-gui project, maintained by Pat Thoyts:
167         git://repo.or.cz/git-gui.git
169  - gitk-git/ comes from Paul Mackerras's gitk project:
171         git://git.kernel.org/pub/scm/gitk/gitk.git
173 I would like to thank everybody who helped to raise git into the current
174 shape.  Especially I would like to thank the git list regulars whose help
175 I have relied on and expect to continue relying on heavily:
177  - Linus Torvalds, Shawn Pearce, Johannes Schindelin, Nicolas Pitre,
178    René Scharfe, Jeff King, Jonathan Nieder, Johan Herland, Johannes
179    Sixt, Sverre Rabbelier, Michael J Gruber, Nguyễn Thái Ngọc Duy,
180    Ævar Arnfjörð Bjarmason and Thomas Rast on general design and
181    implementation issues and reviews on the mailing list.
183  - Shawn and Nicolas Pitre on pack issues.
185  - Martin Langhoff, Frank Lichtenheld and Ævar Arnfjörð Bjarmason on
186    cvsserver and cvsimport.
188  - Paul Mackerras on gitk.
190  - Eric Wong, David D. Kilzer and Sam Vilain on git-svn.
192  - Simon Hausmann and Pete Wyckoff on git-p4.
194  - Jakub Narebski, John Hawley, Petr Baudis, Luben Tuikov, Giuseppe Bilotta on
195    gitweb.
197  - J. Bruce Fields, Jonathan Nieder, Michael J Gruber and Thomas Rast on
198    documentation (and countless others for proofreading and fixing).
200  - Alexandre Julliard on Emacs integration.
202  - David Aguilar and Charles Bailey for taking good care of git-mergetool
203    (and Theodore Ts'o for creating it in the first place) and git-difftool.
205  - Johannes Schindelin, Johannes Sixt, Erik Faye-Lund, Pat Thoyts and others
206    for their effort to move things forward on the Windows front.
208  - People on non-Linux platforms for keeping their eyes on portability;
209    especially, Randal Schwartz, Theodore Ts'o, Jason Riedy, Thomas Glanzmann,
210    Brandon Casey, Jeff King, Alex Riesen and countless others.
212 * This document
214 The latest copy of this document is found in git.git repository,
215 on 'todo' branch, as MaintNotes.