Convert usage of GIT and Git into git
[git.git] / Documentation / tutorial.txt
1 A short git tutorial
2 ====================
3
4 Introduction
5 ------------
6
7 This is trying to be a short tutorial on setting up and using a git
8 repository, mainly because being hands-on and using explicit examples is
9 often the best way of explaining what is going on.
10
11 In normal life, most people wouldn't use the "core" git programs
12 directly, but rather script around them to make them more palatable. 
13 Understanding the core git stuff may help some people get those scripts
14 done, though, and it may also be instructive in helping people
15 understand what it is that the higher-level helper scripts are actually
16 doing. 
17
18 The core git is often called "plumbing", with the prettier user
19 interfaces on top of it called "porcelain". You may not want to use the
20 plumbing directly very often, but it can be good to know what the
21 plumbing does for when the porcelain isn't flushing... 
22
23
24 Creating a git repository
25 -------------------------
26
27 Creating a new git repository couldn't be easier: all git repositories start
28 out empty, and the only thing you need to do is find yourself a
29 subdirectory that you want to use as a working tree - either an empty
30 one for a totally new project, or an existing working tree that you want
31 to import into git. 
32
33 For our first example, we're going to start a totally new repository from
34 scratch, with no pre-existing files, and we'll call it `git-tutorial`.
35 To start up, create a subdirectory for it, change into that
36 subdirectory, and initialize the git infrastructure with `git-init-db`:
37
38 ------------------------------------------------
39 mkdir git-tutorial
40 cd git-tutorial
41 git-init-db
42 ------------------------------------------------
43
44 to which git will reply
45
46         defaulting to local storage area
47
48 which is just git's way of saying that you haven't been doing anything
49 strange, and that it will have created a local `.git` directory setup for
50 your new project. You will now have a `.git` directory, and you can
51 inspect that with `ls`. For your new empty project, it should show you
52 three entries, among other things:
53
54  - a symlink called `HEAD`, pointing to `refs/heads/master`
55 +
56 Don't worry about the fact that the file that the `HEAD` link points to
57 doesn't even exist yet -- you haven't created the commit that will
58 start your `HEAD` development branch yet.
59
60  - a subdirectory called `objects`, which will contain all the
61    objects of your project. You should never have any real reason to
62    look at the objects directly, but you might want to know that these
63    objects are what contains all the real 'data' in your repository.
64
65  - a subdirectory called `refs`, which contains references to objects.
66
67 In particular, the `refs` subdirectory will contain two other
68 subdirectories, named `heads` and `tags` respectively. They do
69 exactly what their names imply: they contain references to any number
70 of different 'heads' of development (aka 'branches'), and to any
71 'tags' that you have created to name specific versions in your
72 repository.
73
74 One note: the special `master` head is the default branch, which is
75 why the `.git/HEAD` file was created as a symlink to it even if it
76 doesn't yet exist. Basically, the `HEAD` link is supposed to always
77 point to the branch you are working on right now, and you always
78 start out expecting to work on the `master` branch.
79
80 However, this is only a convention, and you can name your branches
81 anything you want, and don't have to ever even 'have' a `master`
82 branch. A number of the git tools will assume that `.git/HEAD` is
83 valid, though.
84
85 [NOTE]
86 An 'object' is identified by its 160-bit SHA1 hash, aka 'object name',
87 and a reference to an object is always the 40-byte hex
88 representation of that SHA1 name. The files in the `refs`
89 subdirectory are expected to contain these hex references
90 (usually with a final `\'\n\'` at the end), and you should thus
91 expect to see a number of 41-byte files containing these
92 references in these `refs` subdirectories when you actually start
93 populating your tree.
94
95 [NOTE]
96 An advanced user may want to take a look at the
97 link:repository-layout.html[repository layout] document
98 after finishing this tutorial.
99
100 You have now created your first git repository. Of course, since it's
101 empty, that's not very useful, so let's start populating it with data.
102
103
104 Populating a git repository
105 ---------------------------
106
107 We'll keep this simple and stupid, so we'll start off with populating a
108 few trivial files just to get a feel for it.
109
110 Start off with just creating any random files that you want to maintain
111 in your git repository. We'll start off with a few bad examples, just to
112 get a feel for how this works:
113
114 ------------------------------------------------
115 echo "Hello World" >hello
116 echo "Silly example" >example
117 ------------------------------------------------
118
119 you have now created two files in your working tree (aka 'working directory'), but to
120 actually check in your hard work, you will have to go through two steps:
121
122  - fill in the 'index' file (aka 'cache') with the information about your
123    working tree state.
124
125  - commit that index file as an object.
126
127 The first step is trivial: when you want to tell git about any changes
128 to your working tree, you use the `git-update-index` program. That
129 program normally just takes a list of filenames you want to update, but
130 to avoid trivial mistakes, it refuses to add new entries to the cache
131 (or remove existing ones) unless you explicitly tell it that you're
132 adding a new entry with the `\--add` flag (or removing an entry with the
133 `\--remove`) flag.
134
135 So to populate the index with the two files you just created, you can do
136
137 ------------------------------------------------
138 git-update-index --add hello example
139 ------------------------------------------------
140
141 and you have now told git to track those two files.
142
143 In fact, as you did that, if you now look into your object directory,
144 you'll notice that git will have added two new objects to the object
145 database. If you did exactly the steps above, you should now be able to do
146
147         ls .git/objects/??/*
148
149 and see two files:
150
151         .git/objects/55/7db03de997c86a4a028e1ebd3a1ceb225be238 
152         .git/objects/f2/4c74a2e500f5ee1332c86b94199f52b1d1d962
153
154 which correspond with the objects with names of 557db... and f24c7..
155 respectively.
156
157 If you want to, you can use `git-cat-file` to look at those objects, but
158 you'll have to use the object name, not the filename of the object:
159
160         git-cat-file -t 557db03de997c86a4a028e1ebd3a1ceb225be238
161
162 where the `-t` tells `git-cat-file` to tell you what the "type" of the
163 object is. git will tell you that you have a "blob" object (ie just a
164 regular file), and you can see the contents with
165
166         git-cat-file "blob" 557db03
167
168 which will print out "Hello World". The object 557db03 is nothing
169 more than the contents of your file `hello`.
170
171 [NOTE]
172 Don't confuse that object with the file `hello` itself. The
173 object is literally just those specific *contents* of the file, and
174 however much you later change the contents in file `hello`, the object
175 we just looked at will never change. Objects are immutable.
176
177 [NOTE]
178 The second example demonstrates that you can
179 abbreviate the object name to only the first several
180 hexadecimal digits in most places.
181
182 Anyway, as we mentioned previously, you normally never actually take a
183 look at the objects themselves, and typing long 40-character hex
184 names is not something you'd normally want to do. The above digression
185 was just to show that `git-update-index` did something magical, and
186 actually saved away the contents of your files into the git object
187 database.
188
189 Updating the cache did something else too: it created a `.git/index`
190 file. This is the index that describes your current working tree, and
191 something you should be very aware of. Again, you normally never worry
192 about the index file itself, but you should be aware of the fact that
193 you have not actually really "checked in" your files into git so far,
194 you've only *told* git about them.
195
196 However, since git knows about them, you can now start using some of the
197 most basic git commands to manipulate the files or look at their status. 
198
199 In particular, let's not even check in the two files into git yet, we'll
200 start off by adding another line to `hello` first:
201
202 ------------------------------------------------
203 echo "It's a new day for git" >>hello
204 ------------------------------------------------
205
206 and you can now, since you told git about the previous state of `hello`, ask
207 git what has changed in the tree compared to your old index, using the
208 `git-diff-files` command:
209
210 ------------
211 git-diff-files
212 ------------
213
214 Oops. That wasn't very readable. It just spit out its own internal
215 version of a `diff`, but that internal version really just tells you
216 that it has noticed that "hello" has been modified, and that the old object
217 contents it had have been replaced with something else.
218
219 To make it readable, we can tell git-diff-files to output the
220 differences as a patch, using the `-p` flag:
221
222 ------------
223 git-diff-files -p
224 ------------
225
226 which will spit out
227
228 ------------
229 diff --git a/hello b/hello
230 --- a/hello
231 +++ b/hello
232 @@ -1 +1,2 @@
233  Hello World
234 +It's a new day for git
235 ----
236
237 i.e. the diff of the change we caused by adding another line to `hello`.
238
239 In other words, `git-diff-files` always shows us the difference between
240 what is recorded in the index, and what is currently in the working
241 tree. That's very useful.
242
243 A common shorthand for `git-diff-files -p` is to just write `git
244 diff`, which will do the same thing.
245
246
247 Committing git state
248 --------------------
249
250 Now, we want to go to the next stage in git, which is to take the files
251 that git knows about in the index, and commit them as a real tree. We do
252 that in two phases: creating a 'tree' object, and committing that 'tree'
253 object as a 'commit' object together with an explanation of what the
254 tree was all about, along with information of how we came to that state.
255
256 Creating a tree object is trivial, and is done with `git-write-tree`.
257 There are no options or other input: git-write-tree will take the
258 current index state, and write an object that describes that whole
259 index. In other words, we're now tying together all the different
260 filenames with their contents (and their permissions), and we're
261 creating the equivalent of a git "directory" object:
262
263 ------------------------------------------------
264 git-write-tree
265 ------------------------------------------------
266
267 and this will just output the name of the resulting tree, in this case
268 (if you have done exactly as I've described) it should be
269
270         8988da15d077d4829fc51d8544c097def6644dbb
271
272 which is another incomprehensible object name. Again, if you want to,
273 you can use `git-cat-file -t 8988d\...` to see that this time the object
274 is not a "blob" object, but a "tree" object (you can also use
275 `git-cat-file` to actually output the raw object contents, but you'll see
276 mainly a binary mess, so that's less interesting).
277
278 However -- normally you'd never use `git-write-tree` on its own, because
279 normally you always commit a tree into a commit object using the
280 `git-commit-tree` command. In fact, it's easier to not actually use
281 `git-write-tree` on its own at all, but to just pass its result in as an
282 argument to `git-commit-tree`.
283
284 `git-commit-tree` normally takes several arguments -- it wants to know
285 what the 'parent' of a commit was, but since this is the first commit
286 ever in this new repository, and it has no parents, we only need to pass in
287 the object name of the tree. However, `git-commit-tree`
288 also wants to get a commit message
289 on its standard input, and it will write out the resulting object name for the
290 commit to its standard output.
291
292 And this is where we start using the `.git/HEAD` file. The `HEAD` file is
293 supposed to contain the reference to the top-of-tree, and since that's
294 exactly what `git-commit-tree` spits out, we can do this all with a simple
295 shell pipeline:
296
297 ------------------------------------------------
298 echo "Initial commit" | git-commit-tree $(git-write-tree) > .git/HEAD
299 ------------------------------------------------
300
301 which will say:
302
303         Committing initial tree 8988da15d077d4829fc51d8544c097def6644dbb
304
305 just to warn you about the fact that it created a totally new commit
306 that is not related to anything else. Normally you do this only *once*
307 for a project ever, and all later commits will be parented on top of an
308 earlier commit, and you'll never see this "Committing initial tree"
309 message ever again.
310
311 Again, normally you'd never actually do this by hand. There is a
312 helpful script called `git commit` that will do all of this for you. So
313 you could have just written `git commit`
314 instead, and it would have done the above magic scripting for you.
315
316
317 Making a change
318 ---------------
319
320 Remember how we did the `git-update-index` on file `hello` and then we
321 changed `hello` afterward, and could compare the new state of `hello` with the
322 state we saved in the index file? 
323
324 Further, remember how I said that `git-write-tree` writes the contents
325 of the *index* file to the tree, and thus what we just committed was in
326 fact the *original* contents of the file `hello`, not the new ones. We did
327 that on purpose, to show the difference between the index state, and the
328 state in the working tree, and how they don't have to match, even
329 when we commit things.
330
331 As before, if we do `git-diff-files -p` in our git-tutorial project,
332 we'll still see the same difference we saw last time: the index file
333 hasn't changed by the act of committing anything. However, now that we
334 have committed something, we can also learn to use a new command:
335 `git-diff-index`.
336
337 Unlike `git-diff-files`, which showed the difference between the index
338 file and the working tree, `git-diff-index` shows the differences
339 between a committed *tree* and either the index file or the working
340 tree. In other words, `git-diff-index` wants a tree to be diffed
341 against, and before we did the commit, we couldn't do that, because we
342 didn't have anything to diff against. 
343
344 But now we can do
345
346         git-diff-index -p HEAD
347
348 (where `-p` has the same meaning as it did in `git-diff-files`), and it
349 will show us the same difference, but for a totally different reason. 
350 Now we're comparing the working tree not against the index file,
351 but against the tree we just wrote. It just so happens that those two
352 are obviously the same, so we get the same result.
353
354 Again, because this is a common operation, you can also just shorthand
355 it with
356
357         git diff HEAD
358
359 which ends up doing the above for you.
360
361 In other words, `git-diff-index` normally compares a tree against the
362 working tree, but when given the `\--cached` flag, it is told to
363 instead compare against just the index cache contents, and ignore the
364 current working tree state entirely. Since we just wrote the index
365 file to HEAD, doing `git-diff-index \--cached -p HEAD` should thus return
366 an empty set of differences, and that's exactly what it does. 
367
368 [NOTE]
369 ================
370 `git-diff-index` really always uses the index for its
371 comparisons, and saying that it compares a tree against the working
372 tree is thus not strictly accurate. In particular, the list of
373 files to compare (the "meta-data") *always* comes from the index file,
374 regardless of whether the `\--cached` flag is used or not. The `\--cached`
375 flag really only determines whether the file *contents* to be compared
376 come from the working tree or not.
377
378 This is not hard to understand, as soon as you realize that git simply
379 never knows (or cares) about files that it is not told about
380 explicitly. git will never go *looking* for files to compare, it
381 expects you to tell it what the files are, and that's what the index
382 is there for.
383 ================
384
385 However, our next step is to commit the *change* we did, and again, to
386 understand what's going on, keep in mind the difference between "working
387 tree contents", "index file" and "committed tree". We have changes
388 in the working tree that we want to commit, and we always have to
389 work through the index file, so the first thing we need to do is to
390 update the index cache:
391
392 ------------------------------------------------
393 git-update-index hello
394 ------------------------------------------------
395
396 (note how we didn't need the `\--add` flag this time, since git knew
397 about the file already).
398
399 Note what happens to the different `git-diff-\*` versions here. After
400 we've updated `hello` in the index, `git-diff-files -p` now shows no
401 differences, but `git-diff-index -p HEAD` still *does* show that the
402 current state is different from the state we committed. In fact, now
403 `git-diff-index` shows the same difference whether we use the `--cached`
404 flag or not, since now the index is coherent with the working tree.
405
406 Now, since we've updated `hello` in the index, we can commit the new
407 version. We could do it by writing the tree by hand again, and
408 committing the tree (this time we'd have to use the `-p HEAD` flag to
409 tell commit that the HEAD was the *parent* of the new commit, and that
410 this wasn't an initial commit any more), but you've done that once
411 already, so let's just use the helpful script this time:
412
413 ------------------------------------------------
414 git commit
415 ------------------------------------------------
416
417 which starts an editor for you to write the commit message and tells you
418 a bit about what you have done.
419
420 Write whatever message you want, and all the lines that start with '#'
421 will be pruned out, and the rest will be used as the commit message for
422 the change. If you decide you don't want to commit anything after all at
423 this point (you can continue to edit things and update the cache), you
424 can just leave an empty message. Otherwise `git commit` will commit
425 the change for you.
426
427 You've now made your first real git commit. And if you're interested in
428 looking at what `git commit` really does, feel free to investigate:
429 it's a few very simple shell scripts to generate the helpful (?) commit
430 message headers, and a few one-liners that actually do the
431 commit itself (`git-commit`).
432
433
434 Inspecting Changes
435 ------------------
436
437 While creating changes is useful, it's even more useful if you can tell
438 later what changed. The most useful command for this is another of the
439 `diff` family, namely `git-diff-tree`.
440
441 `git-diff-tree` can be given two arbitrary trees, and it will tell you the
442 differences between them. Perhaps even more commonly, though, you can
443 give it just a single commit object, and it will figure out the parent
444 of that commit itself, and show the difference directly. Thus, to get
445 the same diff that we've already seen several times, we can now do
446
447         git-diff-tree -p HEAD
448
449 (again, `-p` means to show the difference as a human-readable patch),
450 and it will show what the last commit (in `HEAD`) actually changed.
451
452 More interestingly, you can also give `git-diff-tree` the `-v` flag, which
453 tells it to also show the commit message and author and date of the
454 commit, and you can tell it to show a whole series of diffs.
455 Alternatively, you can tell it to be "silent", and not show the diffs at
456 all, but just show the actual commit message.
457
458 In fact, together with the `git-rev-list` program (which generates a
459 list of revisions), `git-diff-tree` ends up being a veritable fount of
460 changes. A trivial (but very useful) script called `git-whatchanged` is
461 included with git which does exactly this, and shows a log of recent
462 activities.
463
464 To see the whole history of our pitiful little git-tutorial project, you
465 can do
466
467         git log
468
469 which shows just the log messages, or if we want to see the log together
470 with the associated patches use the more complex (and much more
471 powerful)
472
473         git-whatchanged -p --root
474
475 and you will see exactly what has changed in the repository over its
476 short history. 
477
478 [NOTE]
479 The `\--root` flag is a flag to `git-diff-tree` to tell it to
480 show the initial aka 'root' commit too. Normally you'd probably not
481 want to see the initial import diff, but since the tutorial project
482 was started from scratch and is so small, we use it to make the result
483 a bit more interesting.
484
485 With that, you should now be having some inkling of what git does, and
486 can explore on your own.
487
488 [NOTE]
489 Most likely, you are not directly using the core
490 git Plumbing commands, but using Porcelain like Cogito on top
491 of it. Cogito works a bit differently and you usually do not
492 have to run `git-update-index` yourself for changed files (you
493 do tell underlying git about additions and removals via
494 `cg-add` and `cg-rm` commands). Just before you make a commit
495 with `cg-commit`, Cogito figures out which files you modified,
496 and runs `git-update-index` on them for you.
497
498
499 Tagging a version
500 -----------------
501
502 In git, there are two kinds of tags, a "light" one, and an "annotated tag".
503
504 A "light" tag is technically nothing more than a branch, except we put
505 it in the `.git/refs/tags/` subdirectory instead of calling it a `head`.
506 So the simplest form of tag involves nothing more than
507
508 ------------------------------------------------
509 git tag my-first-tag
510 ------------------------------------------------
511
512 which just writes the current `HEAD` into the `.git/refs/tags/my-first-tag`
513 file, after which point you can then use this symbolic name for that
514 particular state. You can, for example, do
515
516         git diff my-first-tag
517
518 to diff your current state against that tag (which at this point will
519 obviously be an empty diff, but if you continue to develop and commit
520 stuff, you can use your tag as an "anchor-point" to see what has changed
521 since you tagged it.
522
523 An "annotated tag" is actually a real git object, and contains not only a
524 pointer to the state you want to tag, but also a small tag name and
525 message, along with optionally a PGP signature that says that yes,
526 you really did
527 that tag. You create these annotated tags with either the `-a` or
528 `-s` flag to `git tag`:
529
530         git tag -s <tagname>
531
532 which will sign the current `HEAD` (but you can also give it another
533 argument that specifies the thing to tag, ie you could have tagged the
534 current `mybranch` point by using `git tag <tagname> mybranch`).
535
536 You normally only do signed tags for major releases or things
537 like that, while the light-weight tags are useful for any marking you
538 want to do -- any time you decide that you want to remember a certain
539 point, just create a private tag for it, and you have a nice symbolic
540 name for the state at that point.
541
542
543 Copying repositories
544 --------------------
545
546 git repositories are normally totally self-sufficient, and it's worth noting
547 that unlike CVS, for example, there is no separate notion of
548 "repository" and "working tree". A git repository normally *is* the
549 working tree, with the local git information hidden in the `.git`
550 subdirectory. There is nothing else. What you see is what you got.
551
552 [NOTE]
553 You can tell git to split the git internal information from
554 the directory that it tracks, but we'll ignore that for now: it's not
555 how normal projects work, and it's really only meant for special uses.
556 So the mental model of "the git information is always tied directly to
557 the working tree that it describes" may not be technically 100%
558 accurate, but it's a good model for all normal use.
559
560 This has two implications: 
561
562  - if you grow bored with the tutorial repository you created (or you've
563    made a mistake and want to start all over), you can just do simple
564
565         rm -rf git-tutorial
566 +
567 and it will be gone. There's no external repository, and there's no
568 history outside the project you created.
569
570  - if you want to move or duplicate a git repository, you can do so. There
571    is `git clone` command, but if all you want to do is just to
572    create a copy of your repository (with all the full history that
573    went along with it), you can do so with a regular
574    `cp -a git-tutorial new-git-tutorial`.
575 +
576 Note that when you've moved or copied a git repository, your git index
577 file (which caches various information, notably some of the "stat"
578 information for the files involved) will likely need to be refreshed.
579 So after you do a `cp -a` to create a new copy, you'll want to do
580
581         git-update-index --refresh
582 +
583 in the new repository to make sure that the index file is up-to-date.
584
585 Note that the second point is true even across machines. You can
586 duplicate a remote git repository with *any* regular copy mechanism, be it
587 `scp`, `rsync` or `wget`.
588
589 When copying a remote repository, you'll want to at a minimum update the
590 index cache when you do this, and especially with other peoples'
591 repositories you often want to make sure that the index cache is in some
592 known state (you don't know *what* they've done and not yet checked in),
593 so usually you'll precede the `git-update-index` with a
594
595         git-read-tree --reset HEAD
596         git-update-index --refresh
597
598 which will force a total index re-build from the tree pointed to by `HEAD`.
599 It resets the index contents to `HEAD`, and then the `git-update-index`
600 makes sure to match up all index entries with the checked-out files.
601 If the original repository had uncommitted changes in its
602 working tree, `git-update-index --refresh` notices them and
603 tells you they need to be updated.
604
605 The above can also be written as simply
606
607         git reset
608
609 and in fact a lot of the common git command combinations can be scripted
610 with the `git xyz` interfaces.  You can learn things by just looking
611 at what the various git scripts do.  For example, `git reset` is the
612 above two lines implemented in `git-reset`, but some things like
613 `git status` and `git commit` are slightly more complex scripts around
614 the basic git commands.
615
616 Many (most?) public remote repositories will not contain any of
617 the checked out files or even an index file, and will *only* contain the
618 actual core git files. Such a repository usually doesn't even have the
619 `.git` subdirectory, but has all the git files directly in the
620 repository. 
621
622 To create your own local live copy of such a "raw" git repository, you'd
623 first create your own subdirectory for the project, and then copy the
624 raw repository contents into the `.git` directory. For example, to
625 create your own copy of the git repository, you'd do the following
626
627         mkdir my-git
628         cd my-git
629         rsync -rL rsync://rsync.kernel.org/pub/scm/git/git.git/ .git
630
631 followed by 
632
633         git-read-tree HEAD
634
635 to populate the index. However, now you have populated the index, and
636 you have all the git internal files, but you will notice that you don't
637 actually have any of the working tree files to work on. To get
638 those, you'd check them out with
639
640         git-checkout-index -u -a
641
642 where the `-u` flag means that you want the checkout to keep the index
643 up-to-date (so that you don't have to refresh it afterward), and the
644 `-a` flag means "check out all files" (if you have a stale copy or an
645 older version of a checked out tree you may also need to add the `-f`
646 flag first, to tell git-checkout-index to *force* overwriting of any old
647 files). 
648
649 Again, this can all be simplified with
650
651         git clone rsync://rsync.kernel.org/pub/scm/git/git.git/ my-git
652         cd my-git
653         git checkout
654
655 which will end up doing all of the above for you.
656
657 You have now successfully copied somebody else's (mine) remote
658 repository, and checked it out. 
659
660
661 Creating a new branch
662 ---------------------
663
664 Branches in git are really nothing more than pointers into the git
665 object database from within the `.git/refs/` subdirectory, and as we
666 already discussed, the `HEAD` branch is nothing but a symlink to one of
667 these object pointers. 
668
669 You can at any time create a new branch by just picking an arbitrary
670 point in the project history, and just writing the SHA1 name of that
671 object into a file under `.git/refs/heads/`. You can use any filename you
672 want (and indeed, subdirectories), but the convention is that the
673 "normal" branch is called `master`. That's just a convention, though,
674 and nothing enforces it. 
675
676 To show that as an example, let's go back to the git-tutorial repository we
677 used earlier, and create a branch in it. You do that by simply just
678 saying that you want to check out a new branch:
679
680 ------------
681 git checkout -b mybranch
682 ------------
683
684 will create a new branch based at the current `HEAD` position, and switch
685 to it. 
686
687 [NOTE]
688 ================================================
689 If you make the decision to start your new branch at some
690 other point in the history than the current `HEAD`, you can do so by
691 just telling `git checkout` what the base of the checkout would be.
692 In other words, if you have an earlier tag or branch, you'd just do
693
694         git checkout -b mybranch earlier-commit
695
696 and it would create the new branch `mybranch` at the earlier commit,
697 and check out the state at that time.
698 ================================================
699
700 You can always just jump back to your original `master` branch by doing
701
702         git checkout master
703
704 (or any other branch-name, for that matter) and if you forget which
705 branch you happen to be on, a simple
706
707         ls -l .git/HEAD
708
709 will tell you where it's pointing. To get the list of branches
710 you have, you can say
711
712         git branch
713
714 which is nothing more than a simple script around `ls .git/refs/heads`.
715 There will be asterisk in front of the branch you are currently on.
716
717 Sometimes you may wish to create a new branch _without_ actually
718 checking it out and switching to it. If so, just use the command
719
720         git branch <branchname> [startingpoint]
721
722 which will simply _create_ the branch, but will not do anything further. 
723 You can then later -- once you decide that you want to actually develop
724 on that branch -- switch to that branch with a regular `git checkout`
725 with the branchname as the argument.
726
727
728 Merging two branches
729 --------------------
730
731 One of the ideas of having a branch is that you do some (possibly
732 experimental) work in it, and eventually merge it back to the main
733 branch. So assuming you created the above `mybranch` that started out
734 being the same as the original `master` branch, let's make sure we're in
735 that branch, and do some work there.
736
737 ------------------------------------------------
738 git checkout mybranch
739 echo "Work, work, work" >>hello
740 git commit -m 'Some work.' hello
741 ------------------------------------------------
742
743 Here, we just added another line to `hello`, and we used a shorthand for
744 doing both `git-update-index hello` and `git commit` by just giving the
745 filename directly to `git commit`. The `-m` flag is to give the
746 commit log message from the command line.
747
748 Now, to make it a bit more interesting, let's assume that somebody else
749 does some work in the original branch, and simulate that by going back
750 to the master branch, and editing the same file differently there:
751
752 ------------
753 git checkout master
754 ------------
755
756 Here, take a moment to look at the contents of `hello`, and notice how they
757 don't contain the work we just did in `mybranch` -- because that work
758 hasn't happened in the `master` branch at all. Then do
759
760 ------------
761 echo "Play, play, play" >>hello
762 echo "Lots of fun" >>example
763 git commit -m 'Some fun.' hello example
764 ------------
765
766 since the master branch is obviously in a much better mood.
767
768 Now, you've got two branches, and you decide that you want to merge the
769 work done. Before we do that, let's introduce a cool graphical tool that
770 helps you view what's going on:
771
772         gitk --all
773
774 will show you graphically both of your branches (that's what the `\--all`
775 means: normally it will just show you your current `HEAD`) and their
776 histories. You can also see exactly how they came to be from a common
777 source. 
778
779 Anyway, let's exit `gitk` (`^Q` or the File menu), and decide that we want
780 to merge the work we did on the `mybranch` branch into the `master`
781 branch (which is currently our `HEAD` too). To do that, there's a nice
782 script called `git resolve`, which wants to know which branches you want
783 to resolve and what the merge is all about:
784
785 ------------
786 git resolve HEAD mybranch "Merge work in mybranch"
787 ------------
788
789 where the third argument is going to be used as the commit message if
790 the merge can be resolved automatically.
791
792 Now, in this case we've intentionally created a situation where the
793 merge will need to be fixed up by hand, though, so git will do as much
794 of it as it can automatically (which in this case is just merge the `example`
795 file, which had no differences in the `mybranch` branch), and say:
796
797         Simple merge failed, trying Automatic merge
798         Auto-merging hello.
799         merge: warning: conflicts during merge
800         ERROR: Merge conflict in hello.
801         fatal: merge program failed
802         Automatic merge failed, fix up by hand
803
804 which is way too verbose, but it basically tells you that it failed the
805 really trivial merge ("Simple merge") and did an "Automatic merge"
806 instead, but that too failed due to conflicts in `hello`.
807
808 Not to worry. It left the (trivial) conflict in `hello` in the same form you
809 should already be well used to if you've ever used CVS, so let's just
810 open `hello` in our editor (whatever that may be), and fix it up somehow.
811 I'd suggest just making it so that `hello` contains all four lines:
812
813 ------------
814 Hello World
815 It's a new day for git
816 Play, play, play
817 Work, work, work
818 ------------
819
820 and once you're happy with your manual merge, just do a
821
822 ------------
823 git commit hello
824 ------------
825
826 which will very loudly warn you that you're now committing a merge
827 (which is correct, so never mind), and you can write a small merge
828 message about your adventures in git-merge-land.
829
830 After you're done, start up `gitk \--all` to see graphically what the
831 history looks like. Notice that `mybranch` still exists, and you can
832 switch to it, and continue to work with it if you want to. The
833 `mybranch` branch will not contain the merge, but next time you merge it
834 from the `master` branch, git will know how you merged it, so you'll not
835 have to do _that_ merge again.
836
837 Another useful tool, especially if you do not always work in X-Window
838 environment, is `git show-branch`.
839
840 ------------------------------------------------
841 $ git show-branch master mybranch
842 * [master] Merged "mybranch" changes.
843  ! [mybranch] Some work.
844 --
845 +  [master] Merged "mybranch" changes.
846 +  [master~1] Some fun.
847 ++ [mybranch] Some work.
848 ------------------------------------------------
849
850 The first two lines indicate that it is showing the two branches
851 and the first line of the commit log message from their
852 top-of-the-tree commits, you are currently on `master` branch
853 (notice the asterisk `*` character), and the first column for
854 the later output lines is used to show commits contained in the
855 `master` branch, and the second column for the `mybranch`
856 branch. Three commits are shown along with their log messages.
857 All of them have plus `+` characters in the first column, which
858 means they are now part of the `master` branch. Only the "Some
859 work" commit has the plus `+` character in the second column,
860 because `mybranch` has not been merged to incorporate these
861 commits from the master branch.  The string inside brackets
862 before the commit log message is a short name you can use to
863 name the commit.  In the above example, 'master' and 'mybranch'
864 are branch heads.  'master~1' is the first parent of 'master'
865 branch head.  Please see 'git-rev-parse' documentation if you
866 see more complex cases.
867
868 Now, let's pretend you are the one who did all the work in
869 `mybranch`, and the fruit of your hard work has finally been merged
870 to the `master` branch. Let's go back to `mybranch`, and run
871 resolve to get the "upstream changes" back to your branch.
872
873         git checkout mybranch
874         git resolve HEAD master "Merge upstream changes."
875
876 This outputs something like this (the actual commit object names
877 would be different)
878
879         Updating from ae3a2da... to a80b4aa....
880          example |    1 +
881          hello   |    1 +
882          2 files changed, 2 insertions(+), 0 deletions(-)
883
884 Because your branch did not contain anything more than what are
885 already merged into the `master` branch, the resolve operation did
886 not actually do a merge. Instead, it just updated the top of
887 the tree of your branch to that of the `master` branch. This is
888 often called 'fast forward' merge.
889
890 You can run `gitk \--all` again to see how the commit ancestry
891 looks like, or run `show-branch`, which tells you this.
892
893 ------------------------------------------------
894 $ git show-branch master mybranch
895 ! [master] Merged "mybranch" changes.
896  * [mybranch] Merged "mybranch" changes.
897 --
898 ++ [master] Merged "mybranch" changes.
899 ------------------------------------------------
900
901
902 Merging external work
903 ---------------------
904
905 It's usually much more common that you merge with somebody else than
906 merging with your own branches, so it's worth pointing out that git
907 makes that very easy too, and in fact, it's not that different from
908 doing a `git resolve`. In fact, a remote merge ends up being nothing
909 more than "fetch the work from a remote repository into a temporary tag"
910 followed by a `git resolve`.
911
912 Fetching from a remote repository is done by, unsurprisingly,
913 `git fetch`:
914
915         git fetch <remote-repository>
916
917 One of the following transports can be used to name the
918 repository to download from:
919
920 Rsync::
921         `rsync://remote.machine/path/to/repo.git/`
922 +
923 Rsync transport is usable for both uploading and downloading,
924 but is completely unaware of what git does, and can produce
925 unexpected results when you download from the public repository
926 while the repository owner is uploading into it via `rsync`
927 transport.  Most notably, it could update the files under
928 `refs/` which holds the object name of the topmost commits
929 before uploading the files in `objects/` -- the downloader would
930 obtain head commit object name while that object itself is still
931 not available in the repository.  For this reason, it is
932 considered deprecated.
933
934 SSH::
935         `remote.machine:/path/to/repo.git/` or
936 +
937 `ssh://remote.machine/path/to/repo.git/`
938 +
939 This transport can be used for both uploading and downloading,
940 and requires you to have a log-in privilege over `ssh` to the
941 remote machine.  It finds out the set of objects the other side
942 lacks by exchanging the head commits both ends have and
943 transfers (close to) minimum set of objects.  It is by far the
944 most efficient way to exchange git objects between repositories.
945
946 Local directory::
947         `/path/to/repo.git/`
948 +
949 This transport is the same as SSH transport but uses `sh` to run
950 both ends on the local machine instead of running other end on
951 the remote machine via `ssh`.
952
953 git Native::
954         `git://remote.machine/path/to/repo.git/`
955 +
956 This transport was designed for anonymous downloading.  Like SSH
957 transport, it finds out the set of objects the downstream side
958 lacks and transfers (close to) minimum set of objects.
959
960 HTTP(s)::
961         `http://remote.machine/path/to/repo.git/`
962 +
963 HTTP and HTTPS transport are used only for downloading.  They
964 first obtain the topmost commit object name from the remote site
965 by looking at `repo.git/info/refs` file, tries to obtain the
966 commit object by downloading from `repo.git/objects/xx/xxx\...`
967 using the object name of that commit object.  Then it reads the
968 commit object to find out its parent commits and the associate
969 tree object; it repeats this process until it gets all the
970 necessary objects.  Because of this behaviour, they are
971 sometimes also called 'commit walkers'.
972 +
973 The 'commit walkers' are sometimes also called 'dumb
974 transports', because they do not require any git aware smart
975 server like git Native transport does.  Any stock HTTP server
976 would suffice.
977 +
978 There are (confusingly enough) `git-ssh-fetch` and `git-ssh-upload`
979 programs, which are 'commit walkers'; they outlived their
980 usefulness when git Native and SSH transports were introduced,
981 and not used by `git pull` or `git push` scripts.
982
983 Once you fetch from the remote repository, you `resolve` that
984 with your current branch.
985
986 However -- it's such a common thing to `fetch` and then
987 immediately `resolve`, that it's called `git pull`, and you can
988 simply do
989
990         git pull <remote-repository>
991
992 and optionally give a branch-name for the remote end as a second
993 argument.
994
995 [NOTE]
996 You could do without using any branches at all, by
997 keeping as many local repositories as you would like to have
998 branches, and merging between them with `git pull`, just like
999 you merge between branches. The advantage of this approach is
1000 that it lets you keep set of files for each `branch` checked
1001 out and you may find it easier to switch back and forth if you
1002 juggle multiple lines of development simultaneously. Of
1003 course, you will pay the price of more disk usage to hold
1004 multiple working trees, but disk space is cheap these days.
1005
1006 [NOTE]
1007 You could even pull from your own repository by
1008 giving '.' as <remote-repository> parameter to `git pull`.
1009
1010 It is likely that you will be pulling from the same remote
1011 repository from time to time. As a short hand, you can store
1012 the remote repository URL in a file under .git/remotes/
1013 directory, like this:
1014
1015 ------------------------------------------------
1016 mkdir -p .git/remotes/
1017 cat >.git/remotes/linus <<\EOF
1018 URL: http://www.kernel.org/pub/scm/git/git.git/
1019 EOF
1020 ------------------------------------------------
1021
1022 and use the filename to `git pull` instead of the full URL.
1023 The URL specified in such file can even be a prefix
1024 of a full URL, like this:
1025
1026 ------------------------------------------------
1027 cat >.git/remotes/jgarzik <<\EOF
1028 URL: http://www.kernel.org/pub/scm/linux/git/jgarzik/
1029 EOF
1030 ------------------------------------------------
1031
1032
1033 Examples.
1034
1035 . `git pull linus`
1036 . `git pull linus tag v0.99.1`
1037 . `git pull jgarzik/netdev-2.6.git/ e100`
1038
1039 the above are equivalent to:
1040
1041 . `git pull http://www.kernel.org/pub/scm/git/git.git/ HEAD`
1042 . `git pull http://www.kernel.org/pub/scm/git/git.git/ tag v0.99.1`
1043 . `git pull http://www.kernel.org/pub/.../jgarzik/netdev-2.6.git e100`
1044
1045
1046 Publishing your work
1047 --------------------
1048
1049 So we can use somebody else's work from a remote repository; but
1050 how can *you* prepare a repository to let other people pull from
1051 it?
1052
1053 Your do your real work in your working tree that has your
1054 primary repository hanging under it as its `.git` subdirectory.
1055 You *could* make that repository accessible remotely and ask
1056 people to pull from it, but in practice that is not the way
1057 things are usually done. A recommended way is to have a public
1058 repository, make it reachable by other people, and when the
1059 changes you made in your primary working tree are in good shape,
1060 update the public repository from it. This is often called
1061 'pushing'.
1062
1063 [NOTE]
1064 This public repository could further be mirrored, and that is
1065 how git repositories at `kernel.org` are managed.
1066
1067 Publishing the changes from your local (private) repository to
1068 your remote (public) repository requires a write privilege on
1069 the remote machine. You need to have an SSH account there to
1070 run a single command, `git-receive-pack`.
1071
1072 First, you need to create an empty repository on the remote
1073 machine that will house your public repository. This empty
1074 repository will be populated and be kept up-to-date by pushing
1075 into it later. Obviously, this repository creation needs to be
1076 done only once.
1077
1078 [NOTE]
1079 `git push` uses a pair of programs,
1080 `git-send-pack` on your local machine, and `git-receive-pack`
1081 on the remote machine. The communication between the two over
1082 the network internally uses an SSH connection.
1083
1084 Your private repository's git directory is usually `.git`, but
1085 your public repository is often named after the project name,
1086 i.e. `<project>.git`. Let's create such a public repository for
1087 project `my-git`. After logging into the remote machine, create
1088 an empty directory:
1089
1090         mkdir my-git.git
1091
1092 Then, make that directory into a git repository by running
1093 `git init-db`, but this time, since its name is not the usual
1094 `.git`, we do things slightly differently:
1095
1096         GIT_DIR=my-git.git git-init-db
1097
1098 Make sure this directory is available for others you want your
1099 changes to be pulled by via the transport of your choice. Also
1100 you need to make sure that you have the `git-receive-pack`
1101 program on the `$PATH`.
1102
1103 [NOTE]
1104 Many installations of sshd do not invoke your shell as the login
1105 shell when you directly run programs; what this means is that if
1106 your login shell is `bash`, only `.bashrc` is read and not
1107 `.bash_profile`. As a workaround, make sure `.bashrc` sets up
1108 `$PATH` so that you can run `git-receive-pack` program.
1109
1110 [NOTE]
1111 If you plan to publish this repository to be accessed over http,
1112 you should do `chmod +x my-git.git/hooks/post-update` at this
1113 point.  This makes sure that every time you push into this
1114 repository, `git-update-server-info` is run.
1115
1116 Your "public repository" is now ready to accept your changes.
1117 Come back to the machine you have your private repository. From
1118 there, run this command:
1119
1120         git push <public-host>:/path/to/my-git.git master
1121
1122 This synchronizes your public repository to match the named
1123 branch head (i.e. `master` in this case) and objects reachable
1124 from them in your current repository.
1125
1126 As a real example, this is how I update my public git
1127 repository. Kernel.org mirror network takes care of the
1128 propagation to other publicly visible machines:
1129
1130         git push master.kernel.org:/pub/scm/git/git.git/ 
1131
1132
1133 Packing your repository
1134 -----------------------
1135
1136 Earlier, we saw that one file under `.git/objects/??/` directory
1137 is stored for each git object you create. This representation
1138 is efficient to create atomically and safely, but
1139 not so convenient to transport over the network. Since git objects are
1140 immutable once they are created, there is a way to optimize the
1141 storage by "packing them together". The command
1142
1143         git repack
1144
1145 will do it for you. If you followed the tutorial examples, you
1146 would have accumulated about 17 objects in `.git/objects/??/`
1147 directories by now. `git repack` tells you how many objects it
1148 packed, and stores the packed file in `.git/objects/pack`
1149 directory.
1150
1151 [NOTE]
1152 You will see two files, `pack-\*.pack` and `pack-\*.idx`,
1153 in `.git/objects/pack` directory. They are closely related to
1154 each other, and if you ever copy them by hand to a different
1155 repository for whatever reason, you should make sure you copy
1156 them together. The former holds all the data from the objects
1157 in the pack, and the latter holds the index for random
1158 access.
1159
1160 If you are paranoid, running `git-verify-pack` command would
1161 detect if you have a corrupt pack, but do not worry too much.
1162 Our programs are always perfect ;-).
1163
1164 Once you have packed objects, you do not need to leave the
1165 unpacked objects that are contained in the pack file anymore.
1166
1167         git prune-packed
1168
1169 would remove them for you.
1170
1171 You can try running `find .git/objects -type f` before and after
1172 you run `git prune-packed` if you are curious.  Also `git
1173 count-objects` would tell you how many unpacked objects are in
1174 your repository and how much space they are consuming.
1175
1176 [NOTE]
1177 `git pull` is slightly cumbersome for HTTP transport, as a
1178 packed repository may contain relatively few objects in a
1179 relatively large pack. If you expect many HTTP pulls from your
1180 public repository you might want to repack & prune often, or
1181 never.
1182
1183 If you run `git repack` again at this point, it will say
1184 "Nothing to pack". Once you continue your development and
1185 accumulate the changes, running `git repack` again will create a
1186 new pack, that contains objects created since you packed your
1187 repository the last time. We recommend that you pack your project
1188 soon after the initial import (unless you are starting your
1189 project from scratch), and then run `git repack` every once in a
1190 while, depending on how active your project is.
1191
1192 When a repository is synchronized via `git push` and `git pull`
1193 objects packed in the source repository are usually stored
1194 unpacked in the destination, unless rsync transport is used.
1195 While this allows you to use different packing strategies on
1196 both ends, it also means you may need to repack both
1197 repositories every once in a while.
1198
1199
1200 Working with Others
1201 -------------------
1202
1203 Although git is a truly distributed system, it is often
1204 convenient to organize your project with an informal hierarchy
1205 of developers. Linux kernel development is run this way. There
1206 is a nice illustration (page 17, "Merges to Mainline") in Randy
1207 Dunlap's presentation (`http://tinyurl.com/a2jdg`).
1208
1209 It should be stressed that this hierarchy is purely *informal*.
1210 There is nothing fundamental in git that enforces the "chain of
1211 patch flow" this hierarchy implies. You do not have to pull
1212 from only one remote repository.
1213
1214 A recommended workflow for a "project lead" goes like this:
1215
1216 1. Prepare your primary repository on your local machine. Your
1217    work is done there.
1218
1219 2. Prepare a public repository accessible to others.
1220 +
1221 If other people are pulling from your repository over dumb
1222 transport protocols, you need to keep this repository 'dumb
1223 transport friendly'.  After `git init-db`,
1224 `$GIT_DIR/hooks/post-update` copied from the standard templates
1225 would contain a call to `git-update-server-info` but the
1226 `post-update` hook itself is disabled by default -- enable it
1227 with `chmod +x post-update`.
1228
1229 3. Push into the public repository from your primary
1230    repository.
1231
1232 4. `git repack` the public repository. This establishes a big
1233    pack that contains the initial set of objects as the
1234    baseline, and possibly `git prune` if the transport
1235    used for pulling from your repository supports packed
1236    repositories.
1237
1238 5. Keep working in your primary repository. Your changes
1239    include modifications of your own, patches you receive via
1240    e-mails, and merges resulting from pulling the "public"
1241    repositories of your "subsystem maintainers".
1242 +
1243 You can repack this private repository whenever you feel like.
1244
1245 6. Push your changes to the public repository, and announce it
1246    to the public.
1247
1248 7. Every once in a while, "git repack" the public repository.
1249    Go back to step 5. and continue working.
1250
1251
1252 A recommended work cycle for a "subsystem maintainer" who works
1253 on that project and has an own "public repository" goes like this:
1254
1255 1. Prepare your work repository, by `git clone` the public
1256    repository of the "project lead". The URL used for the
1257    initial cloning is stored in `.git/remotes/origin`.
1258
1259 2. Prepare a public repository accessible to others, just like
1260    the "project lead" person does.
1261
1262 3. Copy over the packed files from "project lead" public
1263    repository to your public repository.
1264
1265 4. Push into the public repository from your primary
1266    repository. Run `git repack`, and possibly `git prune` if the
1267    transport used for pulling from your repository supports
1268    packed repositories.
1269
1270 5. Keep working in your primary repository. Your changes
1271    include modifications of your own, patches you receive via
1272    e-mails, and merges resulting from pulling the "public"
1273    repositories of your "project lead" and possibly your
1274    "sub-subsystem maintainers".
1275 +
1276 You can repack this private repository whenever you feel
1277 like.
1278
1279 6. Push your changes to your public repository, and ask your
1280    "project lead" and possibly your "sub-subsystem
1281    maintainers" to pull from it.
1282
1283 7. Every once in a while, `git repack` the public repository.
1284    Go back to step 5. and continue working.
1285
1286
1287 A recommended work cycle for an "individual developer" who does
1288 not have a "public" repository is somewhat different. It goes
1289 like this:
1290
1291 1. Prepare your work repository, by `git clone` the public
1292    repository of the "project lead" (or a "subsystem
1293    maintainer", if you work on a subsystem). The URL used for
1294    the initial cloning is stored in `.git/remotes/origin`.
1295
1296 2. Do your work in your repository on 'master' branch.
1297
1298 3. Run `git fetch origin` from the public repository of your
1299    upstream every once in a while. This does only the first
1300    half of `git pull` but does not merge. The head of the
1301    public repository is stored in `.git/refs/heads/origin`.
1302
1303 4. Use `git cherry origin` to see which ones of your patches
1304    were accepted, and/or use `git rebase origin` to port your
1305    unmerged changes forward to the updated upstream.
1306
1307 5. Use `git format-patch origin` to prepare patches for e-mail
1308    submission to your upstream and send it out. Go back to
1309    step 2. and continue.
1310
1311
1312 Working with Others, Shared Repository Style
1313 --------------------------------------------
1314
1315 If you are coming from CVS background, the style of cooperation
1316 suggested in the previous section may be new to you. You do not
1317 have to worry. git supports "shared public repository" style of
1318 cooperation you are probably more familiar with as well.
1319
1320 For this, set up a public repository on a machine that is
1321 reachable via SSH by people with "commit privileges".  Put the
1322 committers in the same user group and make the repository
1323 writable by that group.
1324
1325 You, as an individual committer, then:
1326
1327 - First clone the shared repository to a local repository:
1328 ------------------------------------------------
1329 $ git clone repo.shared.xz:/pub/scm/project.git/ my-project
1330 $ cd my-project
1331 $ hack away
1332 ------------------------------------------------
1333
1334 - Merge the work others might have done while you were hacking
1335   away:
1336 ------------------------------------------------
1337 $ git pull origin
1338 $ test the merge result
1339 ------------------------------------------------
1340 [NOTE]
1341 ================================
1342 The first `git clone` would have placed the following in
1343 `my-project/.git/remotes/origin` file, and that's why this and
1344 the next step work.
1345 ------------
1346 URL: repo.shared.xz:/pub/scm/project.git/ my-project
1347 Pull: master:origin
1348 ------------
1349 ================================
1350
1351 - push your work as the new head of the shared
1352   repository.
1353 ------------------------------------------------
1354 $ git push origin master
1355 ------------------------------------------------
1356 If somebody else pushed into the same shared repository while
1357 you were working locally, `git push` in the last step would
1358 complain, telling you that the remote `master` head does not
1359 fast forward.  You need to pull and merge those other changes
1360 back before you push your work when it happens.
1361
1362
1363 Bundling your work together
1364 ---------------------------
1365
1366 It is likely that you will be working on more than one thing at
1367 a time.  It is easy to use those more-or-less independent tasks
1368 using branches with git.
1369
1370 We have already seen how branches work in a previous example,
1371 with "fun and work" example using two branches.  The idea is the
1372 same if there are more than two branches.  Let's say you started
1373 out from "master" head, and have some new code in the "master"
1374 branch, and two independent fixes in the "commit-fix" and
1375 "diff-fix" branches:
1376
1377 ------------
1378 $ git show-branch
1379 ! [commit-fix] Fix commit message normalization.
1380  ! [diff-fix] Fix rename detection.
1381   * [master] Release candidate #1
1382 ---
1383  +  [diff-fix] Fix rename detection.
1384  +  [diff-fix~1] Better common substring algorithm.
1385 +   [commit-fix] Fix commit message normalization.
1386   + [master] Release candidate #1
1387 +++ [diff-fix~2] Pretty-print messages.
1388 ------------
1389
1390 Both fixes are tested well, and at this point, you want to merge
1391 in both of them.  You could merge in 'diff-fix' first and then
1392 'commit-fix' next, like this:
1393
1394 ------------
1395 $ git resolve master diff-fix 'Merge fix in diff-fix'
1396 $ git resolve master commit-fix 'Merge fix in commit-fix'
1397 ------------
1398
1399 Which would result in:
1400
1401 ------------
1402 $ git show-branch
1403 ! [commit-fix] Fix commit message normalization.
1404  ! [diff-fix] Fix rename detection.
1405   * [master] Merge fix in commit-fix
1406 ---
1407   + [master] Merge fix in commit-fix
1408 + + [commit-fix] Fix commit message normalization.
1409   + [master~1] Merge fix in diff-fix
1410  ++ [diff-fix] Fix rename detection.
1411  ++ [diff-fix~1] Better common substring algorithm.
1412   + [master~2] Release candidate #1
1413 +++ [master~3] Pretty-print messages.
1414 ------------
1415
1416 However, there is no particular reason to merge in one branch
1417 first and the other next, when what you have are a set of truly
1418 independent changes (if the order mattered, then they are not
1419 independent by definition).  You could instead merge those two
1420 branches into the current branch at once.  First let's undo what
1421 we just did and start over.  We would want to get the master
1422 branch before these two merges by resetting it to 'master~2':
1423
1424 ------------
1425 $ git reset --hard master~2
1426 ------------
1427
1428 You can make sure 'git show-branch' matches the state before
1429 those two 'git resolve' you just did.  Then, instead of running
1430 two 'git resolve' commands in a row, you would pull these two
1431 branch heads (this is known as 'making an Octopus'):
1432
1433 ------------
1434 $ git pull . commit-fix diff-fix
1435 $ git show-branch
1436 ! [commit-fix] Fix commit message normalization.
1437  ! [diff-fix] Fix rename detection.
1438   * [master] Octopus merge of branches 'diff-fix' and 'commit-fix'
1439 ---
1440   + [master] Octopus merge of branches 'diff-fix' and 'commit-fix'
1441 + + [commit-fix] Fix commit message normalization.
1442  ++ [diff-fix] Fix rename detection.
1443  ++ [diff-fix~1] Better common substring algorithm.
1444   + [master~1] Release candidate #1
1445 +++ [master~2] Pretty-print messages.
1446 ------------
1447
1448 Note that you should not do Octopus because you can.  An octopus
1449 is a valid thing to do and often makes it easier to view the
1450 commit history if you are pulling more than two independent
1451 changes at the same time.  However, if you have merge conflicts
1452 with any of the branches you are merging in and need to hand
1453 resolve, that is an indication that the development happened in
1454 those branches were not independent after all, and you should
1455 merge two at a time, documenting how you resolved the conflicts,
1456 and the reason why you preferred changes made in one side over
1457 the other.  Otherwise it would make the project history harder
1458 to follow, not easier.
1459
1460 [ to be continued.. cvsimports ]