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