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