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