What's cooking (2015/07 #07)
[git.git] / MaintNotes
blobb92318b1d3e661d286822ef9d4586cb68d559dce
1 Subject: A note from the maintainer
3 Welcome to the 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 may be a sign that those who can evaluate
26 your patch don't have enough mental/time bandwidth to process them
27 right at the moment, and it often helps to wait until the list traffic
28 becomes calmer before 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 For those who 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 be found on
49 the #git and #git-devel IRC channels on Freenode.  Their logs are
50 available at:
52         http://colabti.org/irclogger/irclogger_log/git
53         http://colabti.org/irclogger/irclogger_log/git-devel
55 There is a volunteer-run newsletter to serve our community ("Git Rev
56 News" http://git.github.io/rev_news/rev_news.html).
58 Git is a member project of software freedom conservancy, a non-profit
59 organization (https://sfconservancy.org/).  To reach a committee of
60 liaisons to the conservancy, contact them at <git@sfconservancy.org>.
63 * Reporting bugs
65 When you think git does not behave as you expect, please do not stop
66 your bug report with just "git does not work".  "I used git in this
67 way, but it did not work" is not much better, neither is "I used git
68 in this way, and X happend, which is broken".  It often is that git is
69 correct to cause X happen in such a case, and it is your expectation
70 that is broken. People would not know what other result Y you expected
71 to see instead of X, if you left it unsaid.
73 Please remember to always state
75  - what you wanted to achieve;
77  - what you did (the version of git and the command sequence to reproduce
78    the behavior);
80  - what you saw happen (X above);
82  - what you expected to see (Y above); and
84  - how the last two are different.
86 See http://www.chiark.greenend.org.uk/~sgtatham/bugs.html for further
87 hints.
89 If you think you found a security-sensitive issue and want to disclose
90 it to us without announcing it to wider public, please contact us at
91 our security mailing list <git-security@googlegroups.com>.
94 * Repositories, branches and documentation.
96 My public git.git repositories are at:
98   git://git.kernel.org/pub/scm/git/git.git/
99   https://kernel.googlesource.com/pub/scm/git/git
100   git://repo.or.cz/alt-git.git/
101   https://github.com/git/git/
102   https://code.google.com/p/git-core/
103   git://git.sourceforge.jp/gitroot/git-core/git.git/
104   git://git-core.git.sourceforge.net/gitroot/git-core/git-core/
106 A few web interfaces are found at:
108   http://git.kernel.org/cgit/git/git.git
109   https://kernel.googlesource.com/pub/scm/git/git
110   http://repo.or.cz/w/alt-git.git
112 Preformatted documentation from the tip of the "master" branch can be
113 found in:
115   git://git.kernel.org/pub/scm/git/git-{htmldocs,manpages}.git/
116   git://repo.or.cz/git-{htmldocs,manpages}.git/
117   https://code.google.com/p/git-{htmldocs,manpages}.git/
118   https://github.com/gitster/git-{htmldocs,manpages}.git/
120 Also GitHub shows the manual pages formatted in HTML (with a
121 formatting backend different from the one that is used to create the
122 above) at:
124   http://git-scm.com/docs/git
126 There are four branches in git.git repository that track the source tree
127 of git: "master", "maint", "next", and "pu".
129 The "master" branch is meant to contain what are very well tested and
130 ready to be used in a production setting.  Every now and then, a
131 "feature release" is cut from the tip of this branch.  They used to be
132 named with three dotted decimal digits (e.g. "1.8.5"), but recently we
133 switched the versioning scheme and "feature releases" are named with
134 three-dotted decimal digits that ends with ".0" (e.g. "1.9.0").
136 The last such release was 2.4.0 done on Apr 30th, 2015. You can expect
137 that the tip of the "master" branch is always more stable than any of
138 the released versions.
140 Whenever a feature release is made, "maint" branch is forked off from
141 "master" at that point.  Obvious, safe and urgent fixes after a
142 feature release are applied to this branch and maintenance releases
143 are cut from it.  The maintenance releases used to be named with four
144 dotted decimal, named after the feature release they are updates to
145 (e.g. "1.8.5.1" was the first maintenance release for "1.8.5" feature
146 release).  These days, maintenance releases are named by incrementing
147 the last digit of three-dotted decimal name (e.g. "2.3.4" is the
148 fourth maintenance release for the "2.3" series).
150 New features never go to the 'maint' branch.  This branch is also
151 merged into "master" to propagate the fixes forward as needed.
153 A new development does not usually happen on "master". When you send a
154 series of patches, after review on the mailing list, a separate topic
155 branch is forked from the tip of "master" and your patches are queued
156 there, and kept out of "master" while people test it out. The quality of
157 topic branches are judged primarily by the mailing list discussions.
159 Topic branches that are in good shape are merged to the "next" branch. In
160 general, the "next" branch always contains the tip of "master".  It might
161 not be quite rock-solid, but is expected to work more or less without major
162 breakage. The "next" branch is where new and exciting things take place. A
163 topic that is in "next" is expected to be polished to perfection before it
164 is merged to "master".  Please help this process by building, using the
165 "next" branch for your daily work, and reporting any new bugs you find to
166 the mailing list, before the breakage is merged down to the "master".
168 The "pu" (proposed updates) branch bundles all the remaining topic
169 branches the maintainer happens to have.  There is no guarantee that
170 the maintainer has enough bandwidth to pick up any and all topics that
171 are remotely promising from the list traffic, so please do not read
172 too much into a topic being on (or not on) the "pu" branch.  This
173 branch is mainly to remind the maintainer that the topics in them may
174 turn out to be interesting when they are polished, nothing more.  The
175 topics on this branch aren't usually complete, well tested, or well
176 documented and they often need further work.  When a topic that was
177 in "pu" proves to be in a testable shape, it is merged to "next".
179 You can run "git log --first-parent master..pu" to see what topics are
180 currently in flight.  Sometimes, an idea that looked promising turns out
181 to be not so good and the topic can be dropped from "pu" in such a case.
183 The two branches "master" and "maint" are never rewound, and "next"
184 usually will not be either.  After a feature release is made from
185 "master", however, "next" will be rebuilt from the tip of "master"
186 using the topics that didn't make the cut in the feature release.
188 Note that being in "next" is not a guarantee to appear in the next
189 release, nor even in any future release.  There were cases that topics
190 needed reverting a few commits in them before graduating to "master",
191 or a topic that already was in "next" was reverted from "next" because
192 fatal flaws were found in it after it was merged to "next".
195 * Other people's trees, trusted lieutenants and credits.
197 Documentation/SubmittingPatches outlines to whom your proposed changes
198 should be sent.  As described in contrib/README, I would delegate fixes
199 and enhancements in contrib/ area to the primary contributors of them.
201 Although the following are included in git.git repository, they have their
202 own authoritative repository and maintainers:
204  - git-gui/ comes from git-gui project, maintained by Pat Thoyts:
206         git://repo.or.cz/git-gui.git
208  - gitk-git/ comes from Paul Mackerras's gitk project:
210         git://ozlabs.org/~paulus/gitk
212  - po/ comes from the localization coordinator, Jiang Xin:
214         https://github.com/git-l10n/git-po/