Updated git_doc to git 1.8
[TortoiseGit.git] / doc / source / en / TortoiseGit / git_doc / gitworkflows.xml
blob5a286491aa418c2439f7e9f8738503f18d9f5a62
1 <?xml version="1.0" encoding="UTF-8"?>\r
2 <!DOCTYPE sect2 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">\r
3 \r
4 <sect2 lang="en" id="gitworkflows(7)">\r
5     <title>gitworkflows(7)</title>\r
6 <indexterm>\r
7 <primary>gitworkflows(7)</primary>\r
8 </indexterm>\r
9 <simplesect id="gitworkflows(7)__name">\r
10 <title>NAME</title>\r
11 <simpara>gitworkflows - An overview of recommended workflows with git</simpara>\r
12 </simplesect>\r
13 <simplesect id="gitworkflows(7)__synopsis">\r
14 <title>SYNOPSIS</title>\r
15 <blockquote>\r
16 <literallayout>git *</literallayout>\r
17 </blockquote>\r
18 </simplesect>\r
19 <simplesect id="gitworkflows(7)__description">\r
20 <title>DESCRIPTION</title>\r
21 <simpara>This document attempts to write down and motivate some of the workflow\r
22 elements used for <emphasis>git.git</emphasis> itself.  Many ideas apply in general,\r
23 though the full workflow is rarely required for smaller projects with\r
24 fewer people involved.</simpara>\r
25 <simpara>We formulate a set of <emphasis>rules</emphasis> for quick reference, while the prose\r
26 tries to motivate each of them.  Do not always take them literally;\r
27 you should value good reasons for your actions higher than manpages\r
28 such as this one.</simpara>\r
29 </simplesect>\r
30 <simplesect id="gitworkflows(7)__separate_changes">\r
31 <title>SEPARATE CHANGES</title>\r
32 <simpara>As a general rule, you should try to split your changes into small\r
33 logical steps, and commit each of them.  They should be consistent,\r
34 working independently of any later commits, pass the test suite, etc.\r
35 This makes the review process much easier, and the history much more\r
36 useful for later inspection and analysis, for example with\r
37 <xref linkend="git-blame(1)" /> and <xref linkend="git-bisect(1)" />.</simpara>\r
38 <simpara>To achieve this, try to split your work into small steps from the very\r
39 beginning. It is always easier to squash a few commits together than\r
40 to split one big commit into several.  Don't be afraid of making too\r
41 small or imperfect steps along the way. You can always go back later\r
42 and edit the commits with <emphasis>git rebase --interactive</emphasis> before you\r
43 publish them.  You can use <emphasis>git stash save --keep-index</emphasis> to run the\r
44 test suite independent of other uncommitted changes; see the EXAMPLES\r
45 section of <xref linkend="git-stash(1)" />.</simpara>\r
46 </simplesect>\r
47 <simplesect id="gitworkflows(7)__managing_branches">\r
48 <title>MANAGING BRANCHES</title>\r
49 <simpara>There are two main tools that can be used to include changes from one\r
50 branch on another: <xref linkend="git-merge(1)" /> and\r
51 <xref linkend="git-cherry-pick(1)" />.</simpara>\r
52 <simpara>Merges have many advantages, so we try to solve as many problems as\r
53 possible with merges alone.  Cherry-picking is still occasionally\r
54 useful; see "Merging upwards" below for an example.</simpara>\r
55 <simpara>Most importantly, merging works at the branch level, while\r
56 cherry-picking works at the commit level.  This means that a merge can\r
57 carry over the changes from 1, 10, or 1000 commits with equal ease,\r
58 which in turn means the workflow scales much better to a large number\r
59 of contributors (and contributions).  Merges are also easier to\r
60 understand because a merge commit is a "promise" that all changes from\r
61 all its parents are now included.</simpara>\r
62 <simpara>There is a tradeoff of course: merges require a more careful branch\r
63 management.  The following subsections discuss the important points.</simpara>\r
64 <section id="gitworkflows(7)__graduation">\r
65 <title>Graduation</title>\r
66 <simpara>As a given feature goes from experimental to stable, it also\r
67 "graduates" between the corresponding branches of the software.\r
68 <emphasis>git.git</emphasis> uses the following <emphasis>integration branches</emphasis>:</simpara>\r
69 <itemizedlist>\r
70 <listitem>\r
71 <simpara>\r
72 <emphasis>maint</emphasis> tracks the commits that should go into the next "maintenance\r
73   release", i.e., update of the last released stable version;\r
74 </simpara>\r
75 </listitem>\r
76 <listitem>\r
77 <simpara>\r
78 <emphasis>master</emphasis> tracks the commits that should go into the next release;\r
79 </simpara>\r
80 </listitem>\r
81 <listitem>\r
82 <simpara>\r
83 <emphasis>next</emphasis> is intended as a testing branch for topics being tested for\r
84   stability for master.\r
85 </simpara>\r
86 </listitem>\r
87 </itemizedlist>\r
88 <simpara>There is a fourth official branch that is used slightly differently:</simpara>\r
89 <itemizedlist>\r
90 <listitem>\r
91 <simpara>\r
92 <emphasis>pu</emphasis> (proposed updates) is an integration branch for things that are\r
93   not quite ready for inclusion yet (see "Integration Branches"\r
94   below).\r
95 </simpara>\r
96 </listitem>\r
97 </itemizedlist>\r
98 <simpara>Each of the four branches is usually a direct descendant of the one\r
99 above it.</simpara>\r
100 <simpara>Conceptually, the feature enters at an unstable branch (usually <emphasis>next</emphasis>\r
101 or <emphasis>pu</emphasis>), and "graduates" to <emphasis>master</emphasis> for the next release once it is\r
102 considered stable enough.</simpara>\r
103 </section>\r
104 <section id="gitworkflows(7)__merging_upwards">\r
105 <title>Merging upwards</title>\r
106 <simpara>The "downwards graduation" discussed above cannot be done by actually\r
107 merging downwards, however, since that would merge <emphasis>all</emphasis> changes on\r
108 the unstable branch into the stable one.  Hence the following:</simpara>\r
109 <example>\r
110 <title>Merge upwards</title>\r
111 <simpara>Always commit your fixes to the oldest supported branch that require\r
112 them.  Then (periodically) merge the integration branches upwards into each\r
113 other.</simpara>\r
114 </example>\r
115 <simpara>This gives a very controlled flow of fixes.  If you notice that you\r
116 have applied a fix to e.g. <emphasis>master</emphasis> that is also required in <emphasis>maint</emphasis>,\r
117 you will need to cherry-pick it (using <xref linkend="git-cherry-pick(1)" />)\r
118 downwards.  This will happen a few times and is nothing to worry about\r
119 unless you do it very frequently.</simpara>\r
120 </section>\r
121 <section id="gitworkflows(7)__topic_branches">\r
122 <title>Topic branches</title>\r
123 <simpara>Any nontrivial feature will require several patches to implement, and\r
124 may get extra bugfixes or improvements during its lifetime.</simpara>\r
125 <simpara>Committing everything directly on the integration branches leads to many\r
126 problems: Bad commits cannot be undone, so they must be reverted one\r
127 by one, which creates confusing histories and further error potential\r
128 when you forget to revert part of a group of changes.  Working in\r
129 parallel mixes up the changes, creating further confusion.</simpara>\r
130 <simpara>Use of "topic branches" solves these problems.  The name is pretty\r
131 self explanatory, with a caveat that comes from the "merge upwards"\r
132 rule above:</simpara>\r
133 <example>\r
134 <title>Topic branches</title>\r
135 <simpara>Make a side branch for every topic (feature, bugfix, &#8230;). Fork it off\r
136 at the oldest integration branch that you will eventually want to merge it\r
137 into.</simpara>\r
138 </example>\r
139 <simpara>Many things can then be done very naturally:</simpara>\r
140 <itemizedlist>\r
141 <listitem>\r
142 <simpara>\r
143 To get the feature/bugfix into an integration branch, simply merge\r
144   it.  If the topic has evolved further in the meantime, merge again.\r
145   (Note that you do not necessarily have to merge it to the oldest\r
146   integration branch first.  For example, you can first merge a bugfix\r
147   to <emphasis>next</emphasis>, give it some testing time, and merge to <emphasis>maint</emphasis> when you\r
148   know it is stable.)\r
149 </simpara>\r
150 </listitem>\r
151 <listitem>\r
152 <simpara>\r
153 If you find you need new features from the branch <emphasis>other</emphasis> to continue\r
154   working on your topic, merge <emphasis>other</emphasis> to <emphasis>topic</emphasis>.  (However, do not\r
155   do this "just habitually", see below.)\r
156 </simpara>\r
157 </listitem>\r
158 <listitem>\r
159 <simpara>\r
160 If you find you forked off the wrong branch and want to move it\r
161   "back in time", use <xref linkend="git-rebase(1)" />.\r
162 </simpara>\r
163 </listitem>\r
164 </itemizedlist>\r
165 <simpara>Note that the last point clashes with the other two: a topic that has\r
166 been merged elsewhere should not be rebased.  See the section on\r
167 RECOVERING FROM UPSTREAM REBASE in <xref linkend="git-rebase(1)" />.</simpara>\r
168 <simpara>We should point out that "habitually" (regularly for no real reason)\r
169 merging an integration branch into your topics -- and by extension,\r
170 merging anything upstream into anything downstream on a regular basis\r
171 -- is frowned upon:</simpara>\r
172 <example>\r
173 <title>Merge to downstream only at well-defined points</title>\r
174 <simpara>Do not merge to downstream except with a good reason: upstream API\r
175 changes affect your branch; your branch no longer merges to upstream\r
176 cleanly; etc.</simpara>\r
177 </example>\r
178 <simpara>Otherwise, the topic that was merged to suddenly contains more than a\r
179 single (well-separated) change.  The many resulting small merges will\r
180 greatly clutter up history.  Anyone who later investigates the history\r
181 of a file will have to find out whether that merge affected the topic\r
182 in development.  An upstream might even inadvertently be merged into a\r
183 "more stable" branch.  And so on.</simpara>\r
184 </section>\r
185 <section id="gitworkflows(7)__throw_away_integration">\r
186 <title>Throw-away integration</title>\r
187 <simpara>If you followed the last paragraph, you will now have many small topic\r
188 branches, and occasionally wonder how they interact.  Perhaps the\r
189 result of merging them does not even work?  But on the other hand, we\r
190 want to avoid merging them anywhere "stable" because such merges\r
191 cannot easily be undone.</simpara>\r
192 <simpara>The solution, of course, is to make a merge that we can undo: merge\r
193 into a throw-away branch.</simpara>\r
194 <example>\r
195 <title>Throw-away integration branches</title>\r
196 <simpara>To test the interaction of several topics, merge them into a\r
197 throw-away branch.  You must never base any work on such a branch!</simpara>\r
198 </example>\r
199 <simpara>If you make it (very) clear that this branch is going to be deleted\r
200 right after the testing, you can even publish this branch, for example\r
201 to give the testers a chance to work with it, or other developers a\r
202 chance to see if their in-progress work will be compatible.  <emphasis>git.git</emphasis>\r
203 has such an official throw-away integration branch called <emphasis>pu</emphasis>.</simpara>\r
204 </section>\r
205 <section id="gitworkflows(7)__branch_management_for_a_release">\r
206 <title>Branch management for a release</title>\r
207 <simpara>Assuming you are using the merge approach discussed above, when you\r
208 are releasing your project you will need to do some additional branch\r
209 management work.</simpara>\r
210 <simpara>A feature release is created from the <emphasis>master</emphasis> branch, since <emphasis>master</emphasis>\r
211 tracks the commits that should go into the next feature release.</simpara>\r
212 <simpara>The <emphasis>master</emphasis> branch is supposed to be a superset of <emphasis>maint</emphasis>. If this\r
213 condition does not hold, then <emphasis>maint</emphasis> contains some commits that\r
214 are not included on <emphasis>master</emphasis>. The fixes represented by those commits\r
215 will therefore not be included in your feature release.</simpara>\r
216 <simpara>To verify that <emphasis>master</emphasis> is indeed a superset of <emphasis>maint</emphasis>, use git log:</simpara>\r
217 <example>\r
218 <title>Verify <emphasis>master</emphasis> is a superset of <emphasis>maint</emphasis></title>\r
219 <simpara><emphasis>git log master..maint</emphasis></simpara>\r
220 </example>\r
221 <simpara>This command should not list any commits.  Otherwise, check out\r
222 <emphasis>master</emphasis> and merge <emphasis>maint</emphasis> into it.</simpara>\r
223 <simpara>Now you can proceed with the creation of the feature release. Apply a\r
224 tag to the tip of <emphasis>master</emphasis> indicating the release version:</simpara>\r
225 <example>\r
226 <title>Release tagging</title>\r
227 <simpara><emphasis>git tag -s -m "GIT X.Y.Z" vX.Y.Z master</emphasis></simpara>\r
228 </example>\r
229 <simpara>You need to push the new tag to a public git server (see\r
230 "DISTRIBUTED WORKFLOWS" below). This makes the tag available to\r
231 others tracking your project. The push could also trigger a\r
232 post-update hook to perform release-related items such as building\r
233 release tarballs and preformatted documentation pages.</simpara>\r
234 <simpara>Similarly, for a maintenance release, <emphasis>maint</emphasis> is tracking the commits\r
235 to be released. Therefore, in the steps above simply tag and push\r
236 <emphasis>maint</emphasis> rather than <emphasis>master</emphasis>.</simpara>\r
237 </section>\r
238 <section id="gitworkflows(7)__maintenance_branch_management_after_a_feature_release">\r
239 <title>Maintenance branch management after a feature release</title>\r
240 <simpara>After a feature release, you need to manage your maintenance branches.</simpara>\r
241 <simpara>First, if you wish to continue to release maintenance fixes for the\r
242 feature release made before the recent one, then you must create\r
243 another branch to track commits for that previous release.</simpara>\r
244 <simpara>To do this, the current maintenance branch is copied to another branch\r
245 named with the previous release version number (e.g. maint-X.Y.(Z-1)\r
246 where X.Y.Z is the current release).</simpara>\r
247 <example>\r
248 <title>Copy maint</title>\r
249 <simpara><emphasis>git branch maint-X.Y.(Z-1) maint</emphasis></simpara>\r
250 </example>\r
251 <simpara>The <emphasis>maint</emphasis> branch should now be fast-forwarded to the newly released\r
252 code so that maintenance fixes can be tracked for the current release:</simpara>\r
253 <example>\r
254 <title>Update maint to new release</title>\r
255 <itemizedlist>\r
256 <listitem>\r
257 <simpara>\r
258 <emphasis>git checkout maint</emphasis>\r
259 </simpara>\r
260 </listitem>\r
261 <listitem>\r
262 <simpara>\r
263 <emphasis>git merge --ff-only master</emphasis>\r
264 </simpara>\r
265 </listitem>\r
266 </itemizedlist>\r
267 </example>\r
268 <simpara>If the merge fails because it is not a fast-forward, then it is\r
269 possible some fixes on <emphasis>maint</emphasis> were missed in the feature release.\r
270 This will not happen if the content of the branches was verified as\r
271 described in the previous section.</simpara>\r
272 </section>\r
273 <section id="gitworkflows(7)__branch_management_for_next_and_pu_after_a_feature_release">\r
274 <title>Branch management for next and pu after a feature release</title>\r
275 <simpara>After a feature release, the integration branch <emphasis>next</emphasis> may optionally be\r
276 rewound and rebuilt from the tip of <emphasis>master</emphasis> using the surviving\r
277 topics on <emphasis>next</emphasis>:</simpara>\r
278 <example>\r
279 <title>Rewind and rebuild next</title>\r
280 <itemizedlist>\r
281 <listitem>\r
282 <simpara>\r
283 <emphasis>git checkout next</emphasis>\r
284 </simpara>\r
285 </listitem>\r
286 <listitem>\r
287 <simpara>\r
288 <emphasis>git reset --hard master</emphasis>\r
289 </simpara>\r
290 </listitem>\r
291 <listitem>\r
292 <simpara>\r
293 <emphasis>git merge ai/topic_in_next1</emphasis>\r
294 </simpara>\r
295 </listitem>\r
296 <listitem>\r
297 <simpara>\r
298 <emphasis>git merge ai/topic_in_next2</emphasis>\r
299 </simpara>\r
300 </listitem>\r
301 <listitem>\r
302 <simpara>\r
303 &#8230;\r
304 </simpara>\r
305 </listitem>\r
306 </itemizedlist>\r
307 </example>\r
308 <simpara>The advantage of doing this is that the history of <emphasis>next</emphasis> will be\r
309 clean. For example, some topics merged into <emphasis>next</emphasis> may have initially\r
310 looked promising, but were later found to be undesirable or premature.\r
311 In such a case, the topic is reverted out of <emphasis>next</emphasis> but the fact\r
312 remains in the history that it was once merged and reverted. By\r
313 recreating <emphasis>next</emphasis>, you give another incarnation of such topics a clean\r
314 slate to retry, and a feature release is a good point in history to do\r
315 so.</simpara>\r
316 <simpara>If you do this, then you should make a public announcement indicating\r
317 that <emphasis>next</emphasis> was rewound and rebuilt.</simpara>\r
318 <simpara>The same rewind and rebuild process may be followed for <emphasis>pu</emphasis>. A public\r
319 announcement is not necessary since <emphasis>pu</emphasis> is a throw-away branch, as\r
320 described above.</simpara>\r
321 </section>\r
322 </simplesect>\r
323 <simplesect id="gitworkflows(7)__distributed_workflows">\r
324 <title>DISTRIBUTED WORKFLOWS</title>\r
325 <simpara>After the last section, you should know how to manage topics.  In\r
326 general, you will not be the only person working on the project, so\r
327 you will have to share your work.</simpara>\r
328 <simpara>Roughly speaking, there are two important workflows: merge and patch.\r
329 The important difference is that the merge workflow can propagate full\r
330 history, including merges, while patches cannot.  Both workflows can\r
331 be used in parallel: in <emphasis>git.git</emphasis>, only subsystem maintainers use\r
332 the merge workflow, while everyone else sends patches.</simpara>\r
333 <simpara>Note that the maintainer(s) may impose restrictions, such as\r
334 "Signed-off-by" requirements, that all commits/patches submitted for\r
335 inclusion must adhere to.  Consult your project's documentation for\r
336 more information.</simpara>\r
337 <section id="gitworkflows(7)__merge_workflow">\r
338 <title>Merge workflow</title>\r
339 <simpara>The merge workflow works by copying branches between upstream and\r
340 downstream.  Upstream can merge contributions into the official\r
341 history; downstream base their work on the official history.</simpara>\r
342 <simpara>There are three main tools that can be used for this:</simpara>\r
343 <itemizedlist>\r
344 <listitem>\r
345 <simpara>\r
346 <xref linkend="git-push(1)" /> copies your branches to a remote repository,\r
347   usually to one that can be read by all involved parties;\r
348 </simpara>\r
349 </listitem>\r
350 <listitem>\r
351 <simpara>\r
352 <xref linkend="git-fetch(1)" /> that copies remote branches to your repository;\r
353   and\r
354 </simpara>\r
355 </listitem>\r
356 <listitem>\r
357 <simpara>\r
358 <xref linkend="git-pull(1)" /> that does fetch and merge in one go.\r
359 </simpara>\r
360 </listitem>\r
361 </itemizedlist>\r
362 <simpara>Note the last point.  Do <emphasis>not</emphasis> use <emphasis>git pull</emphasis> unless you actually want\r
363 to merge the remote branch.</simpara>\r
364 <simpara>Getting changes out is easy:</simpara>\r
365 <example>\r
366 <title>Push/pull: Publishing branches/topics</title>\r
367 <simpara><emphasis>git push &lt;remote&gt; &lt;branch&gt;</emphasis> and tell everyone where they can fetch\r
368 from.</simpara>\r
369 </example>\r
370 <simpara>You will still have to tell people by other means, such as mail.  (Git\r
371 provides the <xref linkend="git-request-pull(1)" /> to send preformatted pull\r
372 requests to upstream maintainers to simplify this task.)</simpara>\r
373 <simpara>If you just want to get the newest copies of the integration branches,\r
374 staying up to date is easy too:</simpara>\r
375 <example>\r
376 <title>Push/pull: Staying up to date</title>\r
377 <simpara>Use <emphasis>git fetch &lt;remote&gt;</emphasis> or <emphasis>git remote update</emphasis> to stay up to date.</simpara>\r
378 </example>\r
379 <simpara>Then simply fork your topic branches from the stable remotes as\r
380 explained earlier.</simpara>\r
381 <simpara>If you are a maintainer and would like to merge other people's topic\r
382 branches to the integration branches, they will typically send a\r
383 request to do so by mail.  Such a request looks like</simpara>\r
384 <screen>Please pull from\r
385     &lt;url&gt; &lt;branch&gt;</screen>\r
386 <simpara>In that case, <emphasis>git pull</emphasis> can do the fetch and merge in one go, as\r
387 follows.</simpara>\r
388 <example>\r
389 <title>Push/pull: Merging remote topics</title>\r
390 <simpara><emphasis>git pull &lt;url&gt; &lt;branch&gt;</emphasis></simpara>\r
391 </example>\r
392 <simpara>Occasionally, the maintainer may get merge conflicts when he tries to\r
393 pull changes from downstream.  In this case, he can ask downstream to\r
394 do the merge and resolve the conflicts themselves (perhaps they will\r
395 know better how to resolve them).  It is one of the rare cases where\r
396 downstream <emphasis>should</emphasis> merge from upstream.</simpara>\r
397 </section>\r
398 <section id="gitworkflows(7)__patch_workflow">\r
399 <title>Patch workflow</title>\r
400 <simpara>If you are a contributor that sends changes upstream in the form of\r
401 emails, you should use topic branches as usual (see above).  Then use\r
402 <xref linkend="git-format-patch(1)" /> to generate the corresponding emails\r
403 (highly recommended over manually formatting them because it makes the\r
404 maintainer's life easier).</simpara>\r
405 <example>\r
406 <title>format-patch/am: Publishing branches/topics</title>\r
407 <itemizedlist>\r
408 <listitem>\r
409 <simpara>\r
410 <emphasis>git format-patch -M upstream..topic</emphasis> to turn them into preformatted\r
411   patch files\r
412 </simpara>\r
413 </listitem>\r
414 <listitem>\r
415 <simpara>\r
416 <emphasis>git send-email --to=&lt;recipient&gt; &lt;patches&gt;</emphasis>\r
417 </simpara>\r
418 </listitem>\r
419 </itemizedlist>\r
420 </example>\r
421 <simpara>See the <xref linkend="git-format-patch(1)" /> and <xref linkend="git-send-email(1)" />\r
422 manpages for further usage notes.</simpara>\r
423 <simpara>If the maintainer tells you that your patch no longer applies to the\r
424 current upstream, you will have to rebase your topic (you cannot use a\r
425 merge because you cannot format-patch merges):</simpara>\r
426 <example>\r
427 <title>format-patch/am: Keeping topics up to date</title>\r
428 <simpara><emphasis>git pull --rebase &lt;url&gt; &lt;branch&gt;</emphasis></simpara>\r
429 </example>\r
430 <simpara>You can then fix the conflicts during the rebase.  Presumably you have\r
431 not published your topic other than by mail, so rebasing it is not a\r
432 problem.</simpara>\r
433 <simpara>If you receive such a patch series (as maintainer, or perhaps as a\r
434 reader of the mailing list it was sent to), save the mails to files,\r
435 create a new topic branch and use <emphasis>git am</emphasis> to import the commits:</simpara>\r
436 <example>\r
437 <title>format-patch/am: Importing patches</title>\r
438 <simpara><emphasis>git am &lt; patch</emphasis></simpara>\r
439 </example>\r
440 <simpara>One feature worth pointing out is the three-way merge, which can help\r
441 if you get conflicts: <emphasis>git am -3</emphasis> will use index information contained\r
442 in patches to figure out the merge base.  See <xref linkend="git-am(1)" /> for\r
443 other options.</simpara>\r
444 </section>\r
445 </simplesect>\r
446 <simplesect id="gitworkflows(7)__see_also">\r
447 <title>SEE ALSO</title>\r
448 <simpara><xref linkend="gittutorial(7)" />,\r
449 <xref linkend="git-push(1)" />,\r
450 <xref linkend="git-pull(1)" />,\r
451 <xref linkend="git-merge(1)" />,\r
452 <xref linkend="git-rebase(1)" />,\r
453 <xref linkend="git-format-patch(1)" />,\r
454 <xref linkend="git-send-email(1)" />,\r
455 <xref linkend="git-am(1)" /></simpara>\r
456 </simplesect>\r
457 <simplesect id="gitworkflows(7)__git">\r
458 <title>GIT</title>\r
459 <simpara>Part of the <xref linkend="git(1)" /> suite.</simpara>\r
460 </simplesect>\r
461 </sect2>\r