Autogenerated manpages for v2.41.0-rc0-4-g004e0
[git-manpages.git] / man7 / gitcore-tutorial.7
blob3bdd315bcee1f2f5824f37951051a69326333b5c
1 '\" t
2 .\"     Title: gitcore-tutorial
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets vsnapshot <http://docbook.sf.net/>
5 .\"      Date: 2023-05-17
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.41.0.rc0.4.g004e0f790f
8 .\"  Language: English
9 .\"
10 .TH "GITCORE\-TUTORIAL" "7" "2023\-05\-17" "Git 2\&.41\&.0\&.rc0\&.4\&.g00" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 gitcore-tutorial \- A Git core tutorial for developers
32 .SH "SYNOPSIS"
33 .sp
34 git *
35 .SH "DESCRIPTION"
36 .sp
37 This tutorial explains how to use the "core" Git commands to set up and work with a Git repository\&.
38 .sp
39 If you just need to use Git as a revision control system you may prefer to start with "A Tutorial Introduction to Git" (\fBgittutorial\fR(7)) or \m[blue]\fBthe Git User Manual\fR\m[]\&\s-2\u[1]\d\s+2\&.
40 .sp
41 However, an understanding of these low\-level tools can be helpful if you want to understand Git\(cqs internals\&.
42 .sp
43 The core Git is often called "plumbing", with the prettier user interfaces on top of it called "porcelain"\&. You may not want to use the plumbing directly very often, but it can be good to know what the plumbing does when the porcelain isn\(cqt flushing\&.
44 .sp
45 Back when this document was originally written, many porcelain commands were shell scripts\&. For simplicity, it still uses them as examples to illustrate how plumbing is fit together to form the porcelain commands\&. The source tree includes some of these scripts in contrib/examples/ for reference\&. Although these are not implemented as shell scripts anymore, the description of what the plumbing layer commands do is still valid\&.
46 .if n \{\
47 .sp
48 .\}
49 .RS 4
50 .it 1 an-trap
51 .nr an-no-space-flag 1
52 .nr an-break-flag 1
53 .br
54 .ps +1
55 \fBNote\fR
56 .ps -1
57 .br
58 .sp
59 Deeper technical details are often marked as Notes, which you can skip on your first reading\&.
60 .sp .5v
61 .RE
62 .SH "CREATING A GIT REPOSITORY"
63 .sp
64 Creating a new Git repository couldn\(cqt be easier: all Git repositories start out empty, and the only thing you need to do is find yourself a subdirectory that you want to use as a working tree \- either an empty one for a totally new project, or an existing working tree that you want to import into Git\&.
65 .sp
66 For our first example, we\(cqre going to start a totally new repository from scratch, with no pre\-existing files, and we\(cqll call it \fIgit\-tutorial\fR\&. To start up, create a subdirectory for it, change into that subdirectory, and initialize the Git infrastructure with \fIgit init\fR:
67 .sp
68 .if n \{\
69 .RS 4
70 .\}
71 .nf
72 $ mkdir git\-tutorial
73 $ cd git\-tutorial
74 $ git init
75 .fi
76 .if n \{\
77 .RE
78 .\}
79 .sp
80 .sp
81 to which Git will reply
82 .sp
83 .if n \{\
84 .RS 4
85 .\}
86 .nf
87 Initialized empty Git repository in \&.git/
88 .fi
89 .if n \{\
90 .RE
91 .\}
92 .sp
93 .sp
94 which is just Git\(cqs way of saying that you haven\(cqt been doing anything strange, and that it will have created a local \fB\&.git\fR directory setup for your new project\&. You will now have a \fB\&.git\fR directory, and you can inspect that with \fIls\fR\&. For your new empty project, it should show you three entries, among other things:
95 .sp
96 .RS 4
97 .ie n \{\
98 \h'-04'\(bu\h'+03'\c
99 .\}
100 .el \{\
101 .sp -1
102 .IP \(bu 2.3
104 a file called
105 \fBHEAD\fR, that has
106 \fBref: refs/heads/master\fR
107 in it\&. This is similar to a symbolic link and points at
108 \fBrefs/heads/master\fR
109 relative to the
110 \fBHEAD\fR
111 file\&.
113 Don\(cqt worry about the fact that the file that the
114 \fBHEAD\fR
115 link points to doesn\(cqt even exist yet \(em you haven\(cqt created the commit that will start your
116 \fBHEAD\fR
117 development branch yet\&.
120 .RS 4
121 .ie n \{\
122 \h'-04'\(bu\h'+03'\c
124 .el \{\
125 .sp -1
126 .IP \(bu 2.3
128 a subdirectory called
129 \fBobjects\fR, which will contain all the objects of your project\&. You should never have any real reason to look at the objects directly, but you might want to know that these objects are what contains all the real
130 \fIdata\fR
131 in your repository\&.
134 .RS 4
135 .ie n \{\
136 \h'-04'\(bu\h'+03'\c
138 .el \{\
139 .sp -1
140 .IP \(bu 2.3
142 a subdirectory called
143 \fBrefs\fR, which contains references to objects\&.
146 In particular, the \fBrefs\fR subdirectory will contain two other subdirectories, named \fBheads\fR and \fBtags\fR respectively\&. They do exactly what their names imply: they contain references to any number of different \fIheads\fR of development (aka \fIbranches\fR), and to any \fItags\fR that you have created to name specific versions in your repository\&.
148 One note: the special \fBmaster\fR head is the default branch, which is why the \fB\&.git/HEAD\fR file was created points to it even if it doesn\(cqt yet exist\&. Basically, the \fBHEAD\fR link is supposed to always point to the branch you are working on right now, and you always start out expecting to work on the \fBmaster\fR branch\&.
150 However, this is only a convention, and you can name your branches anything you want, and don\(cqt have to ever even \fIhave\fR a \fBmaster\fR branch\&. A number of the Git tools will assume that \fB\&.git/HEAD\fR is valid, though\&.
151 .if n \{\
154 .RS 4
155 .it 1 an-trap
156 .nr an-no-space-flag 1
157 .nr an-break-flag 1
159 .ps +1
160 \fBNote\fR
161 .ps -1
164 An \fIobject\fR is identified by its 160\-bit SHA\-1 hash, aka \fIobject name\fR, and a reference to an object is always the 40\-byte hex representation of that SHA\-1 name\&. The files in the \fBrefs\fR subdirectory are expected to contain these hex references (usually with a final \fB\en\fR at the end), and you should thus expect to see a number of 41\-byte files containing these references in these \fBrefs\fR subdirectories when you actually start populating your tree\&.
165 .sp .5v
167 .if n \{\
170 .RS 4
171 .it 1 an-trap
172 .nr an-no-space-flag 1
173 .nr an-break-flag 1
175 .ps +1
176 \fBNote\fR
177 .ps -1
180 An advanced user may want to take a look at \fBgitrepository-layout\fR(5) after finishing this tutorial\&.
181 .sp .5v
184 You have now created your first Git repository\&. Of course, since it\(cqs empty, that\(cqs not very useful, so let\(cqs start populating it with data\&.
185 .SH "POPULATING A GIT REPOSITORY"
187 We\(cqll keep this simple and stupid, so we\(cqll start off with populating a few trivial files just to get a feel for it\&.
189 Start off with just creating any random files that you want to maintain in your Git repository\&. We\(cqll start off with a few bad examples, just to get a feel for how this works:
191 .if n \{\
192 .RS 4
195 $ echo "Hello World" >hello
196 $ echo "Silly example" >example
198 .if n \{\
203 you have now created two files in your working tree (aka \fIworking directory\fR), but to actually check in your hard work, you will have to go through two steps:
205 .RS 4
206 .ie n \{\
207 \h'-04'\(bu\h'+03'\c
209 .el \{\
210 .sp -1
211 .IP \(bu 2.3
213 fill in the
214 \fIindex\fR
215 file (aka
216 \fIcache\fR) with the information about your working tree state\&.
219 .RS 4
220 .ie n \{\
221 \h'-04'\(bu\h'+03'\c
223 .el \{\
224 .sp -1
225 .IP \(bu 2.3
227 commit that index file as an object\&.
230 The first step is trivial: when you want to tell Git about any changes to your working tree, you use the \fIgit update\-index\fR program\&. That program normally just takes a list of filenames you want to update, but to avoid trivial mistakes, it refuses to add new entries to the index (or remove existing ones) unless you explicitly tell it that you\(cqre adding a new entry with the \fB\-\-add\fR flag (or removing an entry with the \fB\-\-remove\fR) flag\&.
232 So to populate the index with the two files you just created, you can do
234 .if n \{\
235 .RS 4
238 $ git update\-index \-\-add hello example
240 .if n \{\
245 and you have now told Git to track those two files\&.
247 In fact, as you did that, if you now look into your object directory, you\(cqll notice that Git will have added two new objects to the object database\&. If you did exactly the steps above, you should now be able to do
249 .if n \{\
250 .RS 4
253 $ ls \&.git/objects/??/*
255 .if n \{\
260 and see two files:
262 .if n \{\
263 .RS 4
266 \&.git/objects/55/7db03de997c86a4a028e1ebd3a1ceb225be238
267 \&.git/objects/f2/4c74a2e500f5ee1332c86b94199f52b1d1d962
269 .if n \{\
274 which correspond with the objects with names of \fB557db\&.\&.\&.\fR and \fBf24c7\&.\&.\&.\fR respectively\&.
276 If you want to, you can use \fIgit cat\-file\fR to look at those objects, but you\(cqll have to use the object name, not the filename of the object:
278 .if n \{\
279 .RS 4
282 $ git cat\-file \-t 557db03de997c86a4a028e1ebd3a1ceb225be238
284 .if n \{\
289 where the \fB\-t\fR tells \fIgit cat\-file\fR to tell you what the "type" of the object is\&. Git will tell you that you have a "blob" object (i\&.e\&., just a regular file), and you can see the contents with
291 .if n \{\
292 .RS 4
295 $ git cat\-file blob 557db03
297 .if n \{\
302 which will print out "Hello World"\&. The object \fB557db03\fR is nothing more than the contents of your file \fBhello\fR\&.
303 .if n \{\
306 .RS 4
307 .it 1 an-trap
308 .nr an-no-space-flag 1
309 .nr an-break-flag 1
311 .ps +1
312 \fBNote\fR
313 .ps -1
316 Don\(cqt confuse that object with the file \fBhello\fR itself\&. The object is literally just those specific \fBcontents\fR of the file, and however much you later change the contents in file \fBhello\fR, the object we just looked at will never change\&. Objects are immutable\&.
317 .sp .5v
319 .if n \{\
322 .RS 4
323 .it 1 an-trap
324 .nr an-no-space-flag 1
325 .nr an-break-flag 1
327 .ps +1
328 \fBNote\fR
329 .ps -1
332 The second example demonstrates that you can abbreviate the object name to only the first several hexadecimal digits in most places\&.
333 .sp .5v
336 Anyway, as we mentioned previously, you normally never actually take a look at the objects themselves, and typing long 40\-character hex names is not something you\(cqd normally want to do\&. The above digression was just to show that \fIgit update\-index\fR did something magical, and actually saved away the contents of your files into the Git object database\&.
338 Updating the index did something else too: it created a \fB\&.git/index\fR file\&. This is the index that describes your current working tree, and something you should be very aware of\&. Again, you normally never worry about the index file itself, but you should be aware of the fact that you have not actually really "checked in" your files into Git so far, you\(cqve only \fBtold\fR Git about them\&.
340 However, since Git knows about them, you can now start using some of the most basic Git commands to manipulate the files or look at their status\&.
342 In particular, let\(cqs not even check in the two files into Git yet, we\(cqll start off by adding another line to \fBhello\fR first:
344 .if n \{\
345 .RS 4
348 $ echo "It\*(Aqs a new day for git" >>hello
350 .if n \{\
355 and you can now, since you told Git about the previous state of \fBhello\fR, ask Git what has changed in the tree compared to your old index, using the \fIgit diff\-files\fR command:
357 .if n \{\
358 .RS 4
361 $ git diff\-files
363 .if n \{\
368 Oops\&. That wasn\(cqt very readable\&. It just spit out its own internal version of a \fIdiff\fR, but that internal version really just tells you that it has noticed that "hello" has been modified, and that the old object contents it had have been replaced with something else\&.
370 To make it readable, we can tell \fIgit diff\-files\fR to output the differences as a patch, using the \fB\-p\fR flag:
372 .if n \{\
373 .RS 4
376 $ git diff\-files \-p
377 diff \-\-git a/hello b/hello
378 index 557db03\&.\&.263414f 100644
379 \-\-\- a/hello
380 +++ b/hello
381 @@ \-1 +1,2 @@
382  Hello World
383 +It\*(Aqs a new day for git
385 .if n \{\
390 i\&.e\&. the diff of the change we caused by adding another line to \fBhello\fR\&.
392 In other words, \fIgit diff\-files\fR always shows us the difference between what is recorded in the index, and what is currently in the working tree\&. That\(cqs very useful\&.
394 A common shorthand for \fBgit diff\-files \-p\fR is to just write \fBgit diff\fR, which will do the same thing\&.
396 .if n \{\
397 .RS 4
400 $ git diff
401 diff \-\-git a/hello b/hello
402 index 557db03\&.\&.263414f 100644
403 \-\-\- a/hello
404 +++ b/hello
405 @@ \-1 +1,2 @@
406  Hello World
407 +It\*(Aqs a new day for git
409 .if n \{\
413 .SH "COMMITTING GIT STATE"
415 Now, we want to go to the next stage in Git, which is to take the files that Git knows about in the index, and commit them as a real tree\&. We do that in two phases: creating a \fItree\fR object, and committing that \fItree\fR object as a \fIcommit\fR object together with an explanation of what the tree was all about, along with information of how we came to that state\&.
417 Creating a tree object is trivial, and is done with \fIgit write\-tree\fR\&. There are no options or other input: \fBgit write\-tree\fR will take the current index state, and write an object that describes that whole index\&. In other words, we\(cqre now tying together all the different filenames with their contents (and their permissions), and we\(cqre creating the equivalent of a Git "directory" object:
419 .if n \{\
420 .RS 4
423 $ git write\-tree
425 .if n \{\
430 and this will just output the name of the resulting tree, in this case (if you have done exactly as I\(cqve described) it should be
432 .if n \{\
433 .RS 4
436 8988da15d077d4829fc51d8544c097def6644dbb
438 .if n \{\
443 which is another incomprehensible object name\&. Again, if you want to, you can use \fBgit cat\-file \-t 8988d\&.\&.\&.\fR to see that this time the object is not a "blob" object, but a "tree" object (you can also use \fBgit cat\-file\fR to actually output the raw object contents, but you\(cqll see mainly a binary mess, so that\(cqs less interesting)\&.
445 However \(em normally you\(cqd never use \fIgit write\-tree\fR on its own, because normally you always commit a tree into a commit object using the \fIgit commit\-tree\fR command\&. In fact, it\(cqs easier to not actually use \fIgit write\-tree\fR on its own at all, but to just pass its result in as an argument to \fIgit commit\-tree\fR\&.
447 \fIgit commit\-tree\fR normally takes several arguments \(em it wants to know what the \fIparent\fR of a commit was, but since this is the first commit ever in this new repository, and it has no parents, we only need to pass in the object name of the tree\&. However, \fIgit commit\-tree\fR also wants to get a commit message on its standard input, and it will write out the resulting object name for the commit to its standard output\&.
449 And this is where we create the \fB\&.git/refs/heads/master\fR file which is pointed at by \fBHEAD\fR\&. This file is supposed to contain the reference to the top\-of\-tree of the master branch, and since that\(cqs exactly what \fIgit commit\-tree\fR spits out, we can do this all with a sequence of simple shell commands:
451 .if n \{\
452 .RS 4
455 $ tree=$(git write\-tree)
456 $ commit=$(echo \*(AqInitial commit\*(Aq | git commit\-tree $tree)
457 $ git update\-ref HEAD $commit
459 .if n \{\
464 In this case this creates a totally new commit that is not related to anything else\&. Normally you do this only \fBonce\fR for a project ever, and all later commits will be parented on top of an earlier commit\&.
466 Again, normally you\(cqd never actually do this by hand\&. There is a helpful script called \fBgit commit\fR that will do all of this for you\&. So you could have just written \fBgit commit\fR instead, and it would have done the above magic scripting for you\&.
467 .SH "MAKING A CHANGE"
469 Remember how we did the \fIgit update\-index\fR on file \fBhello\fR and then we changed \fBhello\fR afterward, and could compare the new state of \fBhello\fR with the state we saved in the index file?
471 Further, remember how I said that \fIgit write\-tree\fR writes the contents of the \fBindex\fR file to the tree, and thus what we just committed was in fact the \fBoriginal\fR contents of the file \fBhello\fR, not the new ones\&. We did that on purpose, to show the difference between the index state, and the state in the working tree, and how they don\(cqt have to match, even when we commit things\&.
473 As before, if we do \fBgit diff\-files \-p\fR in our git\-tutorial project, we\(cqll still see the same difference we saw last time: the index file hasn\(cqt changed by the act of committing anything\&. However, now that we have committed something, we can also learn to use a new command: \fIgit diff\-index\fR\&.
475 Unlike \fIgit diff\-files\fR, which showed the difference between the index file and the working tree, \fIgit diff\-index\fR shows the differences between a committed \fBtree\fR and either the index file or the working tree\&. In other words, \fIgit diff\-index\fR wants a tree to be diffed against, and before we did the commit, we couldn\(cqt do that, because we didn\(cqt have anything to diff against\&.
477 But now we can do
479 .if n \{\
480 .RS 4
483 $ git diff\-index \-p HEAD
485 .if n \{\
490 (where \fB\-p\fR has the same meaning as it did in \fIgit diff\-files\fR), and it will show us the same difference, but for a totally different reason\&. Now we\(cqre comparing the working tree not against the index file, but against the tree we just wrote\&. It just so happens that those two are obviously the same, so we get the same result\&.
492 Again, because this is a common operation, you can also just shorthand it with
494 .if n \{\
495 .RS 4
498 $ git diff HEAD
500 .if n \{\
505 which ends up doing the above for you\&.
507 In other words, \fIgit diff\-index\fR normally compares a tree against the working tree, but when given the \fB\-\-cached\fR flag, it is told to instead compare against just the index cache contents, and ignore the current working tree state entirely\&. Since we just wrote the index file to HEAD, doing \fBgit diff\-index \-\-cached \-p HEAD\fR should thus return an empty set of differences, and that\(cqs exactly what it does\&.
508 .if n \{\
511 .RS 4
512 .it 1 an-trap
513 .nr an-no-space-flag 1
514 .nr an-break-flag 1
516 .ps +1
517 \fBNote\fR
518 .ps -1
521 \fIgit diff\-index\fR really always uses the index for its comparisons, and saying that it compares a tree against the working tree is thus not strictly accurate\&. In particular, the list of files to compare (the "meta\-data") \fBalways\fR comes from the index file, regardless of whether the \fB\-\-cached\fR flag is used or not\&. The \fB\-\-cached\fR flag really only determines whether the file \fBcontents\fR to be compared come from the working tree or not\&.
523 This is not hard to understand, as soon as you realize that Git simply never knows (or cares) about files that it is not told about explicitly\&. Git will never go \fBlooking\fR for files to compare, it expects you to tell it what the files are, and that\(cqs what the index is there for\&.
524 .sp .5v
527 However, our next step is to commit the \fBchange\fR we did, and again, to understand what\(cqs going on, keep in mind the difference between "working tree contents", "index file" and "committed tree"\&. We have changes in the working tree that we want to commit, and we always have to work through the index file, so the first thing we need to do is to update the index cache:
529 .if n \{\
530 .RS 4
533 $ git update\-index hello
535 .if n \{\
540 (note how we didn\(cqt need the \fB\-\-add\fR flag this time, since Git knew about the file already)\&.
542 Note what happens to the different \fIgit diff\-*\fR versions here\&. After we\(cqve updated \fBhello\fR in the index, \fBgit diff\-files \-p\fR now shows no differences, but \fBgit diff\-index \-p HEAD\fR still \fBdoes\fR show that the current state is different from the state we committed\&. In fact, now \fIgit diff\-index\fR shows the same difference whether we use the \fB\-\-cached\fR flag or not, since now the index is coherent with the working tree\&.
544 Now, since we\(cqve updated \fBhello\fR in the index, we can commit the new version\&. We could do it by writing the tree by hand again, and committing the tree (this time we\(cqd have to use the \fB\-p HEAD\fR flag to tell commit that the HEAD was the \fBparent\fR of the new commit, and that this wasn\(cqt an initial commit any more), but you\(cqve done that once already, so let\(cqs just use the helpful script this time:
546 .if n \{\
547 .RS 4
550 $ git commit
552 .if n \{\
557 which starts an editor for you to write the commit message and tells you a bit about what you have done\&.
559 Write whatever message you want, and all the lines that start with \fI#\fR will be pruned out, and the rest will be used as the commit message for the change\&. If you decide you don\(cqt want to commit anything after all at this point (you can continue to edit things and update the index), you can just leave an empty message\&. Otherwise \fBgit commit\fR will commit the change for you\&.
561 You\(cqve now made your first real Git commit\&. And if you\(cqre interested in looking at what \fBgit commit\fR really does, feel free to investigate: it\(cqs a few very simple shell scripts to generate the helpful (?) commit message headers, and a few one\-liners that actually do the commit itself (\fIgit commit\fR)\&.
562 .SH "INSPECTING CHANGES"
564 While creating changes is useful, it\(cqs even more useful if you can tell later what changed\&. The most useful command for this is another of the \fIdiff\fR family, namely \fIgit diff\-tree\fR\&.
566 \fIgit diff\-tree\fR can be given two arbitrary trees, and it will tell you the differences between them\&. Perhaps even more commonly, though, you can give it just a single commit object, and it will figure out the parent of that commit itself, and show the difference directly\&. Thus, to get the same diff that we\(cqve already seen several times, we can now do
568 .if n \{\
569 .RS 4
572 $ git diff\-tree \-p HEAD
574 .if n \{\
579 (again, \fB\-p\fR means to show the difference as a human\-readable patch), and it will show what the last commit (in \fBHEAD\fR) actually changed\&.
580 .if n \{\
583 .RS 4
584 .it 1 an-trap
585 .nr an-no-space-flag 1
586 .nr an-break-flag 1
588 .ps +1
589 \fBNote\fR
590 .ps -1
593 Here is an ASCII art by Jon Loeliger that illustrates how various \fIdiff\-*\fR commands compare things\&.
595 .if n \{\
596 .RS 4
599             diff\-tree
600              +\-\-\-\-+
601              |    |
602              |    |
603              V    V
604           +\-\-\-\-\-\-\-\-\-\-\-+
605           | Object DB |
606           |  Backing  |
607           |   Store   |
608           +\-\-\-\-\-\-\-\-\-\-\-+
609             ^    ^
610             |    |
611             |    |  diff\-index \-\-cached
612             |    |
613 diff\-index  |    V
614             |  +\-\-\-\-\-\-\-\-\-\-\-+
615             |  |   Index   |
616             |  |  "cache"  |
617             |  +\-\-\-\-\-\-\-\-\-\-\-+
618             |    ^
619             |    |
620             |    |  diff\-files
621             |    |
622             V    V
623           +\-\-\-\-\-\-\-\-\-\-\-+
624           |  Working  |
625           | Directory |
626           +\-\-\-\-\-\-\-\-\-\-\-+
628 .if n \{\
631 .sp .5v
634 More interestingly, you can also give \fIgit diff\-tree\fR the \fB\-\-pretty\fR flag, which tells it to also show the commit message and author and date of the commit, and you can tell it to show a whole series of diffs\&. Alternatively, you can tell it to be "silent", and not show the diffs at all, but just show the actual commit message\&.
636 In fact, together with the \fIgit rev\-list\fR program (which generates a list of revisions), \fIgit diff\-tree\fR ends up being a veritable fount of changes\&. You can emulate \fBgit log\fR, \fBgit log \-p\fR, etc\&. with a trivial script that pipes the output of \fBgit rev\-list\fR to \fBgit diff\-tree \-\-stdin\fR, which was exactly how early versions of \fBgit log\fR were implemented\&.
637 .SH "TAGGING A VERSION"
639 In Git, there are two kinds of tags, a "light" one, and an "annotated tag"\&.
641 A "light" tag is technically nothing more than a branch, except we put it in the \fB\&.git/refs/tags/\fR subdirectory instead of calling it a \fBhead\fR\&. So the simplest form of tag involves nothing more than
643 .if n \{\
644 .RS 4
647 $ git tag my\-first\-tag
649 .if n \{\
654 which just writes the current \fBHEAD\fR into the \fB\&.git/refs/tags/my\-first\-tag\fR file, after which point you can then use this symbolic name for that particular state\&. You can, for example, do
656 .if n \{\
657 .RS 4
660 $ git diff my\-first\-tag
662 .if n \{\
667 to diff your current state against that tag which at this point will obviously be an empty diff, but if you continue to develop and commit stuff, you can use your tag as an "anchor\-point" to see what has changed since you tagged it\&.
669 An "annotated tag" is actually a real Git object, and contains not only a pointer to the state you want to tag, but also a small tag name and message, along with optionally a PGP signature that says that yes, you really did that tag\&. You create these annotated tags with either the \fB\-a\fR or \fB\-s\fR flag to \fIgit tag\fR:
671 .if n \{\
672 .RS 4
675 $ git tag \-s <tagname>
677 .if n \{\
682 which will sign the current \fBHEAD\fR (but you can also give it another argument that specifies the thing to tag, e\&.g\&., you could have tagged the current \fBmybranch\fR point by using \fBgit tag <tagname> mybranch\fR)\&.
684 You normally only do signed tags for major releases or things like that, while the light\-weight tags are useful for any marking you want to do \(em any time you decide that you want to remember a certain point, just create a private tag for it, and you have a nice symbolic name for the state at that point\&.
685 .SH "COPYING REPOSITORIES"
687 Git repositories are normally totally self\-sufficient and relocatable\&. Unlike CVS, for example, there is no separate notion of "repository" and "working tree"\&. A Git repository normally \fBis\fR the working tree, with the local Git information hidden in the \fB\&.git\fR subdirectory\&. There is nothing else\&. What you see is what you got\&.
688 .if n \{\
691 .RS 4
692 .it 1 an-trap
693 .nr an-no-space-flag 1
694 .nr an-break-flag 1
696 .ps +1
697 \fBNote\fR
698 .ps -1
701 You can tell Git to split the Git internal information from the directory that it tracks, but we\(cqll ignore that for now: it\(cqs not how normal projects work, and it\(cqs really only meant for special uses\&. So the mental model of "the Git information is always tied directly to the working tree that it describes" may not be technically 100% accurate, but it\(cqs a good model for all normal use\&.
702 .sp .5v
705 This has two implications:
707 .RS 4
708 .ie n \{\
709 \h'-04'\(bu\h'+03'\c
711 .el \{\
712 .sp -1
713 .IP \(bu 2.3
715 if you grow bored with the tutorial repository you created (or you\(cqve made a mistake and want to start all over), you can just do simple
717 .if n \{\
718 .RS 4
721 $ rm \-rf git\-tutorial
723 .if n \{\
727 and it will be gone\&. There\(cqs no external repository, and there\(cqs no history outside the project you created\&.
730 .RS 4
731 .ie n \{\
732 \h'-04'\(bu\h'+03'\c
734 .el \{\
735 .sp -1
736 .IP \(bu 2.3
738 if you want to move or duplicate a Git repository, you can do so\&. There is
739 \fIgit clone\fR
740 command, but if all you want to do is just to create a copy of your repository (with all the full history that went along with it), you can do so with a regular
741 \fBcp \-a git\-tutorial new\-git\-tutorial\fR\&.
743 Note that when you\(cqve moved or copied a Git repository, your Git index file (which caches various information, notably some of the "stat" information for the files involved) will likely need to be refreshed\&. So after you do a
744 \fBcp \-a\fR
745 to create a new copy, you\(cqll want to do
747 .if n \{\
748 .RS 4
751 $ git update\-index \-\-refresh
753 .if n \{\
757 in the new repository to make sure that the index file is up to date\&.
760 Note that the second point is true even across machines\&. You can duplicate a remote Git repository with \fBany\fR regular copy mechanism, be it \fIscp\fR, \fIrsync\fR or \fIwget\fR\&.
762 When copying a remote repository, you\(cqll want to at a minimum update the index cache when you do this, and especially with other peoples\*(Aq repositories you often want to make sure that the index cache is in some known state (you don\(cqt know \fBwhat\fR they\(cqve done and not yet checked in), so usually you\(cqll precede the \fIgit update\-index\fR with a
764 .if n \{\
765 .RS 4
768 $ git read\-tree \-\-reset HEAD
769 $ git update\-index \-\-refresh
771 .if n \{\
776 which will force a total index re\-build from the tree pointed to by \fBHEAD\fR\&. It resets the index contents to \fBHEAD\fR, and then the \fIgit update\-index\fR makes sure to match up all index entries with the checked\-out files\&. If the original repository had uncommitted changes in its working tree, \fBgit update\-index \-\-refresh\fR notices them and tells you they need to be updated\&.
778 The above can also be written as simply
780 .if n \{\
781 .RS 4
784 $ git reset
786 .if n \{\
791 and in fact a lot of the common Git command combinations can be scripted with the \fBgit xyz\fR interfaces\&. You can learn things by just looking at what the various git scripts do\&. For example, \fBgit reset\fR used to be the above two lines implemented in \fIgit reset\fR, but some things like \fIgit status\fR and \fIgit commit\fR are slightly more complex scripts around the basic Git commands\&.
793 Many (most?) public remote repositories will not contain any of the checked out files or even an index file, and will \fBonly\fR contain the actual core Git files\&. Such a repository usually doesn\(cqt even have the \fB\&.git\fR subdirectory, but has all the Git files directly in the repository\&.
795 To create your own local live copy of such a "raw" Git repository, you\(cqd first create your own subdirectory for the project, and then copy the raw repository contents into the \fB\&.git\fR directory\&. For example, to create your own copy of the Git repository, you\(cqd do the following
797 .if n \{\
798 .RS 4
801 $ mkdir my\-git
802 $ cd my\-git
803 $ rsync \-rL rsync://rsync\&.kernel\&.org/pub/scm/git/git\&.git/ \&.git
805 .if n \{\
810 followed by
812 .if n \{\
813 .RS 4
816 $ git read\-tree HEAD
818 .if n \{\
823 to populate the index\&. However, now you have populated the index, and you have all the Git internal files, but you will notice that you don\(cqt actually have any of the working tree files to work on\&. To get those, you\(cqd check them out with
825 .if n \{\
826 .RS 4
829 $ git checkout\-index \-u \-a
831 .if n \{\
836 where the \fB\-u\fR flag means that you want the checkout to keep the index up to date (so that you don\(cqt have to refresh it afterward), and the \fB\-a\fR flag means "check out all files" (if you have a stale copy or an older version of a checked out tree you may also need to add the \fB\-f\fR flag first, to tell \fIgit checkout\-index\fR to \fBforce\fR overwriting of any old files)\&.
838 Again, this can all be simplified with
840 .if n \{\
841 .RS 4
844 $ git clone git://git\&.kernel\&.org/pub/scm/git/git\&.git/ my\-git
845 $ cd my\-git
846 $ git checkout
848 .if n \{\
853 which will end up doing all of the above for you\&.
855 You have now successfully copied somebody else\(cqs (mine) remote repository, and checked it out\&.
856 .SH "CREATING A NEW BRANCH"
858 Branches in Git are really nothing more than pointers into the Git object database from within the \fB\&.git/refs/\fR subdirectory, and as we already discussed, the \fBHEAD\fR branch is nothing but a symlink to one of these object pointers\&.
860 You can at any time create a new branch by just picking an arbitrary point in the project history, and just writing the SHA\-1 name of that object into a file under \fB\&.git/refs/heads/\fR\&. You can use any filename you want (and indeed, subdirectories), but the convention is that the "normal" branch is called \fBmaster\fR\&. That\(cqs just a convention, though, and nothing enforces it\&.
862 To show that as an example, let\(cqs go back to the git\-tutorial repository we used earlier, and create a branch in it\&. You do that by simply just saying that you want to check out a new branch:
864 .if n \{\
865 .RS 4
868 $ git switch \-c mybranch
870 .if n \{\
875 will create a new branch based at the current \fBHEAD\fR position, and switch to it\&.
876 .if n \{\
879 .RS 4
880 .it 1 an-trap
881 .nr an-no-space-flag 1
882 .nr an-break-flag 1
884 .ps +1
885 \fBNote\fR
886 .ps -1
889 If you make the decision to start your new branch at some other point in the history than the current \fBHEAD\fR, you can do so by just telling \fIgit switch\fR what the base of the checkout would be\&. In other words, if you have an earlier tag or branch, you\(cqd just do
891 .if n \{\
892 .RS 4
895 $ git switch \-c mybranch earlier\-commit
897 .if n \{\
902 and it would create the new branch \fBmybranch\fR at the earlier commit, and check out the state at that time\&.
903 .sp .5v
906 You can always just jump back to your original \fBmaster\fR branch by doing
908 .if n \{\
909 .RS 4
912 $ git switch master
914 .if n \{\
919 (or any other branch\-name, for that matter) and if you forget which branch you happen to be on, a simple
921 .if n \{\
922 .RS 4
925 $ cat \&.git/HEAD
927 .if n \{\
932 will tell you where it\(cqs pointing\&. To get the list of branches you have, you can say
934 .if n \{\
935 .RS 4
938 $ git branch
940 .if n \{\
945 which used to be nothing more than a simple script around \fBls \&.git/refs/heads\fR\&. There will be an asterisk in front of the branch you are currently on\&.
947 Sometimes you may wish to create a new branch \fIwithout\fR actually checking it out and switching to it\&. If so, just use the command
949 .if n \{\
950 .RS 4
953 $ git branch <branchname> [startingpoint]
955 .if n \{\
960 which will simply \fIcreate\fR the branch, but will not do anything further\&. You can then later \(em once you decide that you want to actually develop on that branch \(em switch to that branch with a regular \fIgit switch\fR with the branchname as the argument\&.
961 .SH "MERGING TWO BRANCHES"
963 One of the ideas of having a branch is that you do some (possibly experimental) work in it, and eventually merge it back to the main branch\&. So assuming you created the above \fBmybranch\fR that started out being the same as the original \fBmaster\fR branch, let\(cqs make sure we\(cqre in that branch, and do some work there\&.
965 .if n \{\
966 .RS 4
969 $ git switch mybranch
970 $ echo "Work, work, work" >>hello
971 $ git commit \-m "Some work\&." \-i hello
973 .if n \{\
978 Here, we just added another line to \fBhello\fR, and we used a shorthand for doing both \fBgit update\-index hello\fR and \fBgit commit\fR by just giving the filename directly to \fBgit commit\fR, with an \fB\-i\fR flag (it tells Git to \fIinclude\fR that file in addition to what you have done to the index file so far when making the commit)\&. The \fB\-m\fR flag is to give the commit log message from the command line\&.
980 Now, to make it a bit more interesting, let\(cqs assume that somebody else does some work in the original branch, and simulate that by going back to the master branch, and editing the same file differently there:
982 .if n \{\
983 .RS 4
986 $ git switch master
988 .if n \{\
993 Here, take a moment to look at the contents of \fBhello\fR, and notice how they don\(cqt contain the work we just did in \fBmybranch\fR \(em because that work hasn\(cqt happened in the \fBmaster\fR branch at all\&. Then do
995 .if n \{\
996 .RS 4
999 $ echo "Play, play, play" >>hello
1000 $ echo "Lots of fun" >>example
1001 $ git commit \-m "Some fun\&." \-i hello example
1003 .if n \{\
1008 since the master branch is obviously in a much better mood\&.
1010 Now, you\(cqve got two branches, and you decide that you want to merge the work done\&. Before we do that, let\(cqs introduce a cool graphical tool that helps you view what\(cqs going on:
1012 .if n \{\
1013 .RS 4
1016 $ gitk \-\-all
1018 .if n \{\
1023 will show you graphically both of your branches (that\(cqs what the \fB\-\-all\fR means: normally it will just show you your current \fBHEAD\fR) and their histories\&. You can also see exactly how they came to be from a common source\&.
1025 Anyway, let\(cqs exit \fIgitk\fR (\fB^Q\fR or the File menu), and decide that we want to merge the work we did on the \fBmybranch\fR branch into the \fBmaster\fR branch (which is currently our \fBHEAD\fR too)\&. To do that, there\(cqs a nice script called \fIgit merge\fR, which wants to know which branches you want to resolve and what the merge is all about:
1027 .if n \{\
1028 .RS 4
1031 $ git merge \-m "Merge work in mybranch" mybranch
1033 .if n \{\
1038 where the first argument is going to be used as the commit message if the merge can be resolved automatically\&.
1040 Now, in this case we\(cqve intentionally created a situation where the merge will need to be fixed up by hand, though, so Git will do as much of it as it can automatically (which in this case is just merge the \fBexample\fR file, which had no differences in the \fBmybranch\fR branch), and say:
1042 .if n \{\
1043 .RS 4
1046         Auto\-merging hello
1047         CONFLICT (content): Merge conflict in hello
1048         Automatic merge failed; fix conflicts and then commit the result\&.
1050 .if n \{\
1055 It tells you that it did an "Automatic merge", which failed due to conflicts in \fBhello\fR\&.
1057 Not to worry\&. It left the (trivial) conflict in \fBhello\fR in the same form you should already be well used to if you\(cqve ever used CVS, so let\(cqs just open \fBhello\fR in our editor (whatever that may be), and fix it up somehow\&. I\(cqd suggest just making it so that \fBhello\fR contains all four lines:
1059 .if n \{\
1060 .RS 4
1063 Hello World
1064 It\*(Aqs a new day for git
1065 Play, play, play
1066 Work, work, work
1068 .if n \{\
1073 and once you\(cqre happy with your manual merge, just do a
1075 .if n \{\
1076 .RS 4
1079 $ git commit \-i hello
1081 .if n \{\
1086 which will very loudly warn you that you\(cqre now committing a merge (which is correct, so never mind), and you can write a small merge message about your adventures in \fIgit merge\fR\-land\&.
1088 After you\(cqre done, start up \fBgitk \-\-all\fR to see graphically what the history looks like\&. Notice that \fBmybranch\fR still exists, and you can switch to it, and continue to work with it if you want to\&. The \fBmybranch\fR branch will not contain the merge, but next time you merge it from the \fBmaster\fR branch, Git will know how you merged it, so you\(cqll not have to do \fIthat\fR merge again\&.
1090 Another useful tool, especially if you do not always work in X\-Window environment, is \fBgit show\-branch\fR\&.
1092 .if n \{\
1093 .RS 4
1096 $ git show\-branch \-\-topo\-order \-\-more=1 master mybranch
1097 * [master] Merge work in mybranch
1098  ! [mybranch] Some work\&.
1099 \-\-
1100 \-  [master] Merge work in mybranch
1101 *+ [mybranch] Some work\&.
1102 *  [master^] Some fun\&.
1104 .if n \{\
1109 The first two lines indicate that it is showing the two branches with the titles of their top\-of\-the\-tree commits, you are currently on \fBmaster\fR branch (notice the asterisk \fB*\fR character), and the first column for the later output lines is used to show commits contained in the \fBmaster\fR branch, and the second column for the \fBmybranch\fR branch\&. Three commits are shown along with their titles\&. All of them have non blank characters in the first column (\fB*\fR shows an ordinary commit on the current branch, \fB\-\fR is a merge commit), which means they are now part of the \fBmaster\fR branch\&. Only the "Some work" commit has the plus \fB+\fR character in the second column, because \fBmybranch\fR has not been merged to incorporate these commits from the master branch\&. The string inside brackets before the commit log message is a short name you can use to name the commit\&. In the above example, \fImaster\fR and \fImybranch\fR are branch heads\&. \fImaster^\fR is the first parent of \fImaster\fR branch head\&. Please see \fBgitrevisions\fR(7) if you want to see more complex cases\&.
1110 .if n \{\
1113 .RS 4
1114 .it 1 an-trap
1115 .nr an-no-space-flag 1
1116 .nr an-break-flag 1
1118 .ps +1
1119 \fBNote\fR
1120 .ps -1
1123 Without the \fI\-\-more=1\fR option, \fIgit show\-branch\fR would not output the \fI[master^]\fR commit, as \fI[mybranch]\fR commit is a common ancestor of both \fImaster\fR and \fImybranch\fR tips\&. Please see \fBgit-show-branch\fR(1) for details\&.
1124 .sp .5v
1126 .if n \{\
1129 .RS 4
1130 .it 1 an-trap
1131 .nr an-no-space-flag 1
1132 .nr an-break-flag 1
1134 .ps +1
1135 \fBNote\fR
1136 .ps -1
1139 If there were more commits on the \fImaster\fR branch after the merge, the merge commit itself would not be shown by \fIgit show\-branch\fR by default\&. You would need to provide \fB\-\-sparse\fR option to make the merge commit visible in this case\&.
1140 .sp .5v
1143 Now, let\(cqs pretend you are the one who did all the work in \fBmybranch\fR, and the fruit of your hard work has finally been merged to the \fBmaster\fR branch\&. Let\(cqs go back to \fBmybranch\fR, and run \fIgit merge\fR to get the "upstream changes" back to your branch\&.
1145 .if n \{\
1146 .RS 4
1149 $ git switch mybranch
1150 $ git merge \-m "Merge upstream changes\&." master
1152 .if n \{\
1157 This outputs something like this (the actual commit object names would be different)
1159 .if n \{\
1160 .RS 4
1163 Updating from ae3a2da\&.\&.\&. to a80b4aa\&.\&.\&.\&.
1164 Fast\-forward (no commit created; \-m option ignored)
1165  example | 1 +
1166  hello   | 1 +
1167  2 files changed, 2 insertions(+)
1169 .if n \{\
1174 Because your branch did not contain anything more than what had already been merged into the \fBmaster\fR branch, the merge operation did not actually do a merge\&. Instead, it just updated the top of the tree of your branch to that of the \fBmaster\fR branch\&. This is often called \fIfast\-forward\fR merge\&.
1176 You can run \fBgitk \-\-all\fR again to see how the commit ancestry looks like, or run \fIshow\-branch\fR, which tells you this\&.
1178 .if n \{\
1179 .RS 4
1182 $ git show\-branch master mybranch
1183 ! [master] Merge work in mybranch
1184  * [mybranch] Merge work in mybranch
1185 \-\-
1186 \-\- [master] Merge work in mybranch
1188 .if n \{\
1192 .SH "MERGING EXTERNAL WORK"
1194 It\(cqs usually much more common that you merge with somebody else than merging with your own branches, so it\(cqs worth pointing out that Git makes that very easy too, and in fact, it\(cqs not that different from doing a \fIgit merge\fR\&. In fact, a remote merge ends up being nothing more than "fetch the work from a remote repository into a temporary tag" followed by a \fIgit merge\fR\&.
1196 Fetching from a remote repository is done by, unsurprisingly, \fIgit fetch\fR:
1198 .if n \{\
1199 .RS 4
1202 $ git fetch <remote\-repository>
1204 .if n \{\
1209 One of the following transports can be used to name the repository to download from:
1212 .RS 4
1213 \fBremote\&.machine:/path/to/repo\&.git/\fR
1216 \fBssh://remote\&.machine/path/to/repo\&.git/\fR
1218 This transport can be used for both uploading and downloading, and requires you to have a log\-in privilege over
1219 \fBssh\fR
1220 to the remote machine\&. It finds out the set of objects the other side lacks by exchanging the head commits both ends have and transfers (close to) minimum set of objects\&. It is by far the most efficient way to exchange Git objects between repositories\&.
1223 Local directory
1224 .RS 4
1225 \fB/path/to/repo\&.git/\fR
1227 This transport is the same as SSH transport but uses
1228 \fIsh\fR
1229 to run both ends on the local machine instead of running other end on the remote machine via
1230 \fIssh\fR\&.
1233 Git Native
1234 .RS 4
1235 \fBgit://remote\&.machine/path/to/repo\&.git/\fR
1237 This transport was designed for anonymous downloading\&. Like SSH transport, it finds out the set of objects the downstream side lacks and transfers (close to) minimum set of objects\&.
1240 HTTP(S)
1241 .RS 4
1242 \fBhttp://remote\&.machine/path/to/repo\&.git/\fR
1244 Downloader from http and https URL first obtains the topmost commit object name from the remote site by looking at the specified refname under
1245 \fBrepo\&.git/refs/\fR
1246 directory, and then tries to obtain the commit object by downloading from
1247 \fBrepo\&.git/objects/xx/xxx\&.\&.\&.\fR
1248 using the object name of that commit object\&. Then it reads the commit object to find out its parent commits and the associate tree object; it repeats this process until it gets all the necessary objects\&. Because of this behavior, they are sometimes also called
1249 \fIcommit walkers\fR\&.
1252 \fIcommit walkers\fR
1253 are sometimes also called
1254 \fIdumb transports\fR, because they do not require any Git aware smart server like Git Native transport does\&. Any stock HTTP server that does not even support directory index would suffice\&. But you must prepare your repository with
1255 \fIgit update\-server\-info\fR
1256 to help dumb transport downloaders\&.
1259 Once you fetch from the remote repository, you \fBmerge\fR that with your current branch\&.
1261 However \(em it\(cqs such a common thing to \fBfetch\fR and then immediately \fBmerge\fR, that it\(cqs called \fBgit pull\fR, and you can simply do
1263 .if n \{\
1264 .RS 4
1267 $ git pull <remote\-repository>
1269 .if n \{\
1274 and optionally give a branch\-name for the remote end as a second argument\&.
1275 .if n \{\
1278 .RS 4
1279 .it 1 an-trap
1280 .nr an-no-space-flag 1
1281 .nr an-break-flag 1
1283 .ps +1
1284 \fBNote\fR
1285 .ps -1
1288 You could do without using any branches at all, by keeping as many local repositories as you would like to have branches, and merging between them with \fIgit pull\fR, just like you merge between branches\&. The advantage of this approach is that it lets you keep a set of files for each \fBbranch\fR checked out and you may find it easier to switch back and forth if you juggle multiple lines of development simultaneously\&. Of course, you will pay the price of more disk usage to hold multiple working trees, but disk space is cheap these days\&.
1289 .sp .5v
1292 It is likely that you will be pulling from the same remote repository from time to time\&. As a short hand, you can store the remote repository URL in the local repository\(cqs config file like this:
1294 .if n \{\
1295 .RS 4
1298 $ git config remote\&.linus\&.url http://www\&.kernel\&.org/pub/scm/git/git\&.git/
1300 .if n \{\
1305 and use the "linus" keyword with \fIgit pull\fR instead of the full URL\&.
1307 Examples\&.
1309 .RS 4
1310 .ie n \{\
1311 \h'-04' 1.\h'+01'\c
1313 .el \{\
1314 .sp -1
1315 .IP "  1." 4.2
1317 \fBgit pull linus\fR
1320 .RS 4
1321 .ie n \{\
1322 \h'-04' 2.\h'+01'\c
1324 .el \{\
1325 .sp -1
1326 .IP "  2." 4.2
1328 \fBgit pull linus tag v0\&.99\&.1\fR
1331 the above are equivalent to:
1333 .RS 4
1334 .ie n \{\
1335 \h'-04' 1.\h'+01'\c
1337 .el \{\
1338 .sp -1
1339 .IP "  1." 4.2
1341 \fBgit pull http://www\&.kernel\&.org/pub/scm/git/git\&.git/ HEAD\fR
1344 .RS 4
1345 .ie n \{\
1346 \h'-04' 2.\h'+01'\c
1348 .el \{\
1349 .sp -1
1350 .IP "  2." 4.2
1352 \fBgit pull http://www\&.kernel\&.org/pub/scm/git/git\&.git/ tag v0\&.99\&.1\fR
1354 .SH "HOW DOES THE MERGE WORK?"
1356 We said this tutorial shows what plumbing does to help you cope with the porcelain that isn\(cqt flushing, but we so far did not talk about how the merge really works\&. If you are following this tutorial the first time, I\(cqd suggest to skip to "Publishing your work" section and come back here later\&.
1358 OK, still with me? To give us an example to look at, let\(cqs go back to the earlier repository with "hello" and "example" file, and bring ourselves back to the pre\-merge state:
1360 .if n \{\
1361 .RS 4
1364 $ git show\-branch \-\-more=2 master mybranch
1365 ! [master] Merge work in mybranch
1366  * [mybranch] Merge work in mybranch
1367 \-\-
1368 \-\- [master] Merge work in mybranch
1369 +* [master^2] Some work\&.
1370 +* [master^] Some fun\&.
1372 .if n \{\
1377 Remember, before running \fIgit merge\fR, our \fBmaster\fR head was at "Some fun\&." commit, while our \fBmybranch\fR head was at "Some work\&." commit\&.
1379 .if n \{\
1380 .RS 4
1383 $ git switch \-C mybranch master^2
1384 $ git switch master
1385 $ git reset \-\-hard master^
1387 .if n \{\
1392 After rewinding, the commit structure should look like this:
1394 .if n \{\
1395 .RS 4
1398 $ git show\-branch
1399 * [master] Some fun\&.
1400  ! [mybranch] Some work\&.
1401 \-\-
1402 *  [master] Some fun\&.
1403  + [mybranch] Some work\&.
1404 *+ [master^] Initial commit
1406 .if n \{\
1411 Now we are ready to experiment with the merge by hand\&.
1413 \fBgit merge\fR command, when merging two branches, uses 3\-way merge algorithm\&. First, it finds the common ancestor between them\&. The command it uses is \fIgit merge\-base\fR:
1415 .if n \{\
1416 .RS 4
1419 $ mb=$(git merge\-base HEAD mybranch)
1421 .if n \{\
1426 The command writes the commit object name of the common ancestor to the standard output, so we captured its output to a variable, because we will be using it in the next step\&. By the way, the common ancestor commit is the "Initial commit" commit in this case\&. You can tell it by:
1428 .if n \{\
1429 .RS 4
1432 $ git name\-rev \-\-name\-only \-\-tags $mb
1433 my\-first\-tag
1435 .if n \{\
1440 After finding out a common ancestor commit, the second step is this:
1442 .if n \{\
1443 .RS 4
1446 $ git read\-tree \-m \-u $mb HEAD mybranch
1448 .if n \{\
1453 This is the same \fIgit read\-tree\fR command we have already seen, but it takes three trees, unlike previous examples\&. This reads the contents of each tree into different \fIstage\fR in the index file (the first tree goes to stage 1, the second to stage 2, etc\&.)\&. After reading three trees into three stages, the paths that are the same in all three stages are \fIcollapsed\fR into stage 0\&. Also paths that are the same in two of three stages are collapsed into stage 0, taking the SHA\-1 from either stage 2 or stage 3, whichever is different from stage 1 (i\&.e\&. only one side changed from the common ancestor)\&.
1455 After \fIcollapsing\fR operation, paths that are different in three trees are left in non\-zero stages\&. At this point, you can inspect the index file with this command:
1457 .if n \{\
1458 .RS 4
1461 $ git ls\-files \-\-stage
1462 100644 7f8b141b65fdcee47321e399a2598a235a032422 0       example
1463 100644 557db03de997c86a4a028e1ebd3a1ceb225be238 1       hello
1464 100644 ba42a2a96e3027f3333e13ede4ccf4498c3ae942 2       hello
1465 100644 cc44c73eb783565da5831b4d820c962954019b69 3       hello
1467 .if n \{\
1472 In our example of only two files, we did not have unchanged files so only \fIexample\fR resulted in collapsing\&. But in real\-life large projects, when only a small number of files change in one commit, this \fIcollapsing\fR tends to trivially merge most of the paths fairly quickly, leaving only a handful of real changes in non\-zero stages\&.
1474 To look at only non\-zero stages, use \fB\-\-unmerged\fR flag:
1476 .if n \{\
1477 .RS 4
1480 $ git ls\-files \-\-unmerged
1481 100644 557db03de997c86a4a028e1ebd3a1ceb225be238 1       hello
1482 100644 ba42a2a96e3027f3333e13ede4ccf4498c3ae942 2       hello
1483 100644 cc44c73eb783565da5831b4d820c962954019b69 3       hello
1485 .if n \{\
1490 The next step of merging is to merge these three versions of the file, using 3\-way merge\&. This is done by giving \fIgit merge\-one\-file\fR command as one of the arguments to \fIgit merge\-index\fR command:
1492 .if n \{\
1493 .RS 4
1496 $ git merge\-index git\-merge\-one\-file hello
1497 Auto\-merging hello
1498 ERROR: Merge conflict in hello
1499 fatal: merge program failed
1501 .if n \{\
1506 \fIgit merge\-one\-file\fR script is called with parameters to describe those three versions, and is responsible to leave the merge results in the working tree\&. It is a fairly straightforward shell script, and eventually calls \fImerge\fR program from RCS suite to perform a file\-level 3\-way merge\&. In this case, \fImerge\fR detects conflicts, and the merge result with conflict marks is left in the working tree\&.\&. This can be seen if you run \fBls\-files \-\-stage\fR again at this point:
1508 .if n \{\
1509 .RS 4
1512 $ git ls\-files \-\-stage
1513 100644 7f8b141b65fdcee47321e399a2598a235a032422 0       example
1514 100644 557db03de997c86a4a028e1ebd3a1ceb225be238 1       hello
1515 100644 ba42a2a96e3027f3333e13ede4ccf4498c3ae942 2       hello
1516 100644 cc44c73eb783565da5831b4d820c962954019b69 3       hello
1518 .if n \{\
1523 This is the state of the index file and the working file after \fIgit merge\fR returns control back to you, leaving the conflicting merge for you to resolve\&. Notice that the path \fBhello\fR is still unmerged, and what you see with \fIgit diff\fR at this point is differences since stage 2 (i\&.e\&. your version)\&.
1524 .SH "PUBLISHING YOUR WORK"
1526 So, we can use somebody else\(cqs work from a remote repository, but how can \fByou\fR prepare a repository to let other people pull from it?
1528 You do your real work in your working tree that has your primary repository hanging under it as its \fB\&.git\fR subdirectory\&. You \fBcould\fR make that repository accessible remotely and ask people to pull from it, but in practice that is not the way things are usually done\&. A recommended way is to have a public repository, make it reachable by other people, and when the changes you made in your primary working tree are in good shape, update the public repository from it\&. This is often called \fIpushing\fR\&.
1529 .if n \{\
1532 .RS 4
1533 .it 1 an-trap
1534 .nr an-no-space-flag 1
1535 .nr an-break-flag 1
1537 .ps +1
1538 \fBNote\fR
1539 .ps -1
1542 This public repository could further be mirrored, and that is how Git repositories at \fBkernel\&.org\fR are managed\&.
1543 .sp .5v
1546 Publishing the changes from your local (private) repository to your remote (public) repository requires a write privilege on the remote machine\&. You need to have an SSH account there to run a single command, \fIgit\-receive\-pack\fR\&.
1548 First, you need to create an empty repository on the remote machine that will house your public repository\&. This empty repository will be populated and be kept up to date by pushing into it later\&. Obviously, this repository creation needs to be done only once\&.
1549 .if n \{\
1552 .RS 4
1553 .it 1 an-trap
1554 .nr an-no-space-flag 1
1555 .nr an-break-flag 1
1557 .ps +1
1558 \fBNote\fR
1559 .ps -1
1562 \fIgit push\fR uses a pair of commands, \fIgit send\-pack\fR on your local machine, and \fIgit\-receive\-pack\fR on the remote machine\&. The communication between the two over the network internally uses an SSH connection\&.
1563 .sp .5v
1566 Your private repository\(cqs Git directory is usually \fB\&.git\fR, but your public repository is often named after the project name, i\&.e\&. \fB<project>\&.git\fR\&. Let\(cqs create such a public repository for project \fBmy\-git\fR\&. After logging into the remote machine, create an empty directory:
1568 .if n \{\
1569 .RS 4
1572 $ mkdir my\-git\&.git
1574 .if n \{\
1579 Then, make that directory into a Git repository by running \fIgit init\fR, but this time, since its name is not the usual \fB\&.git\fR, we do things slightly differently:
1581 .if n \{\
1582 .RS 4
1585 $ GIT_DIR=my\-git\&.git git init
1587 .if n \{\
1592 Make sure this directory is available for others you want your changes to be pulled via the transport of your choice\&. Also you need to make sure that you have the \fIgit\-receive\-pack\fR program on the \fB$PATH\fR\&.
1593 .if n \{\
1596 .RS 4
1597 .it 1 an-trap
1598 .nr an-no-space-flag 1
1599 .nr an-break-flag 1
1601 .ps +1
1602 \fBNote\fR
1603 .ps -1
1606 Many installations of sshd do not invoke your shell as the login shell when you directly run programs; what this means is that if your login shell is \fIbash\fR, only \fB\&.bashrc\fR is read and not \fB\&.bash_profile\fR\&. As a workaround, make sure \fB\&.bashrc\fR sets up \fB$PATH\fR so that you can run \fIgit\-receive\-pack\fR program\&.
1607 .sp .5v
1609 .if n \{\
1612 .RS 4
1613 .it 1 an-trap
1614 .nr an-no-space-flag 1
1615 .nr an-break-flag 1
1617 .ps +1
1618 \fBNote\fR
1619 .ps -1
1622 If you plan to publish this repository to be accessed over http, you should do \fBmv my\-git\&.git/hooks/post\-update\&.sample my\-git\&.git/hooks/post\-update\fR at this point\&. This makes sure that every time you push into this repository, \fBgit update\-server\-info\fR is run\&.
1623 .sp .5v
1626 Your "public repository" is now ready to accept your changes\&. Come back to the machine you have your private repository\&. From there, run this command:
1628 .if n \{\
1629 .RS 4
1632 $ git push <public\-host>:/path/to/my\-git\&.git master
1634 .if n \{\
1639 This synchronizes your public repository to match the named branch head (i\&.e\&. \fBmaster\fR in this case) and objects reachable from them in your current repository\&.
1641 As a real example, this is how I update my public Git repository\&. Kernel\&.org mirror network takes care of the propagation to other publicly visible machines:
1643 .if n \{\
1644 .RS 4
1647 $ git push master\&.kernel\&.org:/pub/scm/git/git\&.git/
1649 .if n \{\
1653 .SH "PACKING YOUR REPOSITORY"
1655 Earlier, we saw that one file under \fB\&.git/objects/??/\fR directory is stored for each Git object you create\&. This representation is efficient to create atomically and safely, but not so convenient to transport over the network\&. Since Git objects are immutable once they are created, there is a way to optimize the storage by "packing them together"\&. The command
1657 .if n \{\
1658 .RS 4
1661 $ git repack
1663 .if n \{\
1668 will do it for you\&. If you followed the tutorial examples, you would have accumulated about 17 objects in \fB\&.git/objects/??/\fR directories by now\&. \fIgit repack\fR tells you how many objects it packed, and stores the packed file in the \fB\&.git/objects/pack\fR directory\&.
1669 .if n \{\
1672 .RS 4
1673 .it 1 an-trap
1674 .nr an-no-space-flag 1
1675 .nr an-break-flag 1
1677 .ps +1
1678 \fBNote\fR
1679 .ps -1
1682 You will see two files, \fBpack\-*\&.pack\fR and \fBpack\-*\&.idx\fR, in \fB\&.git/objects/pack\fR directory\&. They are closely related to each other, and if you ever copy them by hand to a different repository for whatever reason, you should make sure you copy them together\&. The former holds all the data from the objects in the pack, and the latter holds the index for random access\&.
1683 .sp .5v
1686 If you are paranoid, running \fIgit verify\-pack\fR command would detect if you have a corrupt pack, but do not worry too much\&. Our programs are always perfect ;\-)\&.
1688 Once you have packed objects, you do not need to leave the unpacked objects that are contained in the pack file anymore\&.
1690 .if n \{\
1691 .RS 4
1694 $ git prune\-packed
1696 .if n \{\
1701 would remove them for you\&.
1703 You can try running \fBfind \&.git/objects \-type f\fR before and after you run \fBgit prune\-packed\fR if you are curious\&. Also \fBgit count\-objects\fR would tell you how many unpacked objects are in your repository and how much space they are consuming\&.
1704 .if n \{\
1707 .RS 4
1708 .it 1 an-trap
1709 .nr an-no-space-flag 1
1710 .nr an-break-flag 1
1712 .ps +1
1713 \fBNote\fR
1714 .ps -1
1717 \fBgit pull\fR is slightly cumbersome for HTTP transport, as a packed repository may contain relatively few objects in a relatively large pack\&. If you expect many HTTP pulls from your public repository you might want to repack & prune often, or never\&.
1718 .sp .5v
1721 If you run \fBgit repack\fR again at this point, it will say "Nothing new to pack\&."\&. Once you continue your development and accumulate the changes, running \fBgit repack\fR again will create a new pack, that contains objects created since you packed your repository the last time\&. We recommend that you pack your project soon after the initial import (unless you are starting your project from scratch), and then run \fBgit repack\fR every once in a while, depending on how active your project is\&.
1723 When a repository is synchronized via \fBgit push\fR and \fBgit pull\fR objects packed in the source repository are usually stored unpacked in the destination\&. While this allows you to use different packing strategies on both ends, it also means you may need to repack both repositories every once in a while\&.
1724 .SH "WORKING WITH OTHERS"
1726 Although Git is a truly distributed system, it is often convenient to organize your project with an informal hierarchy of developers\&. Linux kernel development is run this way\&. There is a nice illustration (page 17, "Merges to Mainline") in \m[blue]\fBRandy Dunlap\(cqs presentation\fR\m[]\&\s-2\u[2]\d\s+2\&.
1728 It should be stressed that this hierarchy is purely \fBinformal\fR\&. There is nothing fundamental in Git that enforces the "chain of patch flow" this hierarchy implies\&. You do not have to pull from only one remote repository\&.
1730 A recommended workflow for a "project lead" goes like this:
1732 .RS 4
1733 .ie n \{\
1734 \h'-04' 1.\h'+01'\c
1736 .el \{\
1737 .sp -1
1738 .IP "  1." 4.2
1740 Prepare your primary repository on your local machine\&. Your work is done there\&.
1743 .RS 4
1744 .ie n \{\
1745 \h'-04' 2.\h'+01'\c
1747 .el \{\
1748 .sp -1
1749 .IP "  2." 4.2
1751 Prepare a public repository accessible to others\&.
1753 If other people are pulling from your repository over dumb transport protocols (HTTP), you need to keep this repository
1754 \fIdumb transport friendly\fR\&. After
1755 \fBgit init\fR,
1756 \fB$GIT_DIR/hooks/post\-update\&.sample\fR
1757 copied from the standard templates would contain a call to
1758 \fIgit update\-server\-info\fR
1759 but you need to manually enable the hook with
1760 \fBmv post\-update\&.sample post\-update\fR\&. This makes sure
1761 \fIgit update\-server\-info\fR
1762 keeps the necessary files up to date\&.
1765 .RS 4
1766 .ie n \{\
1767 \h'-04' 3.\h'+01'\c
1769 .el \{\
1770 .sp -1
1771 .IP "  3." 4.2
1773 Push into the public repository from your primary repository\&.
1776 .RS 4
1777 .ie n \{\
1778 \h'-04' 4.\h'+01'\c
1780 .el \{\
1781 .sp -1
1782 .IP "  4." 4.2
1784 \fIgit repack\fR
1785 the public repository\&. This establishes a big pack that contains the initial set of objects as the baseline, and possibly
1786 \fIgit prune\fR
1787 if the transport used for pulling from your repository supports packed repositories\&.
1790 .RS 4
1791 .ie n \{\
1792 \h'-04' 5.\h'+01'\c
1794 .el \{\
1795 .sp -1
1796 .IP "  5." 4.2
1798 Keep working in your primary repository\&. Your changes include modifications of your own, patches you receive via e\-mails, and merges resulting from pulling the "public" repositories of your "subsystem maintainers"\&.
1800 You can repack this private repository whenever you feel like\&.
1803 .RS 4
1804 .ie n \{\
1805 \h'-04' 6.\h'+01'\c
1807 .el \{\
1808 .sp -1
1809 .IP "  6." 4.2
1811 Push your changes to the public repository, and announce it to the public\&.
1814 .RS 4
1815 .ie n \{\
1816 \h'-04' 7.\h'+01'\c
1818 .el \{\
1819 .sp -1
1820 .IP "  7." 4.2
1822 Every once in a while,
1823 \fIgit repack\fR
1824 the public repository\&. Go back to step 5\&. and continue working\&.
1827 A recommended work cycle for a "subsystem maintainer" who works on that project and has an own "public repository" goes like this:
1829 .RS 4
1830 .ie n \{\
1831 \h'-04' 1.\h'+01'\c
1833 .el \{\
1834 .sp -1
1835 .IP "  1." 4.2
1837 Prepare your work repository, by running
1838 \fIgit clone\fR
1839 on the public repository of the "project lead"\&. The URL used for the initial cloning is stored in the remote\&.origin\&.url configuration variable\&.
1842 .RS 4
1843 .ie n \{\
1844 \h'-04' 2.\h'+01'\c
1846 .el \{\
1847 .sp -1
1848 .IP "  2." 4.2
1850 Prepare a public repository accessible to others, just like the "project lead" person does\&.
1853 .RS 4
1854 .ie n \{\
1855 \h'-04' 3.\h'+01'\c
1857 .el \{\
1858 .sp -1
1859 .IP "  3." 4.2
1861 Copy over the packed files from "project lead" public repository to your public repository, unless the "project lead" repository lives on the same machine as yours\&. In the latter case, you can use
1862 \fBobjects/info/alternates\fR
1863 file to point at the repository you are borrowing from\&.
1866 .RS 4
1867 .ie n \{\
1868 \h'-04' 4.\h'+01'\c
1870 .el \{\
1871 .sp -1
1872 .IP "  4." 4.2
1874 Push into the public repository from your primary repository\&. Run
1875 \fIgit repack\fR, and possibly
1876 \fIgit prune\fR
1877 if the transport used for pulling from your repository supports packed repositories\&.
1880 .RS 4
1881 .ie n \{\
1882 \h'-04' 5.\h'+01'\c
1884 .el \{\
1885 .sp -1
1886 .IP "  5." 4.2
1888 Keep working in your primary repository\&. Your changes include modifications of your own, patches you receive via e\-mails, and merges resulting from pulling the "public" repositories of your "project lead" and possibly your "sub\-subsystem maintainers"\&.
1890 You can repack this private repository whenever you feel like\&.
1893 .RS 4
1894 .ie n \{\
1895 \h'-04' 6.\h'+01'\c
1897 .el \{\
1898 .sp -1
1899 .IP "  6." 4.2
1901 Push your changes to your public repository, and ask your "project lead" and possibly your "sub\-subsystem maintainers" to pull from it\&.
1904 .RS 4
1905 .ie n \{\
1906 \h'-04' 7.\h'+01'\c
1908 .el \{\
1909 .sp -1
1910 .IP "  7." 4.2
1912 Every once in a while,
1913 \fIgit repack\fR
1914 the public repository\&. Go back to step 5\&. and continue working\&.
1917 A recommended work cycle for an "individual developer" who does not have a "public" repository is somewhat different\&. It goes like this:
1919 .RS 4
1920 .ie n \{\
1921 \h'-04' 1.\h'+01'\c
1923 .el \{\
1924 .sp -1
1925 .IP "  1." 4.2
1927 Prepare your work repository, by
1928 \fIgit clone\fR
1929 the public repository of the "project lead" (or a "subsystem maintainer", if you work on a subsystem)\&. The URL used for the initial cloning is stored in the remote\&.origin\&.url configuration variable\&.
1932 .RS 4
1933 .ie n \{\
1934 \h'-04' 2.\h'+01'\c
1936 .el \{\
1937 .sp -1
1938 .IP "  2." 4.2
1940 Do your work in your repository on
1941 \fImaster\fR
1942 branch\&.
1945 .RS 4
1946 .ie n \{\
1947 \h'-04' 3.\h'+01'\c
1949 .el \{\
1950 .sp -1
1951 .IP "  3." 4.2
1954 \fBgit fetch origin\fR
1955 from the public repository of your upstream every once in a while\&. This does only the first half of
1956 \fBgit pull\fR
1957 but does not merge\&. The head of the public repository is stored in
1958 \fB\&.git/refs/remotes/origin/master\fR\&.
1961 .RS 4
1962 .ie n \{\
1963 \h'-04' 4.\h'+01'\c
1965 .el \{\
1966 .sp -1
1967 .IP "  4." 4.2
1970 \fBgit cherry origin\fR
1971 to see which ones of your patches were accepted, and/or use
1972 \fBgit rebase origin\fR
1973 to port your unmerged changes forward to the updated upstream\&.
1976 .RS 4
1977 .ie n \{\
1978 \h'-04' 5.\h'+01'\c
1980 .el \{\
1981 .sp -1
1982 .IP "  5." 4.2
1985 \fBgit format\-patch origin\fR
1986 to prepare patches for e\-mail submission to your upstream and send it out\&. Go back to step 2\&. and continue\&.
1988 .SH "WORKING WITH OTHERS, SHARED REPOSITORY STYLE"
1990 If you are coming from a CVS background, the style of cooperation suggested in the previous section may be new to you\&. You do not have to worry\&. Git supports the "shared public repository" style of cooperation you are probably more familiar with as well\&.
1992 See \fBgitcvs-migration\fR(7) for the details\&.
1993 .SH "BUNDLING YOUR WORK TOGETHER"
1995 It is likely that you will be working on more than one thing at a time\&. It is easy to manage those more\-or\-less independent tasks using branches with Git\&.
1997 We have already seen how branches work previously, with "fun and work" example using two branches\&. The idea is the same if there are more than two branches\&. Let\(cqs say you started out from "master" head, and have some new code in the "master" branch, and two independent fixes in the "commit\-fix" and "diff\-fix" branches:
1999 .if n \{\
2000 .RS 4
2003 $ git show\-branch
2004 ! [commit\-fix] Fix commit message normalization\&.
2005  ! [diff\-fix] Fix rename detection\&.
2006   * [master] Release candidate #1
2007 \-\-\-
2008  +  [diff\-fix] Fix rename detection\&.
2009  +  [diff\-fix~1] Better common substring algorithm\&.
2010 +   [commit\-fix] Fix commit message normalization\&.
2011   * [master] Release candidate #1
2012 ++* [diff\-fix~2] Pretty\-print messages\&.
2014 .if n \{\
2019 Both fixes are tested well, and at this point, you want to merge in both of them\&. You could merge in \fIdiff\-fix\fR first and then \fIcommit\-fix\fR next, like this:
2021 .if n \{\
2022 .RS 4
2025 $ git merge \-m "Merge fix in diff\-fix" diff\-fix
2026 $ git merge \-m "Merge fix in commit\-fix" commit\-fix
2028 .if n \{\
2033 Which would result in:
2035 .if n \{\
2036 .RS 4
2039 $ git show\-branch
2040 ! [commit\-fix] Fix commit message normalization\&.
2041  ! [diff\-fix] Fix rename detection\&.
2042   * [master] Merge fix in commit\-fix
2043 \-\-\-
2044   \- [master] Merge fix in commit\-fix
2045 + * [commit\-fix] Fix commit message normalization\&.
2046   \- [master~1] Merge fix in diff\-fix
2047  +* [diff\-fix] Fix rename detection\&.
2048  +* [diff\-fix~1] Better common substring algorithm\&.
2049   * [master~2] Release candidate #1
2050 ++* [master~3] Pretty\-print messages\&.
2052 .if n \{\
2057 However, there is no particular reason to merge in one branch first and the other next, when what you have are a set of truly independent changes (if the order mattered, then they are not independent by definition)\&. You could instead merge those two branches into the current branch at once\&. First let\(cqs undo what we just did and start over\&. We would want to get the master branch before these two merges by resetting it to \fImaster~2\fR:
2059 .if n \{\
2060 .RS 4
2063 $ git reset \-\-hard master~2
2065 .if n \{\
2070 You can make sure \fBgit show\-branch\fR matches the state before those two \fIgit merge\fR you just did\&. Then, instead of running two \fIgit merge\fR commands in a row, you would merge these two branch heads (this is known as \fImaking an Octopus\fR):
2072 .if n \{\
2073 .RS 4
2076 $ git merge commit\-fix diff\-fix
2077 $ git show\-branch
2078 ! [commit\-fix] Fix commit message normalization\&.
2079  ! [diff\-fix] Fix rename detection\&.
2080   * [master] Octopus merge of branches \*(Aqdiff\-fix\*(Aq and \*(Aqcommit\-fix\*(Aq
2081 \-\-\-
2082   \- [master] Octopus merge of branches \*(Aqdiff\-fix\*(Aq and \*(Aqcommit\-fix\*(Aq
2083 + * [commit\-fix] Fix commit message normalization\&.
2084  +* [diff\-fix] Fix rename detection\&.
2085  +* [diff\-fix~1] Better common substring algorithm\&.
2086   * [master~1] Release candidate #1
2087 ++* [master~2] Pretty\-print messages\&.
2089 .if n \{\
2094 Note that you should not do Octopus just because you can\&. An octopus is a valid thing to do and often makes it easier to view the commit history if you are merging more than two independent changes at the same time\&. However, if you have merge conflicts with any of the branches you are merging in and need to hand resolve, that is an indication that the development happened in those branches were not independent after all, and you should merge two at a time, documenting how you resolved the conflicts, and the reason why you preferred changes made in one side over the other\&. Otherwise it would make the project history harder to follow, not easier\&.
2095 .SH "SEE ALSO"
2097 \fBgittutorial\fR(7), \fBgittutorial-2\fR(7), \fBgitcvs-migration\fR(7), \fBgit-help\fR(1), \fBgiteveryday\fR(7), \m[blue]\fBThe Git User\(cqs Manual\fR\m[]\&\s-2\u[1]\d\s+2
2098 .SH "GIT"
2100 Part of the \fBgit\fR(1) suite
2101 .SH "NOTES"
2102 .IP " 1." 4
2103 the Git User Manual
2104 .RS 4
2105 \%git-htmldocs/user-manual.html
2107 .IP " 2." 4
2108 Randy Dunlap\(cqs presentation
2109 .RS 4
2110 \%https://web.archive.org/web/20120915203609/http://www.xenotime.net/linux/mentor/linux-mentoring-2006.pdf