Meta/MaintNotes: 2.5.1
[git.git] / MaintNotes
blobe8cdfffcf43ddadb7a166f6991cf475c2bd62510
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   git://git.sourceforge.jp/gitroot/git-core/git.git/
103   git://git-core.git.sourceforge.net/gitroot/git-core/git-core/
105 A few web interfaces are found at:
107   http://git.kernel.org/cgit/git/git.git
108   https://kernel.googlesource.com/pub/scm/git/git
109   http://repo.or.cz/w/alt-git.git
111 Preformatted documentation from the tip of the "master" branch can be
112 found in:
114   git://git.kernel.org/pub/scm/git/git-{htmldocs,manpages}.git/
115   git://repo.or.cz/git-{htmldocs,manpages}.git/
116   https://github.com/gitster/git-{htmldocs,manpages}.git/
118 Also GitHub shows the manual pages formatted in HTML (with a
119 formatting backend different from the one that is used to create the
120 above) at:
122   http://git-scm.com/docs/git
124 There are four branches in git.git repository that track the source tree
125 of git: "master", "maint", "next", and "pu".
127 The "master" branch is meant to contain what are very well tested and
128 ready to be used in a production setting.  Every now and then, a
129 "feature release" is cut from the tip of this branch.  They used to be
130 named with three dotted decimal digits (e.g. "1.8.5"), but recently we
131 switched the versioning scheme and "feature releases" are named with
132 three-dotted decimal digits that ends with ".0" (e.g. "1.9.0").
134 The last such release was 2.5.0 done on Jul 27th, 2015. You can expect
135 that the tip of the "master" branch is always more stable than any of
136 the released versions.
138 Whenever a feature release is made, "maint" branch is forked off from
139 "master" at that point.  Obvious, safe and urgent fixes after a
140 feature release are applied to this branch and maintenance releases
141 are cut from it.  The maintenance releases used to be named with four
142 dotted decimal, named after the feature release they are updates to
143 (e.g. "1.8.5.1" was the first maintenance release for "1.8.5" feature
144 release).  These days, maintenance releases are named by incrementing
145 the last digit of three-dotted decimal name (e.g. "2.5.1" is the
146 fourth maintenance release for the "2.5" series).
148 New features never go to the 'maint' branch.  This branch is also
149 merged into "master" to propagate the fixes forward as needed.
151 A new development does not usually happen on "master". When you send a
152 series of patches, after review on the mailing list, a separate topic
153 branch is forked from the tip of "master" and your patches are queued
154 there, and kept out of "master" while people test it out. The quality of
155 topic branches are judged primarily by the mailing list discussions.
157 Topic branches that are in good shape are merged to the "next" branch. In
158 general, the "next" branch always contains the tip of "master".  It might
159 not be quite rock-solid, but is expected to work more or less without major
160 breakage. The "next" branch is where new and exciting things take place. A
161 topic that is in "next" is expected to be polished to perfection before it
162 is merged to "master".  Please help this process by building, using the
163 "next" branch for your daily work, and reporting any new bugs you find to
164 the mailing list, before the breakage is merged down to the "master".
166 The "pu" (proposed updates) branch bundles all the remaining topic
167 branches the maintainer happens to have.  There is no guarantee that
168 the maintainer has enough bandwidth to pick up any and all topics that
169 are remotely promising from the list traffic, so please do not read
170 too much into a topic being on (or not on) the "pu" branch.  This
171 branch is mainly to remind the maintainer that the topics in them may
172 turn out to be interesting when they are polished, nothing more.  The
173 topics on this branch aren't usually complete, well tested, or well
174 documented and they often need further work.  When a topic that was
175 in "pu" proves to be in a testable shape, it is merged to "next".
177 You can run "git log --first-parent master..pu" to see what topics are
178 currently in flight.  Sometimes, an idea that looked promising turns out
179 to be not so good and the topic can be dropped from "pu" in such a case.
181 The two branches "master" and "maint" are never rewound, and "next"
182 usually will not be either.  After a feature release is made from
183 "master", however, "next" will be rebuilt from the tip of "master"
184 using the topics that didn't make the cut in the feature release.
186 Note that being in "next" is not a guarantee to appear in the next
187 release, nor even in any future release.  There were cases that topics
188 needed reverting a few commits in them before graduating to "master",
189 or a topic that already was in "next" was reverted from "next" because
190 fatal flaws were found in it after it was merged to "next".
193 * Other people's trees, trusted lieutenants and credits.
195 Documentation/SubmittingPatches outlines to whom your proposed changes
196 should be sent.  As described in contrib/README, I would delegate fixes
197 and enhancements in contrib/ area to the primary contributors of them.
199 Although the following are included in git.git repository, they have their
200 own authoritative repository and maintainers:
202  - git-gui/ comes from git-gui project, maintained by Pat Thoyts:
204         git://repo.or.cz/git-gui.git
206  - gitk-git/ comes from Paul Mackerras's gitk project:
208         git://ozlabs.org/~paulus/gitk
210  - po/ comes from the localization coordinator, Jiang Xin:
212         https://github.com/git-l10n/git-po/