1c3f0e65f1bfecc7b23c0765f7341b1c6572ca91
   1Git User's Manual (for version 1.5.1 or newer)
   2______________________________________________
   3
   4
   5Git is a fast distributed revision control system.
   6
   7This manual is designed to be readable by someone with basic unix
   8command-line skills, but no previous knowledge of git.
   9
  10<<repositories-and-branches>> and <<exploring-git-history>> explain how
  11to fetch and study a project using git--read these chapters to learn how
  12to build and test a particular version of a software project, search for
  13regressions, and so on.
  14
  15People needing to do actual development will also want to read
  16<<Developing-with-git>> and <<sharing-development>>.
  17
  18Further chapters cover more specialized topics.
  19
  20Comprehensive reference documentation is available through the man
  21pages.  For a command such as "git clone", just use
  22
  23------------------------------------------------
  24$ man git-clone
  25------------------------------------------------
  26
  27See also <<git-quick-start>> for a brief overview of git commands,
  28without any explanation.
  29
  30Finally, see <<todo>> for ways that you can help make this manual more
  31complete.
  32
  33
  34[[repositories-and-branches]]
  35Repositories and Branches
  36=========================
  37
  38[[how-to-get-a-git-repository]]
  39How to get a git repository
  40---------------------------
  41
  42It will be useful to have a git repository to experiment with as you
  43read this manual.
  44
  45The best way to get one is by using the gitlink:git-clone[1] command to
  46download a copy of an existing repository.  If you don't already have a
  47project in mind, here are some interesting examples:
  48
  49------------------------------------------------
  50        # git itself (approx. 10MB download):
  51$ git clone git://git.kernel.org/pub/scm/git/git.git
  52        # the linux kernel (approx. 150MB download):
  53$ git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git
  54------------------------------------------------
  55
  56The initial clone may be time-consuming for a large project, but you
  57will only need to clone once.
  58
  59The clone command creates a new directory named after the project
  60("git" or "linux-2.6" in the examples above).  After you cd into this
  61directory, you will see that it contains a copy of the project files,
  62together with a special top-level directory named ".git", which
  63contains all the information about the history of the project.
  64
  65[[how-to-check-out]]
  66How to check out a different version of a project
  67-------------------------------------------------
  68
  69Git is best thought of as a tool for storing the history of a collection
  70of files.  It stores the history as a compressed collection of
  71interrelated snapshots of the project's contents.  In git each such
  72version is called a <<def_commit,commit>>.
  73
  74A single git repository may contain multiple branches.  It keeps track
  75of them by keeping a list of <<def_head,heads>> which reference the
  76latest commit on each branch; the gitlink:git-branch[1] command shows
  77you the list of branch heads:
  78
  79------------------------------------------------
  80$ git branch
  81* master
  82------------------------------------------------
  83
  84A freshly cloned repository contains a single branch head, by default
  85named "master", with the working directory initialized to the state of
  86the project referred to by that branch head.
  87
  88Most projects also use <<def_tag,tags>>.  Tags, like heads, are
  89references into the project's history, and can be listed using the
  90gitlink:git-tag[1] command:
  91
  92------------------------------------------------
  93$ git tag -l
  94v2.6.11
  95v2.6.11-tree
  96v2.6.12
  97v2.6.12-rc2
  98v2.6.12-rc3
  99v2.6.12-rc4
 100v2.6.12-rc5
 101v2.6.12-rc6
 102v2.6.13
 103...
 104------------------------------------------------
 105
 106Tags are expected to always point at the same version of a project,
 107while heads are expected to advance as development progresses.
 108
 109Create a new branch head pointing to one of these versions and check it
 110out using gitlink:git-checkout[1]:
 111
 112------------------------------------------------
 113$ git checkout -b new v2.6.13
 114------------------------------------------------
 115
 116The working directory then reflects the contents that the project had
 117when it was tagged v2.6.13, and gitlink:git-branch[1] shows two
 118branches, with an asterisk marking the currently checked-out branch:
 119
 120------------------------------------------------
 121$ git branch
 122  master
 123* new
 124------------------------------------------------
 125
 126If you decide that you'd rather see version 2.6.17, you can modify
 127the current branch to point at v2.6.17 instead, with
 128
 129------------------------------------------------
 130$ git reset --hard v2.6.17
 131------------------------------------------------
 132
 133Note that if the current branch head was your only reference to a
 134particular point in history, then resetting that branch may leave you
 135with no way to find the history it used to point to; so use this command
 136carefully.
 137
 138[[understanding-commits]]
 139Understanding History: Commits
 140------------------------------
 141
 142Every change in the history of a project is represented by a commit.
 143The gitlink:git-show[1] command shows the most recent commit on the
 144current branch:
 145
 146------------------------------------------------
 147$ git show
 148commit 17cf781661e6d38f737f15f53ab552f1e95960d7
 149Author: Linus Torvalds <torvalds@ppc970.osdl.org.(none)>
 150Date:   Tue Apr 19 14:11:06 2005 -0700
 151
 152    Remove duplicate getenv(DB_ENVIRONMENT) call
 153
 154    Noted by Tony Luck.
 155
 156diff --git a/init-db.c b/init-db.c
 157index 65898fa..b002dc6 100644
 158--- a/init-db.c
 159+++ b/init-db.c
 160@@ -7,7 +7,7 @@
 161 
 162 int main(int argc, char **argv)
 163 {
 164-       char *sha1_dir = getenv(DB_ENVIRONMENT), *path;
 165+       char *sha1_dir, *path;
 166        int len, i;
 167 
 168        if (mkdir(".git", 0755) < 0) {
 169------------------------------------------------
 170
 171As you can see, a commit shows who made the latest change, what they
 172did, and why.
 173
 174Every commit has a 40-hexdigit id, sometimes called the "object name" or the
 175"SHA1 id", shown on the first line of the "git show" output.  You can usually
 176refer to a commit by a shorter name, such as a tag or a branch name, but this
 177longer name can also be useful.  Most importantly, it is a globally unique
 178name for this commit: so if you tell somebody else the object name (for
 179example in email), then you are guaranteed that name will refer to the same
 180commit in their repository that it does in yours (assuming their repository
 181has that commit at all).  Since the object name is computed as a hash over the
 182contents of the commit, you are guaranteed that the commit can never change
 183without its name also changing.
 184
 185In fact, in <<git-internals>> we shall see that everything stored in git
 186history, including file data and directory contents, is stored in an object
 187with a name that is a hash of its contents.
 188
 189[[understanding-reachability]]
 190Understanding history: commits, parents, and reachability
 191~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 192
 193Every commit (except the very first commit in a project) also has a
 194parent commit which shows what happened before this commit.
 195Following the chain of parents will eventually take you back to the
 196beginning of the project.
 197
 198However, the commits do not form a simple list; git allows lines of
 199development to diverge and then reconverge, and the point where two
 200lines of development reconverge is called a "merge".  The commit
 201representing a merge can therefore have more than one parent, with
 202each parent representing the most recent commit on one of the lines
 203of development leading to that point.
 204
 205The best way to see how this works is using the gitlink:gitk[1]
 206command; running gitk now on a git repository and looking for merge
 207commits will help understand how the git organizes history.
 208
 209In the following, we say that commit X is "reachable" from commit Y
 210if commit X is an ancestor of commit Y.  Equivalently, you could say
 211that Y is a descendent of X, or that there is a chain of parents
 212leading from commit Y to commit X.
 213
 214[[history-diagrams]]
 215Understanding history: History diagrams
 216~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 217
 218We will sometimes represent git history using diagrams like the one
 219below.  Commits are shown as "o", and the links between them with
 220lines drawn with - / and \.  Time goes left to right:
 221
 222
 223................................................
 224         o--o--o <-- Branch A
 225        /
 226 o--o--o <-- master
 227        \
 228         o--o--o <-- Branch B
 229................................................
 230
 231If we need to talk about a particular commit, the character "o" may
 232be replaced with another letter or number.
 233
 234[[what-is-a-branch]]
 235Understanding history: What is a branch?
 236~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 237
 238When we need to be precise, we will use the word "branch" to mean a line
 239of development, and "branch head" (or just "head") to mean a reference
 240to the most recent commit on a branch.  In the example above, the branch
 241head named "A" is a pointer to one particular commit, but we refer to
 242the line of three commits leading up to that point as all being part of
 243"branch A".
 244
 245However, when no confusion will result, we often just use the term
 246"branch" both for branches and for branch heads.
 247
 248[[manipulating-branches]]
 249Manipulating branches
 250---------------------
 251
 252Creating, deleting, and modifying branches is quick and easy; here's
 253a summary of the commands:
 254
 255git branch::
 256        list all branches
 257git branch <branch>::
 258        create a new branch named <branch>, referencing the same
 259        point in history as the current branch
 260git branch <branch> <start-point>::
 261        create a new branch named <branch>, referencing
 262        <start-point>, which may be specified any way you like,
 263        including using a branch name or a tag name
 264git branch -d <branch>::
 265        delete the branch <branch>; if the branch you are deleting
 266        points to a commit which is not reachable from the current
 267        branch, this command will fail with a warning.
 268git branch -D <branch>::
 269        even if the branch points to a commit not reachable
 270        from the current branch, you may know that that commit
 271        is still reachable from some other branch or tag.  In that
 272        case it is safe to use this command to force git to delete
 273        the branch.
 274git checkout <branch>::
 275        make the current branch <branch>, updating the working
 276        directory to reflect the version referenced by <branch>
 277git checkout -b <new> <start-point>::
 278        create a new branch <new> referencing <start-point>, and
 279        check it out.
 280
 281The special symbol "HEAD" can always be used to refer to the current
 282branch.  In fact, git uses a file named "HEAD" in the .git directory to
 283remember which branch is current:
 284
 285------------------------------------------------
 286$ cat .git/HEAD
 287ref: refs/heads/master
 288------------------------------------------------
 289
 290[[detached-head]]
 291Examining an old version without creating a new branch
 292------------------------------------------------------
 293
 294The git-checkout command normally expects a branch head, but will also
 295accept an arbitrary commit; for example, you can check out the commit
 296referenced by a tag:
 297
 298------------------------------------------------
 299$ git checkout v2.6.17
 300Note: moving to "v2.6.17" which isn't a local branch
 301If you want to create a new branch from this checkout, you may do so
 302(now or later) by using -b with the checkout command again. Example:
 303  git checkout -b <new_branch_name>
 304HEAD is now at 427abfa... Linux v2.6.17
 305------------------------------------------------
 306
 307The HEAD then refers to the SHA1 of the commit instead of to a branch,
 308and git branch shows that you are no longer on a branch:
 309
 310------------------------------------------------
 311$ cat .git/HEAD
 312427abfa28afedffadfca9dd8b067eb6d36bac53f
 313$ git branch
 314* (no branch)
 315  master
 316------------------------------------------------
 317
 318In this case we say that the HEAD is "detached".
 319
 320This is an easy way to check out a particular version without having to
 321make up a name for the new branch.   You can still create a new branch
 322(or tag) for this version later if you decide to.
 323
 324[[examining-remote-branches]]
 325Examining branches from a remote repository
 326-------------------------------------------
 327
 328The "master" branch that was created at the time you cloned is a copy
 329of the HEAD in the repository that you cloned from.  That repository
 330may also have had other branches, though, and your local repository
 331keeps branches which track each of those remote branches, which you
 332can view using the "-r" option to gitlink:git-branch[1]:
 333
 334------------------------------------------------
 335$ git branch -r
 336  origin/HEAD
 337  origin/html
 338  origin/maint
 339  origin/man
 340  origin/master
 341  origin/next
 342  origin/pu
 343  origin/todo
 344------------------------------------------------
 345
 346You cannot check out these remote-tracking branches, but you can
 347examine them on a branch of your own, just as you would a tag:
 348
 349------------------------------------------------
 350$ git checkout -b my-todo-copy origin/todo
 351------------------------------------------------
 352
 353Note that the name "origin" is just the name that git uses by default
 354to refer to the repository that you cloned from.
 355
 356[[how-git-stores-references]]
 357Naming branches, tags, and other references
 358-------------------------------------------
 359
 360Branches, remote-tracking branches, and tags are all references to
 361commits.  All references are named with a slash-separated path name
 362starting with "refs"; the names we've been using so far are actually
 363shorthand:
 364
 365        - The branch "test" is short for "refs/heads/test".
 366        - The tag "v2.6.18" is short for "refs/tags/v2.6.18".
 367        - "origin/master" is short for "refs/remotes/origin/master".
 368
 369The full name is occasionally useful if, for example, there ever
 370exists a tag and a branch with the same name.
 371
 372As another useful shortcut, the "HEAD" of a repository can be referred
 373to just using the name of that repository.  So, for example, "origin"
 374is usually a shortcut for the HEAD branch in the repository "origin".
 375
 376For the complete list of paths which git checks for references, and
 377the order it uses to decide which to choose when there are multiple
 378references with the same shorthand name, see the "SPECIFYING
 379REVISIONS" section of gitlink:git-rev-parse[1].
 380
 381[[Updating-a-repository-with-git-fetch]]
 382Updating a repository with git fetch
 383------------------------------------
 384
 385Eventually the developer cloned from will do additional work in her
 386repository, creating new commits and advancing the branches to point
 387at the new commits.
 388
 389The command "git fetch", with no arguments, will update all of the
 390remote-tracking branches to the latest version found in her
 391repository.  It will not touch any of your own branches--not even the
 392"master" branch that was created for you on clone.
 393
 394[[fetching-branches]]
 395Fetching branches from other repositories
 396-----------------------------------------
 397
 398You can also track branches from repositories other than the one you
 399cloned from, using gitlink:git-remote[1]:
 400
 401-------------------------------------------------
 402$ git remote add linux-nfs git://linux-nfs.org/pub/nfs-2.6.git
 403$ git fetch linux-nfs
 404* refs/remotes/linux-nfs/master: storing branch 'master' ...
 405  commit: bf81b46
 406-------------------------------------------------
 407
 408New remote-tracking branches will be stored under the shorthand name
 409that you gave "git remote add", in this case linux-nfs:
 410
 411-------------------------------------------------
 412$ git branch -r
 413linux-nfs/master
 414origin/master
 415-------------------------------------------------
 416
 417If you run "git fetch <remote>" later, the tracking branches for the
 418named <remote> will be updated.
 419
 420If you examine the file .git/config, you will see that git has added
 421a new stanza:
 422
 423-------------------------------------------------
 424$ cat .git/config
 425...
 426[remote "linux-nfs"]
 427        url = git://linux-nfs.org/pub/nfs-2.6.git
 428        fetch = +refs/heads/*:refs/remotes/linux-nfs/*
 429...
 430-------------------------------------------------
 431
 432This is what causes git to track the remote's branches; you may modify
 433or delete these configuration options by editing .git/config with a
 434text editor.  (See the "CONFIGURATION FILE" section of
 435gitlink:git-config[1] for details.)
 436
 437[[exploring-git-history]]
 438Exploring git history
 439=====================
 440
 441Git is best thought of as a tool for storing the history of a
 442collection of files.  It does this by storing compressed snapshots of
 443the contents of a file heirarchy, together with "commits" which show
 444the relationships between these snapshots.
 445
 446Git provides extremely flexible and fast tools for exploring the
 447history of a project.
 448
 449We start with one specialized tool that is useful for finding the
 450commit that introduced a bug into a project.
 451
 452[[using-bisect]]
 453How to use bisect to find a regression
 454--------------------------------------
 455
 456Suppose version 2.6.18 of your project worked, but the version at
 457"master" crashes.  Sometimes the best way to find the cause of such a
 458regression is to perform a brute-force search through the project's
 459history to find the particular commit that caused the problem.  The
 460gitlink:git-bisect[1] command can help you do this:
 461
 462-------------------------------------------------
 463$ git bisect start
 464$ git bisect good v2.6.18
 465$ git bisect bad master
 466Bisecting: 3537 revisions left to test after this
 467[65934a9a028b88e83e2b0f8b36618fe503349f8e] BLOCK: Make USB storage depend on SCSI rather than selecting it [try #6]
 468-------------------------------------------------
 469
 470If you run "git branch" at this point, you'll see that git has
 471temporarily moved you to a new branch named "bisect".  This branch
 472points to a commit (with commit id 65934...) that is reachable from
 473v2.6.19 but not from v2.6.18.  Compile and test it, and see whether
 474it crashes.  Assume it does crash.  Then:
 475
 476-------------------------------------------------
 477$ git bisect bad
 478Bisecting: 1769 revisions left to test after this
 479[7eff82c8b1511017ae605f0c99ac275a7e21b867] i2c-core: Drop useless bitmaskings
 480-------------------------------------------------
 481
 482checks out an older version.  Continue like this, telling git at each
 483stage whether the version it gives you is good or bad, and notice
 484that the number of revisions left to test is cut approximately in
 485half each time.
 486
 487After about 13 tests (in this case), it will output the commit id of
 488the guilty commit.  You can then examine the commit with
 489gitlink:git-show[1], find out who wrote it, and mail them your bug
 490report with the commit id.  Finally, run
 491
 492-------------------------------------------------
 493$ git bisect reset
 494-------------------------------------------------
 495
 496to return you to the branch you were on before and delete the
 497temporary "bisect" branch.
 498
 499Note that the version which git-bisect checks out for you at each
 500point is just a suggestion, and you're free to try a different
 501version if you think it would be a good idea.  For example,
 502occasionally you may land on a commit that broke something unrelated;
 503run
 504
 505-------------------------------------------------
 506$ git bisect visualize
 507-------------------------------------------------
 508
 509which will run gitk and label the commit it chose with a marker that
 510says "bisect".  Chose a safe-looking commit nearby, note its commit
 511id, and check it out with:
 512
 513-------------------------------------------------
 514$ git reset --hard fb47ddb2db...
 515-------------------------------------------------
 516
 517then test, run "bisect good" or "bisect bad" as appropriate, and
 518continue.
 519
 520[[naming-commits]]
 521Naming commits
 522--------------
 523
 524We have seen several ways of naming commits already:
 525
 526        - 40-hexdigit object name
 527        - branch name: refers to the commit at the head of the given
 528          branch
 529        - tag name: refers to the commit pointed to by the given tag
 530          (we've seen branches and tags are special cases of
 531          <<how-git-stores-references,references>>).
 532        - HEAD: refers to the head of the current branch
 533
 534There are many more; see the "SPECIFYING REVISIONS" section of the
 535gitlink:git-rev-parse[1] man page for the complete list of ways to
 536name revisions.  Some examples:
 537
 538-------------------------------------------------
 539$ git show fb47ddb2 # the first few characters of the object name
 540                    # are usually enough to specify it uniquely
 541$ git show HEAD^    # the parent of the HEAD commit
 542$ git show HEAD^^   # the grandparent
 543$ git show HEAD~4   # the great-great-grandparent
 544-------------------------------------------------
 545
 546Recall that merge commits may have more than one parent; by default,
 547^ and ~ follow the first parent listed in the commit, but you can
 548also choose:
 549
 550-------------------------------------------------
 551$ git show HEAD^1   # show the first parent of HEAD
 552$ git show HEAD^2   # show the second parent of HEAD
 553-------------------------------------------------
 554
 555In addition to HEAD, there are several other special names for
 556commits:
 557
 558Merges (to be discussed later), as well as operations such as
 559git-reset, which change the currently checked-out commit, generally
 560set ORIG_HEAD to the value HEAD had before the current operation.
 561
 562The git-fetch operation always stores the head of the last fetched
 563branch in FETCH_HEAD.  For example, if you run git fetch without
 564specifying a local branch as the target of the operation
 565
 566-------------------------------------------------
 567$ git fetch git://example.com/proj.git theirbranch
 568-------------------------------------------------
 569
 570the fetched commits will still be available from FETCH_HEAD.
 571
 572When we discuss merges we'll also see the special name MERGE_HEAD,
 573which refers to the other branch that we're merging in to the current
 574branch.
 575
 576The gitlink:git-rev-parse[1] command is a low-level command that is
 577occasionally useful for translating some name for a commit to the object
 578name for that commit:
 579
 580-------------------------------------------------
 581$ git rev-parse origin
 582e05db0fd4f31dde7005f075a84f96b360d05984b
 583-------------------------------------------------
 584
 585[[creating-tags]]
 586Creating tags
 587-------------
 588
 589We can also create a tag to refer to a particular commit; after
 590running
 591
 592-------------------------------------------------
 593$ git tag stable-1 1b2e1d63ff
 594-------------------------------------------------
 595
 596You can use stable-1 to refer to the commit 1b2e1d63ff.
 597
 598This creates a "lightweight" tag.  If you would also like to include a
 599comment with the tag, and possibly sign it cryptographically, then you
 600should create a tag object instead; see the gitlink:git-tag[1] man page
 601for details.
 602
 603[[browsing-revisions]]
 604Browsing revisions
 605------------------
 606
 607The gitlink:git-log[1] command can show lists of commits.  On its
 608own, it shows all commits reachable from the parent commit; but you
 609can also make more specific requests:
 610
 611-------------------------------------------------
 612$ git log v2.5..        # commits since (not reachable from) v2.5
 613$ git log test..master  # commits reachable from master but not test
 614$ git log master..test  # ...reachable from test but not master
 615$ git log master...test # ...reachable from either test or master,
 616                        #    but not both
 617$ git log --since="2 weeks ago" # commits from the last 2 weeks
 618$ git log Makefile      # commits which modify Makefile
 619$ git log fs/           # ... which modify any file under fs/
 620$ git log -S'foo()'     # commits which add or remove any file data
 621                        # matching the string 'foo()'
 622-------------------------------------------------
 623
 624And of course you can combine all of these; the following finds
 625commits since v2.5 which touch the Makefile or any file under fs:
 626
 627-------------------------------------------------
 628$ git log v2.5.. Makefile fs/
 629-------------------------------------------------
 630
 631You can also ask git log to show patches:
 632
 633-------------------------------------------------
 634$ git log -p
 635-------------------------------------------------
 636
 637See the "--pretty" option in the gitlink:git-log[1] man page for more
 638display options.
 639
 640Note that git log starts with the most recent commit and works
 641backwards through the parents; however, since git history can contain
 642multiple independent lines of development, the particular order that
 643commits are listed in may be somewhat arbitrary.
 644
 645[[generating-diffs]]
 646Generating diffs
 647----------------
 648
 649You can generate diffs between any two versions using
 650gitlink:git-diff[1]:
 651
 652-------------------------------------------------
 653$ git diff master..test
 654-------------------------------------------------
 655
 656Sometimes what you want instead is a set of patches:
 657
 658-------------------------------------------------
 659$ git format-patch master..test
 660-------------------------------------------------
 661
 662will generate a file with a patch for each commit reachable from test
 663but not from master.  Note that if master also has commits which are
 664not reachable from test, then the combined result of these patches
 665will not be the same as the diff produced by the git-diff example.
 666
 667[[viewing-old-file-versions]]
 668Viewing old file versions
 669-------------------------
 670
 671You can always view an old version of a file by just checking out the
 672correct revision first.  But sometimes it is more convenient to be
 673able to view an old version of a single file without checking
 674anything out; this command does that:
 675
 676-------------------------------------------------
 677$ git show v2.5:fs/locks.c
 678-------------------------------------------------
 679
 680Before the colon may be anything that names a commit, and after it
 681may be any path to a file tracked by git.
 682
 683[[history-examples]]
 684Examples
 685--------
 686
 687[[counting-commits-on-a-branch]]
 688Counting the number of commits on a branch
 689~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 690
 691Suppose you want to know how many commits you've made on "mybranch"
 692since it diverged from "origin":
 693
 694-------------------------------------------------
 695$ git log --pretty=oneline origin..mybranch | wc -l
 696-------------------------------------------------
 697
 698Alternatively, you may often see this sort of thing done with the
 699lower-level command gitlink:git-rev-list[1], which just lists the SHA1's
 700of all the given commits:
 701
 702-------------------------------------------------
 703$ git rev-list origin..mybranch | wc -l
 704-------------------------------------------------
 705
 706[[checking-for-equal-branches]]
 707Check whether two branches point at the same history
 708~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 709
 710Suppose you want to check whether two branches point at the same point
 711in history.
 712
 713-------------------------------------------------
 714$ git diff origin..master
 715-------------------------------------------------
 716
 717will tell you whether the contents of the project are the same at the
 718two branches; in theory, however, it's possible that the same project
 719contents could have been arrived at by two different historical
 720routes.  You could compare the object names:
 721
 722-------------------------------------------------
 723$ git rev-list origin
 724e05db0fd4f31dde7005f075a84f96b360d05984b
 725$ git rev-list master
 726e05db0fd4f31dde7005f075a84f96b360d05984b
 727-------------------------------------------------
 728
 729Or you could recall that the ... operator selects all commits
 730contained reachable from either one reference or the other but not
 731both: so
 732
 733-------------------------------------------------
 734$ git log origin...master
 735-------------------------------------------------
 736
 737will return no commits when the two branches are equal.
 738
 739[[finding-tagged-descendants]]
 740Find first tagged version including a given fix
 741~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 742
 743Suppose you know that the commit e05db0fd fixed a certain problem.
 744You'd like to find the earliest tagged release that contains that
 745fix.
 746
 747Of course, there may be more than one answer--if the history branched
 748after commit e05db0fd, then there could be multiple "earliest" tagged
 749releases.
 750
 751You could just visually inspect the commits since e05db0fd:
 752
 753-------------------------------------------------
 754$ gitk e05db0fd..
 755-------------------------------------------------
 756
 757Or you can use gitlink:git-name-rev[1], which will give the commit a
 758name based on any tag it finds pointing to one of the commit's
 759descendants:
 760
 761-------------------------------------------------
 762$ git name-rev --tags e05db0fd
 763e05db0fd tags/v1.5.0-rc1^0~23
 764-------------------------------------------------
 765
 766The gitlink:git-describe[1] command does the opposite, naming the
 767revision using a tag on which the given commit is based:
 768
 769-------------------------------------------------
 770$ git describe e05db0fd
 771v1.5.0-rc0-260-ge05db0f
 772-------------------------------------------------
 773
 774but that may sometimes help you guess which tags might come after the
 775given commit.
 776
 777If you just want to verify whether a given tagged version contains a
 778given commit, you could use gitlink:git-merge-base[1]:
 779
 780-------------------------------------------------
 781$ git merge-base e05db0fd v1.5.0-rc1
 782e05db0fd4f31dde7005f075a84f96b360d05984b
 783-------------------------------------------------
 784
 785The merge-base command finds a common ancestor of the given commits,
 786and always returns one or the other in the case where one is a
 787descendant of the other; so the above output shows that e05db0fd
 788actually is an ancestor of v1.5.0-rc1.
 789
 790Alternatively, note that
 791
 792-------------------------------------------------
 793$ git log v1.5.0-rc1..e05db0fd
 794-------------------------------------------------
 795
 796will produce empty output if and only if v1.5.0-rc1 includes e05db0fd,
 797because it outputs only commits that are not reachable from v1.5.0-rc1.
 798
 799As yet another alternative, the gitlink:git-show-branch[1] command lists
 800the commits reachable from its arguments with a display on the left-hand
 801side that indicates which arguments that commit is reachable from.  So,
 802you can run something like
 803
 804-------------------------------------------------
 805$ git show-branch e05db0fd v1.5.0-rc0 v1.5.0-rc1 v1.5.0-rc2
 806! [e05db0fd] Fix warnings in sha1_file.c - use C99 printf format if
 807available
 808 ! [v1.5.0-rc0] GIT v1.5.0 preview
 809  ! [v1.5.0-rc1] GIT v1.5.0-rc1
 810   ! [v1.5.0-rc2] GIT v1.5.0-rc2
 811...
 812-------------------------------------------------
 813
 814then search for a line that looks like
 815
 816-------------------------------------------------
 817+ ++ [e05db0fd] Fix warnings in sha1_file.c - use C99 printf format if
 818available
 819-------------------------------------------------
 820
 821Which shows that e05db0fd is reachable from itself, from v1.5.0-rc1, and
 822from v1.5.0-rc2, but not from v1.5.0-rc0.
 823
 824[[showing-commits-unique-to-a-branch]]
 825Showing commits unique to a given branch
 826~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 827
 828Suppose you would like to see all the commits reachable from the branch
 829head named "master" but not from any other head in your repository.
 830
 831We can list all the heads in this repository with
 832gitlink:git-show-ref[1]:
 833
 834-------------------------------------------------
 835$ git show-ref --heads
 836bf62196b5e363d73353a9dcf094c59595f3153b7 refs/heads/core-tutorial
 837db768d5504c1bb46f63ee9d6e1772bd047e05bf9 refs/heads/maint
 838a07157ac624b2524a059a3414e99f6f44bebc1e7 refs/heads/master
 83924dbc180ea14dc1aebe09f14c8ecf32010690627 refs/heads/tutorial-2
 8401e87486ae06626c2f31eaa63d26fc0fd646c8af2 refs/heads/tutorial-fixes
 841-------------------------------------------------
 842
 843We can get just the branch-head names, and remove "master", with
 844the help of the standard utilities cut and grep:
 845
 846-------------------------------------------------
 847$ git show-ref --heads | cut -d' ' -f2 | grep -v '^refs/heads/master'
 848refs/heads/core-tutorial
 849refs/heads/maint
 850refs/heads/tutorial-2
 851refs/heads/tutorial-fixes
 852-------------------------------------------------
 853
 854And then we can ask to see all the commits reachable from master
 855but not from these other heads:
 856
 857-------------------------------------------------
 858$ gitk master --not $( git show-ref --heads | cut -d' ' -f2 |
 859                                grep -v '^refs/heads/master' )
 860-------------------------------------------------
 861
 862Obviously, endless variations are possible; for example, to see all
 863commits reachable from some head but not from any tag in the repository:
 864
 865-------------------------------------------------
 866$ gitk $( git show-ref --heads ) --not  $( git show-ref --tags )
 867-------------------------------------------------
 868
 869(See gitlink:git-rev-parse[1] for explanations of commit-selecting
 870syntax such as `--not`.)
 871
 872[[making-a-release]]
 873Creating a changelog and tarball for a software release
 874~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 875
 876The gitlink:git-archive[1] command can create a tar or zip archive from
 877any version of a project; for example:
 878
 879-------------------------------------------------
 880$ git archive --format=tar --prefix=project/ HEAD | gzip >latest.tar.gz
 881-------------------------------------------------
 882
 883will use HEAD to produce a tar archive in which each filename is
 884preceded by "project/".
 885
 886If you're releasing a new version of a software project, you may want
 887to simultaneously make a changelog to include in the release
 888announcement.
 889
 890Linus Torvalds, for example, makes new kernel releases by tagging them,
 891then running:
 892
 893-------------------------------------------------
 894$ release-script 2.6.12 2.6.13-rc6 2.6.13-rc7
 895-------------------------------------------------
 896
 897where release-script is a shell script that looks like:
 898
 899-------------------------------------------------
 900#!/bin/sh
 901stable="$1"
 902last="$2"
 903new="$3"
 904echo "# git tag v$new"
 905echo "git archive --prefix=linux-$new/ v$new | gzip -9 > ../linux-$new.tar.gz"
 906echo "git diff v$stable v$new | gzip -9 > ../patch-$new.gz"
 907echo "git log --no-merges v$new ^v$last > ../ChangeLog-$new"
 908echo "git shortlog --no-merges v$new ^v$last > ../ShortLog"
 909echo "git diff --stat --summary -M v$last v$new > ../diffstat-$new"
 910-------------------------------------------------
 911
 912and then he just cut-and-pastes the output commands after verifying that
 913they look OK.
 914
 915[[Finding-comments-with-given-content]]
 916Finding commits referencing a file with given content
 917~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 918
 919Somebody hands you a copy of a file, and asks which commits modified a
 920file such that it contained the given content either before or after the
 921commit.  You can find out with this:
 922
 923-------------------------------------------------
 924$  git log --raw -r --abbrev=40 --pretty=oneline -- filename |
 925        grep -B 1 `git hash-object filename`
 926-------------------------------------------------
 927
 928Figuring out why this works is left as an exercise to the (advanced)
 929student.  The gitlink:git-log[1], gitlink:git-diff-tree[1], and
 930gitlink:git-hash-object[1] man pages may prove helpful.
 931
 932[[Developing-with-git]]
 933Developing with git
 934===================
 935
 936[[telling-git-your-name]]
 937Telling git your name
 938---------------------
 939
 940Before creating any commits, you should introduce yourself to git.  The
 941easiest way to do so is to make sure the following lines appear in a
 942file named .gitconfig in your home directory:
 943
 944------------------------------------------------
 945[user]
 946        name = Your Name Comes Here
 947        email = you@yourdomain.example.com
 948------------------------------------------------
 949
 950(See the "CONFIGURATION FILE" section of gitlink:git-config[1] for
 951details on the configuration file.)
 952
 953
 954[[creating-a-new-repository]]
 955Creating a new repository
 956-------------------------
 957
 958Creating a new repository from scratch is very easy:
 959
 960-------------------------------------------------
 961$ mkdir project
 962$ cd project
 963$ git init
 964-------------------------------------------------
 965
 966If you have some initial content (say, a tarball):
 967
 968-------------------------------------------------
 969$ tar -xzvf project.tar.gz
 970$ cd project
 971$ git init
 972$ git add . # include everything below ./ in the first commit:
 973$ git commit
 974-------------------------------------------------
 975
 976[[how-to-make-a-commit]]
 977How to make a commit
 978--------------------
 979
 980Creating a new commit takes three steps:
 981
 982        1. Making some changes to the working directory using your
 983           favorite editor.
 984        2. Telling git about your changes.
 985        3. Creating the commit using the content you told git about
 986           in step 2.
 987
 988In practice, you can interleave and repeat steps 1 and 2 as many
 989times as you want: in order to keep track of what you want committed
 990at step 3, git maintains a snapshot of the tree's contents in a
 991special staging area called "the index."
 992
 993At the beginning, the content of the index will be identical to
 994that of the HEAD.  The command "git diff --cached", which shows
 995the difference between the HEAD and the index, should therefore
 996produce no output at that point.
 997
 998Modifying the index is easy:
 999
1000To update the index with the new contents of a modified file, use
1001
1002-------------------------------------------------
1003$ git add path/to/file
1004-------------------------------------------------
1005
1006To add the contents of a new file to the index, use
1007
1008-------------------------------------------------
1009$ git add path/to/file
1010-------------------------------------------------
1011
1012To remove a file from the index and from the working tree,
1013
1014-------------------------------------------------
1015$ git rm path/to/file
1016-------------------------------------------------
1017
1018After each step you can verify that
1019
1020-------------------------------------------------
1021$ git diff --cached
1022-------------------------------------------------
1023
1024always shows the difference between the HEAD and the index file--this
1025is what you'd commit if you created the commit now--and that
1026
1027-------------------------------------------------
1028$ git diff
1029-------------------------------------------------
1030
1031shows the difference between the working tree and the index file.
1032
1033Note that "git add" always adds just the current contents of a file
1034to the index; further changes to the same file will be ignored unless
1035you run git-add on the file again.
1036
1037When you're ready, just run
1038
1039-------------------------------------------------
1040$ git commit
1041-------------------------------------------------
1042
1043and git will prompt you for a commit message and then create the new
1044commit.  Check to make sure it looks like what you expected with
1045
1046-------------------------------------------------
1047$ git show
1048-------------------------------------------------
1049
1050As a special shortcut,
1051                
1052-------------------------------------------------
1053$ git commit -a
1054-------------------------------------------------
1055
1056will update the index with any files that you've modified or removed
1057and create a commit, all in one step.
1058
1059A number of commands are useful for keeping track of what you're
1060about to commit:
1061
1062-------------------------------------------------
1063$ git diff --cached # difference between HEAD and the index; what
1064                    # would be commited if you ran "commit" now.
1065$ git diff          # difference between the index file and your
1066                    # working directory; changes that would not
1067                    # be included if you ran "commit" now.
1068$ git diff HEAD     # difference between HEAD and working tree; what
1069                    # would be committed if you ran "commit -a" now.
1070$ git status        # a brief per-file summary of the above.
1071-------------------------------------------------
1072
1073[[creating-good-commit-messages]]
1074Creating good commit messages
1075-----------------------------
1076
1077Though not required, it's a good idea to begin the commit message
1078with a single short (less than 50 character) line summarizing the
1079change, followed by a blank line and then a more thorough
1080description.  Tools that turn commits into email, for example, use
1081the first line on the Subject line and the rest of the commit in the
1082body.
1083
1084[[ignoring-files]]
1085Ignoring files
1086--------------
1087
1088A project will often generate files that you do 'not' want to track with git.
1089This typically includes files generated by a build process or temporary
1090backup files made by your editor. Of course, 'not' tracking files with git
1091is just a matter of 'not' calling "`git add`" on them. But it quickly becomes
1092annoying to have these untracked files lying around; e.g. they make
1093"`git add .`" and "`git commit -a`" practically useless, and they keep
1094showing up in the output of "`git status`".
1095
1096You can tell git to ignore certain files by creating a file called .gitignore
1097in the top level of your working directory, with contents such as:
1098
1099-------------------------------------------------
1100# Lines starting with '#' are considered comments.
1101# Ignore any file named foo.txt.
1102foo.txt
1103# Ignore (generated) html files,
1104*.html
1105# except foo.html which is maintained by hand.
1106!foo.html
1107# Ignore objects and archives.
1108*.[oa]
1109-------------------------------------------------
1110
1111See gitlink:gitignore[5] for a detailed explanation of the syntax.  You can
1112also place .gitignore files in other directories in your working tree, and they
1113will apply to those directories and their subdirectories.  The `.gitignore`
1114files can be added to your repository like any other files (just run `git add
1115.gitignore` and `git commit`, as usual), which is convenient when the exclude
1116patterns (such as patterns matching build output files) would also make sense
1117for other users who clone your repository.
1118
1119If you wish the exclude patterns to affect only certain repositories
1120(instead of every repository for a given project), you may instead put
1121them in a file in your repository named .git/info/exclude, or in any file
1122specified by the `core.excludesfile` configuration variable.  Some git
1123commands can also take exclude patterns directly on the command line.
1124See gitlink:gitignore[5] for the details.
1125
1126[[how-to-merge]]
1127How to merge
1128------------
1129
1130You can rejoin two diverging branches of development using
1131gitlink:git-merge[1]:
1132
1133-------------------------------------------------
1134$ git merge branchname
1135-------------------------------------------------
1136
1137merges the development in the branch "branchname" into the current
1138branch.  If there are conflicts--for example, if the same file is
1139modified in two different ways in the remote branch and the local
1140branch--then you are warned; the output may look something like this:
1141
1142-------------------------------------------------
1143$ git merge next
1144 100% (4/4) done
1145Auto-merged file.txt
1146CONFLICT (content): Merge conflict in file.txt
1147Automatic merge failed; fix conflicts and then commit the result.
1148-------------------------------------------------
1149
1150Conflict markers are left in the problematic files, and after
1151you resolve the conflicts manually, you can update the index
1152with the contents and run git commit, as you normally would when
1153creating a new file.
1154
1155If you examine the resulting commit using gitk, you will see that it
1156has two parents, one pointing to the top of the current branch, and
1157one to the top of the other branch.
1158
1159[[resolving-a-merge]]
1160Resolving a merge
1161-----------------
1162
1163When a merge isn't resolved automatically, git leaves the index and
1164the working tree in a special state that gives you all the
1165information you need to help resolve the merge.
1166
1167Files with conflicts are marked specially in the index, so until you
1168resolve the problem and update the index, gitlink:git-commit[1] will
1169fail:
1170
1171-------------------------------------------------
1172$ git commit
1173file.txt: needs merge
1174-------------------------------------------------
1175
1176Also, gitlink:git-status[1] will list those files as "unmerged", and the
1177files with conflicts will have conflict markers added, like this:
1178
1179-------------------------------------------------
1180<<<<<<< HEAD:file.txt
1181Hello world
1182=======
1183Goodbye
1184>>>>>>> 77976da35a11db4580b80ae27e8d65caf5208086:file.txt
1185-------------------------------------------------
1186
1187All you need to do is edit the files to resolve the conflicts, and then
1188
1189-------------------------------------------------
1190$ git add file.txt
1191$ git commit
1192-------------------------------------------------
1193
1194Note that the commit message will already be filled in for you with
1195some information about the merge.  Normally you can just use this
1196default message unchanged, but you may add additional commentary of
1197your own if desired.
1198
1199The above is all you need to know to resolve a simple merge.  But git
1200also provides more information to help resolve conflicts:
1201
1202[[conflict-resolution]]
1203Getting conflict-resolution help during a merge
1204~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1205
1206All of the changes that git was able to merge automatically are
1207already added to the index file, so gitlink:git-diff[1] shows only
1208the conflicts.  It uses an unusual syntax:
1209
1210-------------------------------------------------
1211$ git diff
1212diff --cc file.txt
1213index 802992c,2b60207..0000000
1214--- a/file.txt
1215+++ b/file.txt
1216@@@ -1,1 -1,1 +1,5 @@@
1217++<<<<<<< HEAD:file.txt
1218 +Hello world
1219++=======
1220+ Goodbye
1221++>>>>>>> 77976da35a11db4580b80ae27e8d65caf5208086:file.txt
1222-------------------------------------------------
1223
1224Recall that the commit which will be commited after we resolve this
1225conflict will have two parents instead of the usual one: one parent
1226will be HEAD, the tip of the current branch; the other will be the
1227tip of the other branch, which is stored temporarily in MERGE_HEAD.
1228
1229During the merge, the index holds three versions of each file.  Each of
1230these three "file stages" represents a different version of the file:
1231
1232-------------------------------------------------
1233$ git show :1:file.txt  # the file in a common ancestor of both branches
1234$ git show :2:file.txt  # the version from HEAD, but including any
1235                        # nonconflicting changes from MERGE_HEAD
1236$ git show :3:file.txt  # the version from MERGE_HEAD, but including any
1237                        # nonconflicting changes from HEAD.
1238-------------------------------------------------
1239
1240Since the stage 2 and stage 3 versions have already been updated with
1241nonconflicting changes, the only remaining differences between them are
1242the important ones; thus gitlink:git-diff[1] can use the information in
1243the index to show only those conflicts.
1244
1245The diff above shows the differences between the working-tree version of
1246file.txt and the stage 2 and stage 3 versions.  So instead of preceding
1247each line by a single "+" or "-", it now uses two columns: the first
1248column is used for differences between the first parent and the working
1249directory copy, and the second for differences between the second parent
1250and the working directory copy.  (See the "COMBINED DIFF FORMAT" section
1251of gitlink:git-diff-files[1] for a details of the format.)
1252
1253After resolving the conflict in the obvious way (but before updating the
1254index), the diff will look like:
1255
1256-------------------------------------------------
1257$ git diff
1258diff --cc file.txt
1259index 802992c,2b60207..0000000
1260--- a/file.txt
1261+++ b/file.txt
1262@@@ -1,1 -1,1 +1,1 @@@
1263- Hello world
1264 -Goodbye
1265++Goodbye world
1266-------------------------------------------------
1267
1268This shows that our resolved version deleted "Hello world" from the
1269first parent, deleted "Goodbye" from the second parent, and added
1270"Goodbye world", which was previously absent from both.
1271
1272Some special diff options allow diffing the working directory against
1273any of these stages:
1274
1275-------------------------------------------------
1276$ git diff -1 file.txt          # diff against stage 1
1277$ git diff --base file.txt      # same as the above
1278$ git diff -2 file.txt          # diff against stage 2
1279$ git diff --ours file.txt      # same as the above
1280$ git diff -3 file.txt          # diff against stage 3
1281$ git diff --theirs file.txt    # same as the above.
1282-------------------------------------------------
1283
1284The gitlink:git-log[1] and gitk[1] commands also provide special help
1285for merges:
1286
1287-------------------------------------------------
1288$ git log --merge
1289$ gitk --merge
1290-------------------------------------------------
1291
1292These will display all commits which exist only on HEAD or on
1293MERGE_HEAD, and which touch an unmerged file.
1294
1295You may also use gitlink:git-mergetool[1], which lets you merge the
1296unmerged files using external tools such as emacs or kdiff3.
1297
1298Each time you resolve the conflicts in a file and update the index:
1299
1300-------------------------------------------------
1301$ git add file.txt
1302-------------------------------------------------
1303
1304the different stages of that file will be "collapsed", after which
1305git-diff will (by default) no longer show diffs for that file.
1306
1307[[undoing-a-merge]]
1308Undoing a merge
1309---------------
1310
1311If you get stuck and decide to just give up and throw the whole mess
1312away, you can always return to the pre-merge state with
1313
1314-------------------------------------------------
1315$ git reset --hard HEAD
1316-------------------------------------------------
1317
1318Or, if you've already commited the merge that you want to throw away,
1319
1320-------------------------------------------------
1321$ git reset --hard ORIG_HEAD
1322-------------------------------------------------
1323
1324However, this last command can be dangerous in some cases--never
1325throw away a commit you have already committed if that commit may
1326itself have been merged into another branch, as doing so may confuse
1327further merges.
1328
1329[[fast-forwards]]
1330Fast-forward merges
1331-------------------
1332
1333There is one special case not mentioned above, which is treated
1334differently.  Normally, a merge results in a merge commit, with two
1335parents, one pointing at each of the two lines of development that
1336were merged.
1337
1338However, if the current branch is a descendant of the other--so every
1339commit present in the one is already contained in the other--then git
1340just performs a "fast forward"; the head of the current branch is moved
1341forward to point at the head of the merged-in branch, without any new
1342commits being created.
1343
1344[[fixing-mistakes]]
1345Fixing mistakes
1346---------------
1347
1348If you've messed up the working tree, but haven't yet committed your
1349mistake, you can return the entire working tree to the last committed
1350state with
1351
1352-------------------------------------------------
1353$ git reset --hard HEAD
1354-------------------------------------------------
1355
1356If you make a commit that you later wish you hadn't, there are two
1357fundamentally different ways to fix the problem:
1358
1359        1. You can create a new commit that undoes whatever was done
1360        by the previous commit.  This is the correct thing if your
1361        mistake has already been made public.
1362
1363        2. You can go back and modify the old commit.  You should
1364        never do this if you have already made the history public;
1365        git does not normally expect the "history" of a project to
1366        change, and cannot correctly perform repeated merges from
1367        a branch that has had its history changed.
1368
1369[[reverting-a-commit]]
1370Fixing a mistake with a new commit
1371~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1372
1373Creating a new commit that reverts an earlier change is very easy;
1374just pass the gitlink:git-revert[1] command a reference to the bad
1375commit; for example, to revert the most recent commit:
1376
1377-------------------------------------------------
1378$ git revert HEAD
1379-------------------------------------------------
1380
1381This will create a new commit which undoes the change in HEAD.  You
1382will be given a chance to edit the commit message for the new commit.
1383
1384You can also revert an earlier change, for example, the next-to-last:
1385
1386-------------------------------------------------
1387$ git revert HEAD^
1388-------------------------------------------------
1389
1390In this case git will attempt to undo the old change while leaving
1391intact any changes made since then.  If more recent changes overlap
1392with the changes to be reverted, then you will be asked to fix
1393conflicts manually, just as in the case of <<resolving-a-merge,
1394resolving a merge>>.
1395
1396[[fixing-a-mistake-by-editing-history]]
1397Fixing a mistake by editing history
1398~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1399
1400If the problematic commit is the most recent commit, and you have not
1401yet made that commit public, then you may just
1402<<undoing-a-merge,destroy it using git-reset>>.
1403
1404Alternatively, you
1405can edit the working directory and update the index to fix your
1406mistake, just as if you were going to <<how-to-make-a-commit,create a
1407new commit>>, then run
1408
1409-------------------------------------------------
1410$ git commit --amend
1411-------------------------------------------------
1412
1413which will replace the old commit by a new commit incorporating your
1414changes, giving you a chance to edit the old commit message first.
1415
1416Again, you should never do this to a commit that may already have
1417been merged into another branch; use gitlink:git-revert[1] instead in
1418that case.
1419
1420It is also possible to edit commits further back in the history, but
1421this is an advanced topic to be left for
1422<<cleaning-up-history,another chapter>>.
1423
1424[[checkout-of-path]]
1425Checking out an old version of a file
1426~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1427
1428In the process of undoing a previous bad change, you may find it
1429useful to check out an older version of a particular file using
1430gitlink:git-checkout[1].  We've used git checkout before to switch
1431branches, but it has quite different behavior if it is given a path
1432name: the command
1433
1434-------------------------------------------------
1435$ git checkout HEAD^ path/to/file
1436-------------------------------------------------
1437
1438replaces path/to/file by the contents it had in the commit HEAD^, and
1439also updates the index to match.  It does not change branches.
1440
1441If you just want to look at an old version of the file, without
1442modifying the working directory, you can do that with
1443gitlink:git-show[1]:
1444
1445-------------------------------------------------
1446$ git show HEAD^:path/to/file
1447-------------------------------------------------
1448
1449which will display the given version of the file.
1450
1451[[ensuring-good-performance]]
1452Ensuring good performance
1453-------------------------
1454
1455On large repositories, git depends on compression to keep the history
1456information from taking up to much space on disk or in memory.
1457
1458This compression is not performed automatically.  Therefore you
1459should occasionally run gitlink:git-gc[1]:
1460
1461-------------------------------------------------
1462$ git gc
1463-------------------------------------------------
1464
1465to recompress the archive.  This can be very time-consuming, so
1466you may prefer to run git-gc when you are not doing other work.
1467
1468
1469[[ensuring-reliability]]
1470Ensuring reliability
1471--------------------
1472
1473[[checking-for-corruption]]
1474Checking the repository for corruption
1475~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1476
1477The gitlink:git-fsck[1] command runs a number of self-consistency checks
1478on the repository, and reports on any problems.  This may take some
1479time.  The most common warning by far is about "dangling" objects:
1480
1481-------------------------------------------------
1482$ git fsck
1483dangling commit 7281251ddd2a61e38657c827739c57015671a6b3
1484dangling commit 2706a059f258c6b245f298dc4ff2ccd30ec21a63
1485dangling commit 13472b7c4b80851a1bc551779171dcb03655e9b5
1486dangling blob 218761f9d90712d37a9c5e36f406f92202db07eb
1487dangling commit bf093535a34a4d35731aa2bd90fe6b176302f14f
1488dangling commit 8e4bec7f2ddaa268bef999853c25755452100f8e
1489dangling tree d50bb86186bf27b681d25af89d3b5b68382e4085
1490dangling tree b24c2473f1fd3d91352a624795be026d64c8841f
1491...
1492-------------------------------------------------
1493
1494Dangling objects are not a problem.  At worst they may take up a little
1495extra disk space.  They can sometimes provide a last-resort method for
1496recovering lost work--see <<dangling-objects>> for details.  However, if
1497you wish, you can remove them with gitlink:git-prune[1] or the --prune
1498option to gitlink:git-gc[1]:
1499
1500-------------------------------------------------
1501$ git gc --prune
1502-------------------------------------------------
1503
1504This may be time-consuming.  Unlike most other git operations (including
1505git-gc when run without any options), it is not safe to prune while
1506other git operations are in progress in the same repository.
1507
1508[[recovering-lost-changes]]
1509Recovering lost changes
1510~~~~~~~~~~~~~~~~~~~~~~~
1511
1512[[reflogs]]
1513Reflogs
1514^^^^^^^
1515
1516Say you modify a branch with gitlink:git-reset[1] --hard, and then
1517realize that the branch was the only reference you had to that point in
1518history.
1519
1520Fortunately, git also keeps a log, called a "reflog", of all the
1521previous values of each branch.  So in this case you can still find the
1522old history using, for example, 
1523
1524-------------------------------------------------
1525$ git log master@{1}
1526-------------------------------------------------
1527
1528This lists the commits reachable from the previous version of the head.
1529This syntax can be used to with any git command that accepts a commit,
1530not just with git log.  Some other examples:
1531
1532-------------------------------------------------
1533$ git show master@{2}           # See where the branch pointed 2,
1534$ git show master@{3}           # 3, ... changes ago.
1535$ gitk master@{yesterday}       # See where it pointed yesterday,
1536$ gitk master@{"1 week ago"}    # ... or last week
1537$ git log --walk-reflogs master # show reflog entries for master
1538-------------------------------------------------
1539
1540A separate reflog is kept for the HEAD, so
1541
1542-------------------------------------------------
1543$ git show HEAD@{"1 week ago"}
1544-------------------------------------------------
1545
1546will show what HEAD pointed to one week ago, not what the current branch
1547pointed to one week ago.  This allows you to see the history of what
1548you've checked out.
1549
1550The reflogs are kept by default for 30 days, after which they may be
1551pruned.  See gitlink:git-reflog[1] and gitlink:git-gc[1] to learn
1552how to control this pruning, and see the "SPECIFYING REVISIONS"
1553section of gitlink:git-rev-parse[1] for details.
1554
1555Note that the reflog history is very different from normal git history.
1556While normal history is shared by every repository that works on the
1557same project, the reflog history is not shared: it tells you only about
1558how the branches in your local repository have changed over time.
1559
1560[[dangling-object-recovery]]
1561Examining dangling objects
1562^^^^^^^^^^^^^^^^^^^^^^^^^^
1563
1564In some situations the reflog may not be able to save you.  For example,
1565suppose you delete a branch, then realize you need the history it
1566contained.  The reflog is also deleted; however, if you have not yet
1567pruned the repository, then you may still be able to find the lost
1568commits in the dangling objects that git-fsck reports.  See
1569<<dangling-objects>> for the details.
1570
1571-------------------------------------------------
1572$ git fsck
1573dangling commit 7281251ddd2a61e38657c827739c57015671a6b3
1574dangling commit 2706a059f258c6b245f298dc4ff2ccd30ec21a63
1575dangling commit 13472b7c4b80851a1bc551779171dcb03655e9b5
1576...
1577-------------------------------------------------
1578
1579You can examine
1580one of those dangling commits with, for example,
1581
1582------------------------------------------------
1583$ gitk 7281251ddd --not --all
1584------------------------------------------------
1585
1586which does what it sounds like: it says that you want to see the commit
1587history that is described by the dangling commit(s), but not the
1588history that is described by all your existing branches and tags.  Thus
1589you get exactly the history reachable from that commit that is lost.
1590(And notice that it might not be just one commit: we only report the
1591"tip of the line" as being dangling, but there might be a whole deep
1592and complex commit history that was dropped.)
1593
1594If you decide you want the history back, you can always create a new
1595reference pointing to it, for example, a new branch:
1596
1597------------------------------------------------
1598$ git branch recovered-branch 7281251ddd 
1599------------------------------------------------
1600
1601Other types of dangling objects (blobs and trees) are also possible, and
1602dangling objects can arise in other situations.
1603
1604
1605[[sharing-development]]
1606Sharing development with others
1607===============================
1608
1609[[getting-updates-with-git-pull]]
1610Getting updates with git pull
1611-----------------------------
1612
1613After you clone a repository and make a few changes of your own, you
1614may wish to check the original repository for updates and merge them
1615into your own work.
1616
1617We have already seen <<Updating-a-repository-with-git-fetch,how to
1618keep remote tracking branches up to date>> with gitlink:git-fetch[1],
1619and how to merge two branches.  So you can merge in changes from the
1620original repository's master branch with:
1621
1622-------------------------------------------------
1623$ git fetch
1624$ git merge origin/master
1625-------------------------------------------------
1626
1627However, the gitlink:git-pull[1] command provides a way to do this in
1628one step:
1629
1630-------------------------------------------------
1631$ git pull origin master
1632-------------------------------------------------
1633
1634In fact, "origin" is normally the default repository to pull from,
1635and the default branch is normally the HEAD of the remote repository,
1636so often you can accomplish the above with just
1637
1638-------------------------------------------------
1639$ git pull
1640-------------------------------------------------
1641
1642See the descriptions of the branch.<name>.remote and branch.<name>.merge
1643options in gitlink:git-config[1] to learn how to control these defaults
1644depending on the current branch.  Also note that the --track option to
1645gitlink:git-branch[1] and gitlink:git-checkout[1] can be used to
1646automatically set the default remote branch to pull from at the time
1647that a branch is created:
1648
1649-------------------------------------------------
1650$ git checkout --track -b maint origin/maint
1651-------------------------------------------------
1652
1653In addition to saving you keystrokes, "git pull" also helps you by
1654producing a default commit message documenting the branch and
1655repository that you pulled from.
1656
1657(But note that no such commit will be created in the case of a
1658<<fast-forwards,fast forward>>; instead, your branch will just be
1659updated to point to the latest commit from the upstream branch.)
1660
1661The git-pull command can also be given "." as the "remote" repository,
1662in which case it just merges in a branch from the current repository; so
1663the commands
1664
1665-------------------------------------------------
1666$ git pull . branch
1667$ git merge branch
1668-------------------------------------------------
1669
1670are roughly equivalent.  The former is actually very commonly used.
1671
1672[[submitting-patches]]
1673Submitting patches to a project
1674-------------------------------
1675
1676If you just have a few changes, the simplest way to submit them may
1677just be to send them as patches in email:
1678
1679First, use gitlink:git-format-patch[1]; for example:
1680
1681-------------------------------------------------
1682$ git format-patch origin
1683-------------------------------------------------
1684
1685will produce a numbered series of files in the current directory, one
1686for each patch in the current branch but not in origin/HEAD.
1687
1688You can then import these into your mail client and send them by
1689hand.  However, if you have a lot to send at once, you may prefer to
1690use the gitlink:git-send-email[1] script to automate the process.
1691Consult the mailing list for your project first to determine how they
1692prefer such patches be handled.
1693
1694[[importing-patches]]
1695Importing patches to a project
1696------------------------------
1697
1698Git also provides a tool called gitlink:git-am[1] (am stands for
1699"apply mailbox"), for importing such an emailed series of patches.
1700Just save all of the patch-containing messages, in order, into a
1701single mailbox file, say "patches.mbox", then run
1702
1703-------------------------------------------------
1704$ git am -3 patches.mbox
1705-------------------------------------------------
1706
1707Git will apply each patch in order; if any conflicts are found, it
1708will stop, and you can fix the conflicts as described in
1709"<<resolving-a-merge,Resolving a merge>>".  (The "-3" option tells
1710git to perform a merge; if you would prefer it just to abort and
1711leave your tree and index untouched, you may omit that option.)
1712
1713Once the index is updated with the results of the conflict
1714resolution, instead of creating a new commit, just run
1715
1716-------------------------------------------------
1717$ git am --resolved
1718-------------------------------------------------
1719
1720and git will create the commit for you and continue applying the
1721remaining patches from the mailbox.
1722
1723The final result will be a series of commits, one for each patch in
1724the original mailbox, with authorship and commit log message each
1725taken from the message containing each patch.
1726
1727[[public-repositories]]
1728Public git repositories
1729-----------------------
1730
1731Another way to submit changes to a project is to tell the maintainer of
1732that project to pull the changes from your repository using git-pull[1].
1733In the section "<<getting-updates-with-git-pull, Getting updates with
1734git pull>>" we described this as a way to get updates from the "main"
1735repository, but it works just as well in the other direction.
1736
1737If you and the maintainer both have accounts on the same machine, then
1738you can just pull changes from each other's repositories directly;
1739commands that accept repository URLs as arguments will also accept a
1740local directory name:
1741
1742-------------------------------------------------
1743$ git clone /path/to/repository
1744$ git pull /path/to/other/repository
1745-------------------------------------------------
1746
1747or an ssh url:
1748
1749-------------------------------------------------
1750$ git clone ssh://yourhost/~you/repository
1751-------------------------------------------------
1752
1753For projects with few developers, or for synchronizing a few private
1754repositories, this may be all you need.
1755
1756However, the more common way to do this is to maintain a separate public
1757repository (usually on a different host) for others to pull changes
1758from.  This is usually more convenient, and allows you to cleanly
1759separate private work in progress from publicly visible work.
1760
1761You will continue to do your day-to-day work in your personal
1762repository, but periodically "push" changes from your personal
1763repository into your public repository, allowing other developers to
1764pull from that repository.  So the flow of changes, in a situation
1765where there is one other developer with a public repository, looks
1766like this:
1767
1768                        you push
1769  your personal repo ------------------> your public repo
1770        ^                                     |
1771        |                                     |
1772        | you pull                            | they pull
1773        |                                     |
1774        |                                     |
1775        |               they push             V
1776  their public repo <------------------- their repo
1777
1778We explain how to do this in the following sections.
1779
1780[[setting-up-a-public-repository]]
1781Setting up a public repository
1782~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1783
1784Assume your personal repository is in the directory ~/proj.  We
1785first create a new clone of the repository and tell git-daemon that it
1786is meant to be public:
1787
1788-------------------------------------------------
1789$ git clone --bare ~/proj proj.git
1790$ touch proj.git/git-daemon-export-ok
1791-------------------------------------------------
1792
1793The resulting directory proj.git contains a "bare" git repository--it is
1794just the contents of the ".git" directory, without any files checked out
1795around it.
1796
1797Next, copy proj.git to the server where you plan to host the
1798public repository.  You can use scp, rsync, or whatever is most
1799convenient.
1800
1801[[exporting-via-git]]
1802Exporting a git repository via the git protocol
1803~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1804
1805This is the preferred method.
1806
1807If someone else administers the server, they should tell you what
1808directory to put the repository in, and what git:// url it will appear
1809at.  You can then skip to the section
1810"<<pushing-changes-to-a-public-repository,Pushing changes to a public
1811repository>>", below.
1812
1813Otherwise, all you need to do is start gitlink:git-daemon[1]; it will
1814listen on port 9418.  By default, it will allow access to any directory
1815that looks like a git directory and contains the magic file
1816git-daemon-export-ok.  Passing some directory paths as git-daemon
1817arguments will further restrict the exports to those paths.
1818
1819You can also run git-daemon as an inetd service; see the
1820gitlink:git-daemon[1] man page for details.  (See especially the
1821examples section.)
1822
1823[[exporting-via-http]]
1824Exporting a git repository via http
1825~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1826
1827The git protocol gives better performance and reliability, but on a
1828host with a web server set up, http exports may be simpler to set up.
1829
1830All you need to do is place the newly created bare git repository in
1831a directory that is exported by the web server, and make some
1832adjustments to give web clients some extra information they need:
1833
1834-------------------------------------------------
1835$ mv proj.git /home/you/public_html/proj.git
1836$ cd proj.git
1837$ git --bare update-server-info
1838$ chmod a+x hooks/post-update
1839-------------------------------------------------
1840
1841(For an explanation of the last two lines, see
1842gitlink:git-update-server-info[1], and the documentation
1843link:hooks.html[Hooks used by git].)
1844
1845Advertise the url of proj.git.  Anybody else should then be able to
1846clone or pull from that url, for example with a commandline like:
1847
1848-------------------------------------------------
1849$ git clone http://yourserver.com/~you/proj.git
1850-------------------------------------------------
1851
1852(See also
1853link:howto/setup-git-server-over-http.txt[setup-git-server-over-http]
1854for a slightly more sophisticated setup using WebDAV which also
1855allows pushing over http.)
1856
1857[[pushing-changes-to-a-public-repository]]
1858Pushing changes to a public repository
1859~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1860
1861Note that the two techniques outlined above (exporting via
1862<<exporting-via-http,http>> or <<exporting-via-git,git>>) allow other
1863maintainers to fetch your latest changes, but they do not allow write
1864access, which you will need to update the public repository with the
1865latest changes created in your private repository.
1866
1867The simplest way to do this is using gitlink:git-push[1] and ssh; to
1868update the remote branch named "master" with the latest state of your
1869branch named "master", run
1870
1871-------------------------------------------------
1872$ git push ssh://yourserver.com/~you/proj.git master:master
1873-------------------------------------------------
1874
1875or just
1876
1877-------------------------------------------------
1878$ git push ssh://yourserver.com/~you/proj.git master
1879-------------------------------------------------
1880
1881As with git-fetch, git-push will complain if this does not result in
1882a <<fast-forwards,fast forward>>.  Normally this is a sign of
1883something wrong.  However, if you are sure you know what you're
1884doing, you may force git-push to perform the update anyway by
1885proceeding the branch name by a plus sign:
1886
1887-------------------------------------------------
1888$ git push ssh://yourserver.com/~you/proj.git +master
1889-------------------------------------------------
1890
1891Note that the target of a "push" is normally a
1892<<def_bare_repository,bare>> repository.  You can also push to a
1893repository that has a checked-out working tree, but the working tree
1894will not be updated by the push.  This may lead to unexpected results if
1895the branch you push to is the currently checked-out branch!
1896
1897As with git-fetch, you may also set up configuration options to
1898save typing; so, for example, after
1899
1900-------------------------------------------------
1901$ cat >>.git/config <<EOF
1902[remote "public-repo"]
1903        url = ssh://yourserver.com/~you/proj.git
1904EOF
1905-------------------------------------------------
1906
1907you should be able to perform the above push with just
1908
1909-------------------------------------------------
1910$ git push public-repo master
1911-------------------------------------------------
1912
1913See the explanations of the remote.<name>.url, branch.<name>.remote,
1914and remote.<name>.push options in gitlink:git-config[1] for
1915details.
1916
1917[[setting-up-a-shared-repository]]
1918Setting up a shared repository
1919~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1920
1921Another way to collaborate is by using a model similar to that
1922commonly used in CVS, where several developers with special rights
1923all push to and pull from a single shared repository.  See
1924link:cvs-migration.html[git for CVS users] for instructions on how to
1925set this up.
1926
1927However, while there is nothing wrong with git's support for shared
1928repositories, this mode of operation is not generally recommended,
1929simply because the mode of collaboration that git supports--by
1930exchanging patches and pulling from public repositories--has so many
1931advantages over the central shared repository:
1932
1933        - Git's ability to quickly import and merge patches allows a
1934          single maintainer to process incoming changes even at very
1935          high rates.  And when that becomes too much, git-pull provides
1936          an easy way for that maintainer to delegate this job to other
1937          maintainers while still allowing optional review of incoming
1938          changes.
1939        - Since every developer's repository has the same complete copy
1940          of the project history, no repository is special, and it is
1941          trivial for another developer to take over maintenance of a
1942          project, either by mutual agreement, or because a maintainer
1943          becomes unresponsive or difficult to work with.
1944        - The lack of a central group of "committers" means there is
1945          less need for formal decisions about who is "in" and who is
1946          "out".
1947
1948[[setting-up-gitweb]]
1949Allowing web browsing of a repository
1950~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1951
1952The gitweb cgi script provides users an easy way to browse your
1953project's files and history without having to install git; see the file
1954gitweb/INSTALL in the git source tree for instructions on setting it up.
1955
1956[[sharing-development-examples]]
1957Examples
1958--------
1959
1960[[maintaining-topic-branches]]
1961Maintaining topic branches for a Linux subsystem maintainer
1962~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1963
1964This describes how Tony Luck uses git in his role as maintainer of the
1965IA64 architecture for the Linux kernel.
1966
1967He uses two public branches:
1968
1969 - A "test" tree into which patches are initially placed so that they
1970   can get some exposure when integrated with other ongoing development.
1971   This tree is available to Andrew for pulling into -mm whenever he
1972   wants.
1973
1974 - A "release" tree into which tested patches are moved for final sanity
1975   checking, and as a vehicle to send them upstream to Linus (by sending
1976   him a "please pull" request.)
1977
1978He also uses a set of temporary branches ("topic branches"), each
1979containing a logical grouping of patches.
1980
1981To set this up, first create your work tree by cloning Linus's public
1982tree:
1983
1984-------------------------------------------------
1985$ git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git work
1986$ cd work
1987-------------------------------------------------
1988
1989Linus's tree will be stored in the remote branch named origin/master,
1990and can be updated using gitlink:git-fetch[1]; you can track other
1991public trees using gitlink:git-remote[1] to set up a "remote" and
1992git-fetch[1] to keep them up-to-date; see <<repositories-and-branches>>.
1993
1994Now create the branches in which you are going to work; these start out
1995at the current tip of origin/master branch, and should be set up (using
1996the --track option to gitlink:git-branch[1]) to merge changes in from
1997Linus by default.
1998
1999-------------------------------------------------
2000$ git branch --track test origin/master
2001$ git branch --track release origin/master
2002-------------------------------------------------
2003
2004These can be easily kept up to date using gitlink:git-pull[1]
2005
2006-------------------------------------------------
2007$ git checkout test && git pull
2008$ git checkout release && git pull
2009-------------------------------------------------
2010
2011Important note!  If you have any local changes in these branches, then
2012this merge will create a commit object in the history (with no local
2013changes git will simply do a "Fast forward" merge).  Many people dislike
2014the "noise" that this creates in the Linux history, so you should avoid
2015doing this capriciously in the "release" branch, as these noisy commits
2016will become part of the permanent history when you ask Linus to pull
2017from the release branch.
2018
2019A few configuration variables (see gitlink:git-config[1]) can
2020make it easy to push both branches to your public tree.  (See
2021<<setting-up-a-public-repository>>.)
2022
2023-------------------------------------------------
2024$ cat >> .git/config <<EOF
2025[remote "mytree"]
2026        url =  master.kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git
2027        push = release
2028        push = test
2029EOF
2030-------------------------------------------------
2031
2032Then you can push both the test and release trees using
2033gitlink:git-push[1]:
2034
2035-------------------------------------------------
2036$ git push mytree
2037-------------------------------------------------
2038
2039or push just one of the test and release branches using:
2040
2041-------------------------------------------------
2042$ git push mytree test
2043-------------------------------------------------
2044
2045or
2046
2047-------------------------------------------------
2048$ git push mytree release
2049-------------------------------------------------
2050
2051Now to apply some patches from the community.  Think of a short
2052snappy name for a branch to hold this patch (or related group of
2053patches), and create a new branch from the current tip of Linus's
2054branch:
2055
2056-------------------------------------------------
2057$ git checkout -b speed-up-spinlocks origin
2058-------------------------------------------------
2059
2060Now you apply the patch(es), run some tests, and commit the change(s).  If
2061the patch is a multi-part series, then you should apply each as a separate
2062commit to this branch.
2063
2064-------------------------------------------------
2065$ ... patch ... test  ... commit [ ... patch ... test ... commit ]*
2066-------------------------------------------------
2067
2068When you are happy with the state of this change, you can pull it into the
2069"test" branch in preparation to make it public:
2070
2071-------------------------------------------------
2072$ git checkout test && git pull . speed-up-spinlocks
2073-------------------------------------------------
2074
2075It is unlikely that you would have any conflicts here ... but you might if you
2076spent a while on this step and had also pulled new versions from upstream.
2077
2078Some time later when enough time has passed and testing done, you can pull the
2079same branch into the "release" tree ready to go upstream.  This is where you
2080see the value of keeping each patch (or patch series) in its own branch.  It
2081means that the patches can be moved into the "release" tree in any order.
2082
2083-------------------------------------------------
2084$ git checkout release && git pull . speed-up-spinlocks
2085-------------------------------------------------
2086
2087After a while, you will have a number of branches, and despite the
2088well chosen names you picked for each of them, you may forget what
2089they are for, or what status they are in.  To get a reminder of what
2090changes are in a specific branch, use:
2091
2092-------------------------------------------------
2093$ git log linux..branchname | git-shortlog
2094-------------------------------------------------
2095
2096To see whether it has already been merged into the test or release branches
2097use:
2098
2099-------------------------------------------------
2100$ git log test..branchname
2101-------------------------------------------------
2102
2103or
2104
2105-------------------------------------------------
2106$ git log release..branchname
2107-------------------------------------------------
2108
2109(If this branch has not yet been merged you will see some log entries.
2110If it has been merged, then there will be no output.)
2111
2112Once a patch completes the great cycle (moving from test to release,
2113then pulled by Linus, and finally coming back into your local
2114"origin/master" branch) the branch for this change is no longer needed.
2115You detect this when the output from:
2116
2117-------------------------------------------------
2118$ git log origin..branchname
2119-------------------------------------------------
2120
2121is empty.  At this point the branch can be deleted:
2122
2123-------------------------------------------------
2124$ git branch -d branchname
2125-------------------------------------------------
2126
2127Some changes are so trivial that it is not necessary to create a separate
2128branch and then merge into each of the test and release branches.  For
2129these changes, just apply directly to the "release" branch, and then
2130merge that into the "test" branch.
2131
2132To create diffstat and shortlog summaries of changes to include in a "please
2133pull" request to Linus you can use:
2134
2135-------------------------------------------------
2136$ git diff --stat origin..release
2137-------------------------------------------------
2138
2139and
2140
2141-------------------------------------------------
2142$ git log -p origin..release | git shortlog
2143-------------------------------------------------
2144
2145Here are some of the scripts that simplify all this even further.
2146
2147-------------------------------------------------
2148==== update script ====
2149# Update a branch in my GIT tree.  If the branch to be updated
2150# is origin, then pull from kernel.org.  Otherwise merge
2151# origin/master branch into test|release branch
2152
2153case "$1" in
2154test|release)
2155        git checkout $1 && git pull . origin
2156        ;;
2157origin)
2158        before=$(cat .git/refs/remotes/origin/master)
2159        git fetch origin
2160        after=$(cat .git/refs/remotes/origin/master)
2161        if [ $before != $after ]
2162        then
2163                git log $before..$after | git shortlog
2164        fi
2165        ;;
2166*)
2167        echo "Usage: $0 origin|test|release" 1>&2
2168        exit 1
2169        ;;
2170esac
2171-------------------------------------------------
2172
2173-------------------------------------------------
2174==== merge script ====
2175# Merge a branch into either the test or release branch
2176
2177pname=$0
2178
2179usage()
2180{
2181        echo "Usage: $pname branch test|release" 1>&2
2182        exit 1
2183}
2184
2185if [ ! -f .git/refs/heads/"$1" ]
2186then
2187        echo "Can't see branch <$1>" 1>&2
2188        usage
2189fi
2190
2191case "$2" in
2192test|release)
2193        if [ $(git log $2..$1 | wc -c) -eq 0 ]
2194        then
2195                echo $1 already merged into $2 1>&2
2196                exit 1
2197        fi
2198        git checkout $2 && git pull . $1
2199        ;;
2200*)
2201        usage
2202        ;;
2203esac
2204-------------------------------------------------
2205
2206-------------------------------------------------
2207==== status script ====
2208# report on status of my ia64 GIT tree
2209
2210gb=$(tput setab 2)
2211rb=$(tput setab 1)
2212restore=$(tput setab 9)
2213
2214if [ `git rev-list test..release | wc -c` -gt 0 ]
2215then
2216        echo $rb Warning: commits in release that are not in test $restore
2217        git log test..release
2218fi
2219
2220for branch in `ls .git/refs/heads`
2221do
2222        if [ $branch = test -o $branch = release ]
2223        then
2224                continue
2225        fi
2226
2227        echo -n $gb ======= $branch ====== $restore " "
2228        status=
2229        for ref in test release origin/master
2230        do
2231                if [ `git rev-list $ref..$branch | wc -c` -gt 0 ]
2232                then
2233                        status=$status${ref:0:1}
2234                fi
2235        done
2236        case $status in
2237        trl)
2238                echo $rb Need to pull into test $restore
2239                ;;
2240        rl)
2241                echo "In test"
2242                ;;
2243        l)
2244                echo "Waiting for linus"
2245                ;;
2246        "")
2247                echo $rb All done $restore
2248                ;;
2249        *)
2250                echo $rb "<$status>" $restore
2251                ;;
2252        esac
2253        git log origin/master..$branch | git shortlog
2254done
2255-------------------------------------------------
2256
2257
2258[[cleaning-up-history]]
2259Rewriting history and maintaining patch series
2260==============================================
2261
2262Normally commits are only added to a project, never taken away or
2263replaced.  Git is designed with this assumption, and violating it will
2264cause git's merge machinery (for example) to do the wrong thing.
2265
2266However, there is a situation in which it can be useful to violate this
2267assumption.
2268
2269[[patch-series]]
2270Creating the perfect patch series
2271---------------------------------
2272
2273Suppose you are a contributor to a large project, and you want to add a
2274complicated feature, and to present it to the other developers in a way
2275that makes it easy for them to read your changes, verify that they are
2276correct, and understand why you made each change.
2277
2278If you present all of your changes as a single patch (or commit), they
2279may find that it is too much to digest all at once.
2280
2281If you present them with the entire history of your work, complete with
2282mistakes, corrections, and dead ends, they may be overwhelmed.
2283
2284So the ideal is usually to produce a series of patches such that:
2285
2286        1. Each patch can be applied in order.
2287
2288        2. Each patch includes a single logical change, together with a
2289           message explaining the change.
2290
2291        3. No patch introduces a regression: after applying any initial
2292           part of the series, the resulting project still compiles and
2293           works, and has no bugs that it didn't have before.
2294
2295        4. The complete series produces the same end result as your own
2296           (probably much messier!) development process did.
2297
2298We will introduce some tools that can help you do this, explain how to
2299use them, and then explain some of the problems that can arise because
2300you are rewriting history.
2301
2302[[using-git-rebase]]
2303Keeping a patch series up to date using git-rebase
2304--------------------------------------------------
2305
2306Suppose that you create a branch "mywork" on a remote-tracking branch
2307"origin", and create some commits on top of it:
2308
2309-------------------------------------------------
2310$ git checkout -b mywork origin
2311$ vi file.txt
2312$ git commit
2313$ vi otherfile.txt
2314$ git commit
2315...
2316-------------------------------------------------
2317
2318You have performed no merges into mywork, so it is just a simple linear
2319sequence of patches on top of "origin":
2320
2321................................................
2322 o--o--o <-- origin
2323        \
2324         o--o--o <-- mywork
2325................................................
2326
2327Some more interesting work has been done in the upstream project, and
2328"origin" has advanced:
2329
2330................................................
2331 o--o--O--o--o--o <-- origin
2332        \
2333         a--b--c <-- mywork
2334................................................
2335
2336At this point, you could use "pull" to merge your changes back in;
2337the result would create a new merge commit, like this:
2338
2339................................................
2340 o--o--O--o--o--o <-- origin
2341        \        \
2342         a--b--c--m <-- mywork
2343................................................
2344 
2345However, if you prefer to keep the history in mywork a simple series of
2346commits without any merges, you may instead choose to use
2347gitlink:git-rebase[1]:
2348
2349-------------------------------------------------
2350$ git checkout mywork
2351$ git rebase origin
2352-------------------------------------------------
2353
2354This will remove each of your commits from mywork, temporarily saving
2355them as patches (in a directory named ".dotest"), update mywork to
2356point at the latest version of origin, then apply each of the saved
2357patches to the new mywork.  The result will look like:
2358
2359
2360................................................
2361 o--o--O--o--o--o <-- origin
2362                 \
2363                  a'--b'--c' <-- mywork
2364................................................
2365
2366In the process, it may discover conflicts.  In that case it will stop
2367and allow you to fix the conflicts; after fixing conflicts, use "git
2368add" to update the index with those contents, and then, instead of
2369running git-commit, just run
2370
2371-------------------------------------------------
2372$ git rebase --continue
2373-------------------------------------------------
2374
2375and git will continue applying the rest of the patches.
2376
2377At any point you may use the --abort option to abort this process and
2378return mywork to the state it had before you started the rebase:
2379
2380-------------------------------------------------
2381$ git rebase --abort
2382-------------------------------------------------
2383
2384[[modifying-one-commit]]
2385Modifying a single commit
2386-------------------------
2387
2388We saw in <<fixing-a-mistake-by-editing-history>> that you can replace the
2389most recent commit using
2390
2391-------------------------------------------------
2392$ git commit --amend
2393-------------------------------------------------
2394
2395which will replace the old commit by a new commit incorporating your
2396changes, giving you a chance to edit the old commit message first.
2397
2398You can also use a combination of this and gitlink:git-rebase[1] to edit
2399commits further back in your history.  First, tag the problematic commit with
2400
2401-------------------------------------------------
2402$ git tag bad mywork~5
2403-------------------------------------------------
2404
2405(Either gitk or git-log may be useful for finding the commit.)
2406
2407Then check out that commit, edit it, and rebase the rest of the series
2408on top of it (note that we could check out the commit on a temporary
2409branch, but instead we're using a <<detached-head,detached head>>):
2410
2411-------------------------------------------------
2412$ git checkout bad
2413$ # make changes here and update the index
2414$ git commit --amend
2415$ git rebase --onto HEAD bad mywork
2416-------------------------------------------------
2417
2418When you're done, you'll be left with mywork checked out, with the top
2419patches on mywork reapplied on top of your modified commit.  You can
2420then clean up with
2421
2422-------------------------------------------------
2423$ git tag -d bad
2424-------------------------------------------------
2425
2426Note that the immutable nature of git history means that you haven't really
2427"modified" existing commits; instead, you have replaced the old commits with
2428new commits having new object names.
2429
2430[[reordering-patch-series]]
2431Reordering or selecting from a patch series
2432-------------------------------------------
2433
2434Given one existing commit, the gitlink:git-cherry-pick[1] command
2435allows you to apply the change introduced by that commit and create a
2436new commit that records it.  So, for example, if "mywork" points to a
2437series of patches on top of "origin", you might do something like:
2438
2439-------------------------------------------------
2440$ git checkout -b mywork-new origin
2441$ gitk origin..mywork &
2442-------------------------------------------------
2443
2444And browse through the list of patches in the mywork branch using gitk,
2445applying them (possibly in a different order) to mywork-new using
2446cherry-pick, and possibly modifying them as you go using commit
2447--amend.
2448
2449Another technique is to use git-format-patch to create a series of
2450patches, then reset the state to before the patches:
2451
2452-------------------------------------------------
2453$ git format-patch origin
2454$ git reset --hard origin
2455-------------------------------------------------
2456
2457Then modify, reorder, or eliminate patches as preferred before applying
2458them again with gitlink:git-am[1].
2459
2460[[patch-series-tools]]
2461Other tools
2462-----------
2463
2464There are numerous other tools, such as stgit, which exist for the
2465purpose of maintaining a patch series.  These are outside of the scope of
2466this manual.
2467
2468[[problems-with-rewriting-history]]
2469Problems with rewriting history
2470-------------------------------
2471
2472The primary problem with rewriting the history of a branch has to do
2473with merging.  Suppose somebody fetches your branch and merges it into
2474their branch, with a result something like this:
2475
2476................................................
2477 o--o--O--o--o--o <-- origin
2478        \        \
2479         t--t--t--m <-- their branch:
2480................................................
2481
2482Then suppose you modify the last three commits:
2483
2484................................................
2485         o--o--o <-- new head of origin
2486        /
2487 o--o--O--o--o--o <-- old head of origin
2488................................................
2489
2490If we examined all this history together in one repository, it will
2491look like:
2492
2493................................................
2494         o--o--o <-- new head of origin
2495        /
2496 o--o--O--o--o--o <-- old head of origin
2497        \        \
2498         t--t--t--m <-- their branch:
2499................................................
2500
2501Git has no way of knowing that the new head is an updated version of
2502the old head; it treats this situation exactly the same as it would if
2503two developers had independently done the work on the old and new heads
2504in parallel.  At this point, if someone attempts to merge the new head
2505in to their branch, git will attempt to merge together the two (old and
2506new) lines of development, instead of trying to replace the old by the
2507new.  The results are likely to be unexpected.
2508
2509You may still choose to publish branches whose history is rewritten,
2510and it may be useful for others to be able to fetch those branches in
2511order to examine or test them, but they should not attempt to pull such
2512branches into their own work.
2513
2514For true distributed development that supports proper merging,
2515published branches should never be rewritten.
2516
2517[[advanced-branch-management]]
2518Advanced branch management
2519==========================
2520
2521[[fetching-individual-branches]]
2522Fetching individual branches
2523----------------------------
2524
2525Instead of using gitlink:git-remote[1], you can also choose just
2526to update one branch at a time, and to store it locally under an
2527arbitrary name:
2528
2529-------------------------------------------------
2530$ git fetch origin todo:my-todo-work
2531-------------------------------------------------
2532
2533The first argument, "origin", just tells git to fetch from the
2534repository you originally cloned from.  The second argument tells git
2535to fetch the branch named "todo" from the remote repository, and to
2536store it locally under the name refs/heads/my-todo-work.
2537
2538You can also fetch branches from other repositories; so
2539
2540-------------------------------------------------
2541$ git fetch git://example.com/proj.git master:example-master
2542-------------------------------------------------
2543
2544will create a new branch named "example-master" and store in it the
2545branch named "master" from the repository at the given URL.  If you
2546already have a branch named example-master, it will attempt to
2547<<fast-forwards,fast-forward>> to the commit given by example.com's
2548master branch.  In more detail:
2549
2550[[fetch-fast-forwards]]
2551git fetch and fast-forwards
2552---------------------------
2553
2554In the previous example, when updating an existing branch, "git
2555fetch" checks to make sure that the most recent commit on the remote
2556branch is a descendant of the most recent commit on your copy of the
2557branch before updating your copy of the branch to point at the new
2558commit.  Git calls this process a <<fast-forwards,fast forward>>.
2559
2560A fast forward looks something like this:
2561
2562................................................
2563 o--o--o--o <-- old head of the branch
2564           \
2565            o--o--o <-- new head of the branch
2566................................................
2567
2568
2569In some cases it is possible that the new head will *not* actually be
2570a descendant of the old head.  For example, the developer may have
2571realized she made a serious mistake, and decided to backtrack,
2572resulting in a situation like:
2573
2574................................................
2575 o--o--o--o--a--b <-- old head of the branch
2576           \
2577            o--o--o <-- new head of the branch
2578................................................
2579
2580In this case, "git fetch" will fail, and print out a warning.
2581
2582In that case, you can still force git to update to the new head, as
2583described in the following section.  However, note that in the
2584situation above this may mean losing the commits labeled "a" and "b",
2585unless you've already created a reference of your own pointing to
2586them.
2587
2588[[forcing-fetch]]
2589Forcing git fetch to do non-fast-forward updates
2590------------------------------------------------
2591
2592If git fetch fails because the new head of a branch is not a
2593descendant of the old head, you may force the update with:
2594
2595-------------------------------------------------
2596$ git fetch git://example.com/proj.git +master:refs/remotes/example/master
2597-------------------------------------------------
2598
2599Note the addition of the "+" sign.  Alternatively, you can use the "-f"
2600flag to force updates of all the fetched branches, as in:
2601
2602-------------------------------------------------
2603$ git fetch -f origin
2604-------------------------------------------------
2605
2606Be aware that commits that the old version of example/master pointed at
2607may be lost, as we saw in the previous section.
2608
2609[[remote-branch-configuration]]
2610Configuring remote branches
2611---------------------------
2612
2613We saw above that "origin" is just a shortcut to refer to the
2614repository that you originally cloned from.  This information is
2615stored in git configuration variables, which you can see using
2616gitlink:git-config[1]:
2617
2618-------------------------------------------------
2619$ git config -l
2620core.repositoryformatversion=0
2621core.filemode=true
2622core.logallrefupdates=true
2623remote.origin.url=git://git.kernel.org/pub/scm/git/git.git
2624remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
2625branch.master.remote=origin
2626branch.master.merge=refs/heads/master
2627-------------------------------------------------
2628
2629If there are other repositories that you also use frequently, you can
2630create similar configuration options to save typing; for example,
2631after
2632
2633-------------------------------------------------
2634$ git config remote.example.url git://example.com/proj.git
2635-------------------------------------------------
2636
2637then the following two commands will do the same thing:
2638
2639-------------------------------------------------
2640$ git fetch git://example.com/proj.git master:refs/remotes/example/master
2641$ git fetch example master:refs/remotes/example/master
2642-------------------------------------------------
2643
2644Even better, if you add one more option:
2645
2646-------------------------------------------------
2647$ git config remote.example.fetch master:refs/remotes/example/master
2648-------------------------------------------------
2649
2650then the following commands will all do the same thing:
2651
2652-------------------------------------------------
2653$ git fetch git://example.com/proj.git master:refs/remotes/example/master
2654$ git fetch example master:refs/remotes/example/master
2655$ git fetch example
2656-------------------------------------------------
2657
2658You can also add a "+" to force the update each time:
2659
2660-------------------------------------------------
2661$ git config remote.example.fetch +master:ref/remotes/example/master
2662-------------------------------------------------
2663
2664Don't do this unless you're sure you won't mind "git fetch" possibly
2665throwing away commits on mybranch.
2666
2667Also note that all of the above configuration can be performed by
2668directly editing the file .git/config instead of using
2669gitlink:git-config[1].
2670
2671See gitlink:git-config[1] for more details on the configuration
2672options mentioned above.
2673
2674
2675[[git-internals]]
2676Git internals
2677=============
2678
2679Git depends on two fundamental abstractions: the "object database", and
2680the "current directory cache" aka "index".
2681
2682[[the-object-database]]
2683The Object Database
2684-------------------
2685
2686The object database is literally just a content-addressable collection
2687of objects.  All objects are named by their content, which is
2688approximated by the SHA1 hash of the object itself.  Objects may refer
2689to other objects (by referencing their SHA1 hash), and so you can
2690build up a hierarchy of objects.
2691
2692All objects have a statically determined "type" which is
2693determined at object creation time, and which identifies the format of
2694the object (i.e. how it is used, and how it can refer to other
2695objects).  There are currently four different object types: "blob",
2696"tree", "commit", and "tag".
2697
2698A <<def_blob_object,"blob" object>> cannot refer to any other object,
2699and is, as the name implies, a pure storage object containing some
2700user data.  It is used to actually store the file data, i.e. a blob
2701object is associated with some particular version of some file.
2702
2703A <<def_tree_object,"tree" object>> is an object that ties one or more
2704"blob" objects into a directory structure. In addition, a tree object
2705can refer to other tree objects, thus creating a directory hierarchy.
2706
2707A <<def_commit_object,"commit" object>> ties such directory hierarchies
2708together into a <<def_DAG,directed acyclic graph>> of revisions - each
2709"commit" is associated with exactly one tree (the directory hierarchy at
2710the time of the commit). In addition, a "commit" refers to one or more
2711"parent" commit objects that describe the history of how we arrived at
2712that directory hierarchy.
2713
2714As a special case, a commit object with no parents is called the "root"
2715commit, and is the point of an initial project commit.  Each project
2716must have at least one root, and while you can tie several different
2717root objects together into one project by creating a commit object which
2718has two or more separate roots as its ultimate parents, that's probably
2719just going to confuse people.  So aim for the notion of "one root object
2720per project", even if git itself does not enforce that. 
2721
2722A <<def_tag_object,"tag" object>> symbolically identifies and can be
2723used to sign other objects. It contains the identifier and type of
2724another object, a symbolic name (of course!) and, optionally, a
2725signature.
2726
2727Regardless of object type, all objects share the following
2728characteristics: they are all deflated with zlib, and have a header
2729that not only specifies their type, but also provides size information
2730about the data in the object.  It's worth noting that the SHA1 hash
2731that is used to name the object is the hash of the original data
2732plus this header, so `sha1sum` 'file' does not match the object name
2733for 'file'.
2734(Historical note: in the dawn of the age of git the hash
2735was the sha1 of the 'compressed' object.)
2736
2737As a result, the general consistency of an object can always be tested
2738independently of the contents or the type of the object: all objects can
2739be validated by verifying that (a) their hashes match the content of the
2740file and (b) the object successfully inflates to a stream of bytes that
2741forms a sequence of <ascii type without space> {plus} <space> {plus} <ascii decimal
2742size> {plus} <byte\0> {plus} <binary object data>.
2743
2744The structured objects can further have their structure and
2745connectivity to other objects verified. This is generally done with
2746the `git-fsck` program, which generates a full dependency graph
2747of all objects, and verifies their internal consistency (in addition
2748to just verifying their superficial consistency through the hash).
2749
2750The object types in some more detail:
2751
2752[[blob-object]]
2753Blob Object
2754-----------
2755
2756A "blob" object is nothing but a binary blob of data, and doesn't
2757refer to anything else.  There is no signature or any other
2758verification of the data, so while the object is consistent (it 'is'
2759indexed by its sha1 hash, so the data itself is certainly correct), it
2760has absolutely no other attributes.  No name associations, no
2761permissions.  It is purely a blob of data (i.e. normally "file
2762contents").
2763
2764In particular, since the blob is entirely defined by its data, if two
2765files in a directory tree (or in multiple different versions of the
2766repository) have the same contents, they will share the same blob
2767object. The object is totally independent of its location in the
2768directory tree, and renaming a file does not change the object that
2769file is associated with in any way.
2770
2771A blob is typically created when gitlink:git-update-index[1]
2772is run, and its data can be accessed by gitlink:git-cat-file[1].
2773
2774[[tree-object]]
2775Tree Object
2776-----------
2777
2778The next hierarchical object type is the "tree" object.  A tree object
2779is a list of mode/name/blob data, sorted by name.  Alternatively, the
2780mode data may specify a directory mode, in which case instead of
2781naming a blob, that name is associated with another TREE object.
2782
2783Like the "blob" object, a tree object is uniquely determined by the
2784set contents, and so two separate but identical trees will always
2785share the exact same object. This is true at all levels, i.e. it's
2786true for a "leaf" tree (which does not refer to any other trees, only
2787blobs) as well as for a whole subdirectory.
2788
2789For that reason a "tree" object is just a pure data abstraction: it
2790has no history, no signatures, no verification of validity, except
2791that since the contents are again protected by the hash itself, we can
2792trust that the tree is immutable and its contents never change.
2793
2794So you can trust the contents of a tree to be valid, the same way you
2795can trust the contents of a blob, but you don't know where those
2796contents 'came' from.
2797
2798Side note on trees: since a "tree" object is a sorted list of
2799"filename+content", you can create a diff between two trees without
2800actually having to unpack two trees.  Just ignore all common parts,
2801and your diff will look right.  In other words, you can effectively
2802(and efficiently) tell the difference between any two random trees by
2803O(n) where "n" is the size of the difference, rather than the size of
2804the tree.
2805
2806Side note 2 on trees: since the name of a "blob" depends entirely and
2807exclusively on its contents (i.e. there are no names or permissions
2808involved), you can see trivial renames or permission changes by
2809noticing that the blob stayed the same.  However, renames with data
2810changes need a smarter "diff" implementation.
2811
2812A tree is created with gitlink:git-write-tree[1] and
2813its data can be accessed by gitlink:git-ls-tree[1].
2814Two trees can be compared with gitlink:git-diff-tree[1].
2815
2816[[commit-object]]
2817Commit Object
2818-------------
2819
2820The "commit" object is an object that introduces the notion of
2821history into the picture.  In contrast to the other objects, it
2822doesn't just describe the physical state of a tree, it describes how
2823we got there, and why.
2824
2825A "commit" is defined by the tree-object that it results in, the
2826parent commits (zero, one or more) that led up to that point, and a
2827comment on what happened.  Again, a commit is not trusted per se:
2828the contents are well-defined and "safe" due to the cryptographically
2829strong signatures at all levels, but there is no reason to believe
2830that the tree is "good" or that the merge information makes sense.
2831The parents do not have to actually have any relationship with the
2832result, for example.
2833
2834Note on commits: unlike some SCM's, commits do not contain
2835rename information or file mode change information.  All of that is
2836implicit in the trees involved (the result tree, and the result trees
2837of the parents), and describing that makes no sense in this idiotic
2838file manager.
2839
2840A commit is created with gitlink:git-commit-tree[1] and
2841its data can be accessed by gitlink:git-cat-file[1].
2842
2843[[trust]]
2844Trust
2845-----
2846
2847An aside on the notion of "trust". Trust is really outside the scope
2848of "git", but it's worth noting a few things.  First off, since
2849everything is hashed with SHA1, you 'can' trust that an object is
2850intact and has not been messed with by external sources.  So the name
2851of an object uniquely identifies a known state - just not a state that
2852you may want to trust.
2853
2854Furthermore, since the SHA1 signature of a commit refers to the
2855SHA1 signatures of the tree it is associated with and the signatures
2856of the parent, a single named commit specifies uniquely a whole set
2857of history, with full contents.  You can't later fake any step of the
2858way once you have the name of a commit.
2859
2860So to introduce some real trust in the system, the only thing you need
2861to do is to digitally sign just 'one' special note, which includes the
2862name of a top-level commit.  Your digital signature shows others
2863that you trust that commit, and the immutability of the history of
2864commits tells others that they can trust the whole history.
2865
2866In other words, you can easily validate a whole archive by just
2867sending out a single email that tells the people the name (SHA1 hash)
2868of the top commit, and digitally sign that email using something
2869like GPG/PGP.
2870
2871To assist in this, git also provides the tag object...
2872
2873[[tag-object]]
2874Tag Object
2875----------
2876
2877Git provides the "tag" object to simplify creating, managing and
2878exchanging symbolic and signed tokens.  The "tag" object at its
2879simplest simply symbolically identifies another object by containing
2880the sha1, type and symbolic name.
2881
2882However it can optionally contain additional signature information
2883(which git doesn't care about as long as there's less than 8k of
2884it). This can then be verified externally to git.
2885
2886Note that despite the tag features, "git" itself only handles content
2887integrity; the trust framework (and signature provision and
2888verification) has to come from outside.
2889
2890A tag is created with gitlink:git-mktag[1],
2891its data can be accessed by gitlink:git-cat-file[1],
2892and the signature can be verified by
2893gitlink:git-verify-tag[1].
2894
2895
2896[[the-index]]
2897The "index" aka "Current Directory Cache"
2898-----------------------------------------
2899
2900The index is a simple binary file, which contains an efficient
2901representation of the contents of a virtual directory.  It
2902does so by a simple array that associates a set of names, dates,
2903permissions and content (aka "blob") objects together.  The cache is
2904always kept ordered by name, and names are unique (with a few very
2905specific rules) at any point in time, but the cache has no long-term
2906meaning, and can be partially updated at any time.
2907
2908In particular, the index certainly does not need to be consistent with
2909the current directory contents (in fact, most operations will depend on
2910different ways to make the index 'not' be consistent with the directory
2911hierarchy), but it has three very important attributes:
2912
2913'(a) it can re-generate the full state it caches (not just the
2914directory structure: it contains pointers to the "blob" objects so
2915that it can regenerate the data too)'
2916
2917As a special case, there is a clear and unambiguous one-way mapping
2918from a current directory cache to a "tree object", which can be
2919efficiently created from just the current directory cache without
2920actually looking at any other data.  So a directory cache at any one
2921time uniquely specifies one and only one "tree" object (but has
2922additional data to make it easy to match up that tree object with what
2923has happened in the directory)
2924
2925'(b) it has efficient methods for finding inconsistencies between that
2926cached state ("tree object waiting to be instantiated") and the
2927current state.'
2928
2929'(c) it can additionally efficiently represent information about merge
2930conflicts between different tree objects, allowing each pathname to be
2931associated with sufficient information about the trees involved that
2932you can create a three-way merge between them.'
2933
2934Those are the ONLY three things that the directory cache does.  It's a
2935cache, and the normal operation is to re-generate it completely from a
2936known tree object, or update/compare it with a live tree that is being
2937developed.  If you blow the directory cache away entirely, you generally
2938haven't lost any information as long as you have the name of the tree
2939that it described. 
2940
2941At the same time, the index is at the same time also the
2942staging area for creating new trees, and creating a new tree always
2943involves a controlled modification of the index file.  In particular,
2944the index file can have the representation of an intermediate tree that
2945has not yet been instantiated.  So the index can be thought of as a
2946write-back cache, which can contain dirty information that has not yet
2947been written back to the backing store.
2948
2949
2950
2951[[the-workflow]]
2952The Workflow
2953------------
2954
2955Generally, all "git" operations work on the index file. Some operations
2956work *purely* on the index file (showing the current state of the
2957index), but most operations move data to and from the index file. Either
2958from the database or from the working directory. Thus there are four
2959main combinations: 
2960
2961[[working-directory-to-index]]
2962working directory -> index
2963~~~~~~~~~~~~~~~~~~~~~~~~~~
2964
2965You update the index with information from the working directory with
2966the gitlink:git-update-index[1] command.  You
2967generally update the index information by just specifying the filename
2968you want to update, like so:
2969
2970-------------------------------------------------
2971$ git-update-index filename
2972-------------------------------------------------
2973
2974but to avoid common mistakes with filename globbing etc, the command
2975will not normally add totally new entries or remove old entries,
2976i.e. it will normally just update existing cache entries.
2977
2978To tell git that yes, you really do realize that certain files no
2979longer exist, or that new files should be added, you
2980should use the `--remove` and `--add` flags respectively.
2981
2982NOTE! A `--remove` flag does 'not' mean that subsequent filenames will
2983necessarily be removed: if the files still exist in your directory
2984structure, the index will be updated with their new status, not
2985removed. The only thing `--remove` means is that update-cache will be
2986considering a removed file to be a valid thing, and if the file really
2987does not exist any more, it will update the index accordingly.
2988
2989As a special case, you can also do `git-update-index --refresh`, which
2990will refresh the "stat" information of each index to match the current
2991stat information. It will 'not' update the object status itself, and
2992it will only update the fields that are used to quickly test whether
2993an object still matches its old backing store object.
2994
2995[[index-to-object-database]]
2996index -> object database
2997~~~~~~~~~~~~~~~~~~~~~~~~
2998
2999You write your current index file to a "tree" object with the program
3000
3001-------------------------------------------------
3002$ git-write-tree
3003-------------------------------------------------
3004
3005that doesn't come with any options - it will just write out the
3006current index into the set of tree objects that describe that state,
3007and it will return the name of the resulting top-level tree. You can
3008use that tree to re-generate the index at any time by going in the
3009other direction:
3010
3011[[object-database-to-index]]
3012object database -> index
3013~~~~~~~~~~~~~~~~~~~~~~~~
3014
3015You read a "tree" file from the object database, and use that to
3016populate (and overwrite - don't do this if your index contains any
3017unsaved state that you might want to restore later!) your current
3018index.  Normal operation is just
3019
3020-------------------------------------------------
3021$ git-read-tree <sha1 of tree>
3022-------------------------------------------------
3023
3024and your index file will now be equivalent to the tree that you saved
3025earlier. However, that is only your 'index' file: your working
3026directory contents have not been modified.
3027
3028[[index-to-working-directory]]
3029index -> working directory
3030~~~~~~~~~~~~~~~~~~~~~~~~~~
3031
3032You update your working directory from the index by "checking out"
3033files. This is not a very common operation, since normally you'd just
3034keep your files updated, and rather than write to your working
3035directory, you'd tell the index files about the changes in your
3036working directory (i.e. `git-update-index`).
3037
3038However, if you decide to jump to a new version, or check out somebody
3039else's version, or just restore a previous tree, you'd populate your
3040index file with read-tree, and then you need to check out the result
3041with
3042
3043-------------------------------------------------
3044$ git-checkout-index filename
3045-------------------------------------------------
3046
3047or, if you want to check out all of the index, use `-a`.
3048
3049NOTE! git-checkout-index normally refuses to overwrite old files, so
3050if you have an old version of the tree already checked out, you will
3051need to use the "-f" flag ('before' the "-a" flag or the filename) to
3052'force' the checkout.
3053
3054
3055Finally, there are a few odds and ends which are not purely moving
3056from one representation to the other:
3057
3058[[tying-it-all-together]]
3059Tying it all together
3060~~~~~~~~~~~~~~~~~~~~~
3061
3062To commit a tree you have instantiated with "git-write-tree", you'd
3063create a "commit" object that refers to that tree and the history
3064behind it - most notably the "parent" commits that preceded it in
3065history.
3066
3067Normally a "commit" has one parent: the previous state of the tree
3068before a certain change was made. However, sometimes it can have two
3069or more parent commits, in which case we call it a "merge", due to the
3070fact that such a commit brings together ("merges") two or more
3071previous states represented by other commits.
3072
3073In other words, while a "tree" represents a particular directory state
3074of a working directory, a "commit" represents that state in "time",
3075and explains how we got there.
3076
3077You create a commit object by giving it the tree that describes the
3078state at the time of the commit, and a list of parents:
3079
3080-------------------------------------------------
3081$ git-commit-tree <tree> -p <parent> [-p <parent2> ..]
3082-------------------------------------------------
3083
3084and then giving the reason for the commit on stdin (either through
3085redirection from a pipe or file, or by just typing it at the tty).
3086
3087git-commit-tree will return the name of the object that represents
3088that commit, and you should save it away for later use. Normally,
3089you'd commit a new `HEAD` state, and while git doesn't care where you
3090save the note about that state, in practice we tend to just write the
3091result to the file pointed at by `.git/HEAD`, so that we can always see
3092what the last committed state was.
3093
3094Here is an ASCII art by Jon Loeliger that illustrates how
3095various pieces fit together.
3096
3097------------
3098
3099                     commit-tree
3100                      commit obj
3101                       +----+
3102                       |    |
3103                       |    |
3104                       V    V
3105                    +-----------+
3106                    | Object DB |
3107                    |  Backing  |
3108                    |   Store   |
3109                    +-----------+
3110                       ^
3111           write-tree  |     |
3112             tree obj  |     |
3113                       |     |  read-tree
3114                       |     |  tree obj
3115                             V
3116                    +-----------+
3117                    |   Index   |
3118                    |  "cache"  |
3119                    +-----------+
3120         update-index  ^
3121             blob obj  |     |
3122                       |     |
3123    checkout-index -u  |     |  checkout-index
3124             stat      |     |  blob obj
3125                             V
3126                    +-----------+
3127                    |  Working  |
3128                    | Directory |
3129                    +-----------+
3130
3131------------
3132
3133
3134[[examining-the-data]]
3135Examining the data
3136------------------
3137
3138You can examine the data represented in the object database and the
3139index with various helper tools. For every object, you can use
3140gitlink:git-cat-file[1] to examine details about the
3141object:
3142
3143-------------------------------------------------
3144$ git-cat-file -t <objectname>
3145-------------------------------------------------
3146
3147shows the type of the object, and once you have the type (which is
3148usually implicit in where you find the object), you can use
3149
3150-------------------------------------------------
3151$ git-cat-file blob|tree|commit|tag <objectname>
3152-------------------------------------------------
3153
3154to show its contents. NOTE! Trees have binary content, and as a result
3155there is a special helper for showing that content, called
3156`git-ls-tree`, which turns the binary content into a more easily
3157readable form.
3158
3159It's especially instructive to look at "commit" objects, since those
3160tend to be small and fairly self-explanatory. In particular, if you
3161follow the convention of having the top commit name in `.git/HEAD`,
3162you can do
3163
3164-------------------------------------------------
3165$ git-cat-file commit HEAD
3166-------------------------------------------------
3167
3168to see what the top commit was.
3169
3170[[merging-multiple-trees]]
3171Merging multiple trees
3172----------------------
3173
3174Git helps you do a three-way merge, which you can expand to n-way by
3175repeating the merge procedure arbitrary times until you finally
3176"commit" the state.  The normal situation is that you'd only do one
3177three-way merge (two parents), and commit it, but if you like to, you
3178can do multiple parents in one go.
3179
3180To do a three-way merge, you need the two sets of "commit" objects
3181that you want to merge, use those to find the closest common parent (a
3182third "commit" object), and then use those commit objects to find the
3183state of the directory ("tree" object) at these points.
3184
3185To get the "base" for the merge, you first look up the common parent
3186of two commits with
3187
3188-------------------------------------------------
3189$ git-merge-base <commit1> <commit2>
3190-------------------------------------------------
3191
3192which will return you the commit they are both based on.  You should
3193now look up the "tree" objects of those commits, which you can easily
3194do with (for example)
3195
3196-------------------------------------------------
3197$ git-cat-file commit <commitname> | head -1
3198-------------------------------------------------
3199
3200since the tree object information is always the first line in a commit
3201object.
3202
3203Once you know the three trees you are going to merge (the one "original"
3204tree, aka the common tree, and the two "result" trees, aka the branches
3205you want to merge), you do a "merge" read into the index. This will
3206complain if it has to throw away your old index contents, so you should
3207make sure that you've committed those - in fact you would normally
3208always do a merge against your last commit (which should thus match what
3209you have in your current index anyway).
3210
3211To do the merge, do
3212
3213-------------------------------------------------
3214$ git-read-tree -m -u <origtree> <yourtree> <targettree>
3215-------------------------------------------------
3216
3217which will do all trivial merge operations for you directly in the
3218index file, and you can just write the result out with
3219`git-write-tree`.
3220
3221
3222[[merging-multiple-trees-2]]
3223Merging multiple trees, continued
3224---------------------------------
3225
3226Sadly, many merges aren't trivial. If there are files that have
3227been added.moved or removed, or if both branches have modified the
3228same file, you will be left with an index tree that contains "merge
3229entries" in it. Such an index tree can 'NOT' be written out to a tree
3230object, and you will have to resolve any such merge clashes using
3231other tools before you can write out the result.
3232
3233You can examine such index state with `git-ls-files --unmerged`
3234command.  An example:
3235
3236------------------------------------------------
3237$ git-read-tree -m $orig HEAD $target
3238$ git-ls-files --unmerged
3239100644 263414f423d0e4d70dae8fe53fa34614ff3e2860 1       hello.c
3240100644 06fa6a24256dc7e560efa5687fa84b51f0263c3a 2       hello.c
3241100644 cc44c73eb783565da5831b4d820c962954019b69 3       hello.c
3242------------------------------------------------
3243
3244Each line of the `git-ls-files --unmerged` output begins with
3245the blob mode bits, blob SHA1, 'stage number', and the
3246filename.  The 'stage number' is git's way to say which tree it
3247came from: stage 1 corresponds to `$orig` tree, stage 2 `HEAD`
3248tree, and stage3 `$target` tree.
3249
3250Earlier we said that trivial merges are done inside
3251`git-read-tree -m`.  For example, if the file did not change
3252from `$orig` to `HEAD` nor `$target`, or if the file changed
3253from `$orig` to `HEAD` and `$orig` to `$target` the same way,
3254obviously the final outcome is what is in `HEAD`.  What the
3255above example shows is that file `hello.c` was changed from
3256`$orig` to `HEAD` and `$orig` to `$target` in a different way.
3257You could resolve this by running your favorite 3-way merge
3258program, e.g.  `diff3`, `merge`, or git's own merge-file, on
3259the blob objects from these three stages yourself, like this:
3260
3261------------------------------------------------
3262$ git-cat-file blob 263414f... >hello.c~1
3263$ git-cat-file blob 06fa6a2... >hello.c~2
3264$ git-cat-file blob cc44c73... >hello.c~3
3265$ git merge-file hello.c~2 hello.c~1 hello.c~3
3266------------------------------------------------
3267
3268This would leave the merge result in `hello.c~2` file, along
3269with conflict markers if there are conflicts.  After verifying
3270the merge result makes sense, you can tell git what the final
3271merge result for this file is by:
3272
3273-------------------------------------------------
3274$ mv -f hello.c~2 hello.c
3275$ git-update-index hello.c
3276-------------------------------------------------
3277
3278When a path is in unmerged state, running `git-update-index` for
3279that path tells git to mark the path resolved.
3280
3281The above is the description of a git merge at the lowest level,
3282to help you understand what conceptually happens under the hood.
3283In practice, nobody, not even git itself, uses three `git-cat-file`
3284for this.  There is `git-merge-index` program that extracts the
3285stages to temporary files and calls a "merge" script on it:
3286
3287-------------------------------------------------
3288$ git-merge-index git-merge-one-file hello.c
3289-------------------------------------------------
3290
3291and that is what higher level `git merge -s resolve` is implemented with.
3292
3293[[pack-files]]
3294How git stores objects efficiently: pack files
3295----------------------------------------------
3296
3297We've seen how git stores each object in a file named after the
3298object's SHA1 hash.
3299
3300Unfortunately this system becomes inefficient once a project has a
3301lot of objects.  Try this on an old project:
3302
3303------------------------------------------------
3304$ git count-objects
33056930 objects, 47620 kilobytes
3306------------------------------------------------
3307
3308The first number is the number of objects which are kept in
3309individual files.  The second is the amount of space taken up by
3310those "loose" objects.
3311
3312You can save space and make git faster by moving these loose objects in
3313to a "pack file", which stores a group of objects in an efficient
3314compressed format; the details of how pack files are formatted can be
3315found in link:technical/pack-format.txt[technical/pack-format.txt].
3316
3317To put the loose objects into a pack, just run git repack:
3318
3319------------------------------------------------
3320$ git repack
3321Generating pack...
3322Done counting 6020 objects.
3323Deltifying 6020 objects.
3324 100% (6020/6020) done
3325Writing 6020 objects.
3326 100% (6020/6020) done
3327Total 6020, written 6020 (delta 4070), reused 0 (delta 0)
3328Pack pack-3e54ad29d5b2e05838c75df582c65257b8d08e1c created.
3329------------------------------------------------
3330
3331You can then run
3332
3333------------------------------------------------
3334$ git prune
3335------------------------------------------------
3336
3337to remove any of the "loose" objects that are now contained in the
3338pack.  This will also remove any unreferenced objects (which may be
3339created when, for example, you use "git reset" to remove a commit).
3340You can verify that the loose objects are gone by looking at the
3341.git/objects directory or by running
3342
3343------------------------------------------------
3344$ git count-objects
33450 objects, 0 kilobytes
3346------------------------------------------------
3347
3348Although the object files are gone, any commands that refer to those
3349objects will work exactly as they did before.
3350
3351The gitlink:git-gc[1] command performs packing, pruning, and more for
3352you, so is normally the only high-level command you need.
3353
3354[[dangling-objects]]
3355Dangling objects
3356----------------
3357
3358The gitlink:git-fsck[1] command will sometimes complain about dangling
3359objects.  They are not a problem.
3360
3361The most common cause of dangling objects is that you've rebased a
3362branch, or you have pulled from somebody else who rebased a branch--see
3363<<cleaning-up-history>>.  In that case, the old head of the original
3364branch still exists, as does everything it pointed to. The branch
3365pointer itself just doesn't, since you replaced it with another one.
3366
3367There are also other situations that cause dangling objects. For
3368example, a "dangling blob" may arise because you did a "git add" of a
3369file, but then, before you actually committed it and made it part of the
3370bigger picture, you changed something else in that file and committed
3371that *updated* thing - the old state that you added originally ends up
3372not being pointed to by any commit or tree, so it's now a dangling blob
3373object.
3374
3375Similarly, when the "recursive" merge strategy runs, and finds that
3376there are criss-cross merges and thus more than one merge base (which is
3377fairly unusual, but it does happen), it will generate one temporary
3378midway tree (or possibly even more, if you had lots of criss-crossing
3379merges and more than two merge bases) as a temporary internal merge
3380base, and again, those are real objects, but the end result will not end
3381up pointing to them, so they end up "dangling" in your repository.
3382
3383Generally, dangling objects aren't anything to worry about. They can
3384even be very useful: if you screw something up, the dangling objects can
3385be how you recover your old tree (say, you did a rebase, and realized
3386that you really didn't want to - you can look at what dangling objects
3387you have, and decide to reset your head to some old dangling state).
3388
3389For commits, you can just use:
3390
3391------------------------------------------------
3392$ gitk <dangling-commit-sha-goes-here> --not --all
3393------------------------------------------------
3394
3395This asks for all the history reachable from the given commit but not
3396from any branch, tag, or other reference.  If you decide it's something
3397you want, you can always create a new reference to it, e.g.,
3398
3399------------------------------------------------
3400$ git branch recovered-branch <dangling-commit-sha-goes-here>
3401------------------------------------------------
3402
3403For blobs and trees, you can't do the same, but you can still examine
3404them.  You can just do
3405
3406------------------------------------------------
3407$ git show <dangling-blob/tree-sha-goes-here>
3408------------------------------------------------
3409
3410to show what the contents of the blob were (or, for a tree, basically
3411what the "ls" for that directory was), and that may give you some idea
3412of what the operation was that left that dangling object.
3413
3414Usually, dangling blobs and trees aren't very interesting. They're
3415almost always the result of either being a half-way mergebase (the blob
3416will often even have the conflict markers from a merge in it, if you
3417have had conflicting merges that you fixed up by hand), or simply
3418because you interrupted a "git fetch" with ^C or something like that,
3419leaving _some_ of the new objects in the object database, but just
3420dangling and useless.
3421
3422Anyway, once you are sure that you're not interested in any dangling 
3423state, you can just prune all unreachable objects:
3424
3425------------------------------------------------
3426$ git prune
3427------------------------------------------------
3428
3429and they'll be gone. But you should only run "git prune" on a quiescent
3430repository - it's kind of like doing a filesystem fsck recovery: you
3431don't want to do that while the filesystem is mounted.
3432
3433(The same is true of "git-fsck" itself, btw - but since 
3434git-fsck never actually *changes* the repository, it just reports 
3435on what it found, git-fsck itself is never "dangerous" to run. 
3436Running it while somebody is actually changing the repository can cause 
3437confusing and scary messages, but it won't actually do anything bad. In 
3438contrast, running "git prune" while somebody is actively changing the 
3439repository is a *BAD* idea).
3440
3441[[birdview-on-the-source-code]]
3442A birds-eye view of Git's source code
3443-------------------------------------
3444
3445It is not always easy for new developers to find their way through Git's
3446source code.  This section gives you a little guidance to show where to
3447start.
3448
3449A good place to start is with the contents of the initial commit, with:
3450
3451----------------------------------------------------
3452$ git checkout e83c5163
3453----------------------------------------------------
3454
3455The initial revision lays the foundation for almost everything git has
3456today, but is small enough to read in one sitting.
3457
3458Note that terminology has changed since that revision.  For example, the
3459README in that revision uses the word "changeset" to describe what we
3460now call a <<def_commit_object,commit>>.
3461
3462Also, we do not call it "cache" any more, but "index", however, the
3463file is still called `cache.h`.  Remark: Not much reason to change it now,
3464especially since there is no good single name for it anyway, because it is
3465basically _the_ header file which is included by _all_ of Git's C sources.
3466
3467If you grasp the ideas in that initial commit, you should check out a
3468more recent version and skim `cache.h`, `object.h` and `commit.h`.
3469
3470In the early days, Git (in the tradition of UNIX) was a bunch of programs
3471which were extremely simple, and which you used in scripts, piping the
3472output of one into another. This turned out to be good for initial
3473development, since it was easier to test new things.  However, recently
3474many of these parts have become builtins, and some of the core has been
3475"libified", i.e. put into libgit.a for performance, portability reasons,
3476and to avoid code duplication.
3477
3478By now, you know what the index is (and find the corresponding data
3479structures in `cache.h`), and that there are just a couple of object types
3480(blobs, trees, commits and tags) which inherit their common structure from
3481`struct object`, which is their first member (and thus, you can cast e.g.
3482`(struct object *)commit` to achieve the _same_ as `&commit->object`, i.e.
3483get at the object name and flags).
3484
3485Now is a good point to take a break to let this information sink in.
3486
3487Next step: get familiar with the object naming.  Read <<naming-commits>>.
3488There are quite a few ways to name an object (and not only revisions!).
3489All of these are handled in `sha1_name.c`. Just have a quick look at
3490the function `get_sha1()`. A lot of the special handling is done by
3491functions like `get_sha1_basic()` or the likes.
3492
3493This is just to get you into the groove for the most libified part of Git:
3494the revision walker.
3495
3496Basically, the initial version of `git log` was a shell script:
3497
3498----------------------------------------------------------------
3499$ git-rev-list --pretty $(git-rev-parse --default HEAD "$@") | \
3500        LESS=-S ${PAGER:-less}
3501----------------------------------------------------------------
3502
3503What does this mean?
3504
3505`git-rev-list` is the original version of the revision walker, which
3506_always_ printed a list of revisions to stdout.  It is still functional,
3507and needs to, since most new Git programs start out as scripts using
3508`git-rev-list`.
3509
3510`git-rev-parse` is not as important any more; it was only used to filter out
3511options that were relevant for the different plumbing commands that were
3512called by the script.
3513
3514Most of what `git-rev-list` did is contained in `revision.c` and
3515`revision.h`.  It wraps the options in a struct named `rev_info`, which
3516controls how and what revisions are walked, and more.
3517
3518The original job of `git-rev-parse` is now taken by the function
3519`setup_revisions()`, which parses the revisions and the common command line
3520options for the revision walker. This information is stored in the struct
3521`rev_info` for later consumption. You can do your own command line option
3522parsing after calling `setup_revisions()`. After that, you have to call
3523`prepare_revision_walk()` for initialization, and then you can get the
3524commits one by one with the function `get_revision()`.
3525
3526If you are interested in more details of the revision walking process,
3527just have a look at the first implementation of `cmd_log()`; call
3528`git-show v1.3.0~155^2~4` and scroll down to that function (note that you
3529no longer need to call `setup_pager()` directly).
3530
3531Nowadays, `git log` is a builtin, which means that it is _contained_ in the
3532command `git`.  The source side of a builtin is
3533
3534- a function called `cmd_<bla>`, typically defined in `builtin-<bla>.c`,
3535  and declared in `builtin.h`,
3536
3537- an entry in the `commands[]` array in `git.c`, and
3538
3539- an entry in `BUILTIN_OBJECTS` in the `Makefile`.
3540
3541Sometimes, more than one builtin is contained in one source file.  For
3542example, `cmd_whatchanged()` and `cmd_log()` both reside in `builtin-log.c`,
3543since they share quite a bit of code.  In that case, the commands which are
3544_not_ named like the `.c` file in which they live have to be listed in
3545`BUILT_INS` in the `Makefile`.
3546
3547`git log` looks more complicated in C than it does in the original script,
3548but that allows for a much greater flexibility and performance.
3549
3550Here again it is a good point to take a pause.
3551
3552Lesson three is: study the code.  Really, it is the best way to learn about
3553the organization of Git (after you know the basic concepts).
3554
3555So, think about something which you are interested in, say, "how can I
3556access a blob just knowing the object name of it?".  The first step is to
3557find a Git command with which you can do it.  In this example, it is either
3558`git show` or `git cat-file`.
3559
3560For the sake of clarity, let's stay with `git cat-file`, because it
3561
3562- is plumbing, and
3563
3564- was around even in the initial commit (it literally went only through
3565  some 20 revisions as `cat-file.c`, was renamed to `builtin-cat-file.c`
3566  when made a builtin, and then saw less than 10 versions).
3567
3568So, look into `builtin-cat-file.c`, search for `cmd_cat_file()` and look what
3569it does.
3570
3571------------------------------------------------------------------
3572        git_config(git_default_config);
3573        if (argc != 3)
3574                usage("git-cat-file [-t|-s|-e|-p|<type>] <sha1>");
3575        if (get_sha1(argv[2], sha1))
3576                die("Not a valid object name %s", argv[2]);
3577------------------------------------------------------------------
3578
3579Let's skip over the obvious details; the only really interesting part
3580here is the call to `get_sha1()`.  It tries to interpret `argv[2]` as an
3581object name, and if it refers to an object which is present in the current
3582repository, it writes the resulting SHA-1 into the variable `sha1`.
3583
3584Two things are interesting here:
3585
3586- `get_sha1()` returns 0 on _success_.  This might surprise some new
3587  Git hackers, but there is a long tradition in UNIX to return different
3588  negative numbers in case of different errors -- and 0 on success.
3589
3590- the variable `sha1` in the function signature of `get_sha1()` is `unsigned
3591  char \*`, but is actually expected to be a pointer to `unsigned
3592  char[20]`.  This variable will contain the 160-bit SHA-1 of the given
3593  commit.  Note that whenever a SHA-1 is passed as `unsigned char \*`, it
3594  is the binary representation, as opposed to the ASCII representation in
3595  hex characters, which is passed as `char *`.
3596
3597You will see both of these things throughout the code.
3598
3599Now, for the meat:
3600
3601-----------------------------------------------------------------------------
3602        case 0:
3603                buf = read_object_with_reference(sha1, argv[1], &size, NULL);
3604-----------------------------------------------------------------------------
3605
3606This is how you read a blob (actually, not only a blob, but any type of
3607object).  To know how the function `read_object_with_reference()` actually
3608works, find the source code for it (something like `git grep
3609read_object_with | grep ":[a-z]"` in the git repository), and read
3610the source.
3611
3612To find out how the result can be used, just read on in `cmd_cat_file()`:
3613
3614-----------------------------------
3615        write_or_die(1, buf, size);
3616-----------------------------------
3617
3618Sometimes, you do not know where to look for a feature.  In many such cases,
3619it helps to search through the output of `git log`, and then `git show` the
3620corresponding commit.
3621
3622Example: If you know that there was some test case for `git bundle`, but
3623do not remember where it was (yes, you _could_ `git grep bundle t/`, but that
3624does not illustrate the point!):
3625
3626------------------------
3627$ git log --no-merges t/
3628------------------------
3629
3630In the pager (`less`), just search for "bundle", go a few lines back,
3631and see that it is in commit 18449ab0...  Now just copy this object name,
3632and paste it into the command line
3633
3634-------------------
3635$ git show 18449ab0
3636-------------------
3637
3638Voila.
3639
3640Another example: Find out what to do in order to make some script a
3641builtin:
3642
3643-------------------------------------------------
3644$ git log --no-merges --diff-filter=A builtin-*.c
3645-------------------------------------------------
3646
3647You see, Git is actually the best tool to find out about the source of Git
3648itself!
3649
3650[[glossary]]
3651include::glossary.txt[]
3652
3653[[git-quick-start]]
3654Appendix A: Git Quick Reference
3655===============================
3656
3657This is a quick summary of the major commands; the previous chapters
3658explain how these work in more detail.
3659
3660[[quick-creating-a-new-repository]]
3661Creating a new repository
3662-------------------------
3663
3664From a tarball:
3665
3666-----------------------------------------------
3667$ tar xzf project.tar.gz
3668$ cd project
3669$ git init
3670Initialized empty Git repository in .git/
3671$ git add .
3672$ git commit
3673-----------------------------------------------
3674
3675From a remote repository:
3676
3677-----------------------------------------------
3678$ git clone git://example.com/pub/project.git
3679$ cd project
3680-----------------------------------------------
3681
3682[[managing-branches]]
3683Managing branches
3684-----------------
3685
3686-----------------------------------------------
3687$ git branch         # list all local branches in this repo
3688$ git checkout test  # switch working directory to branch "test"
3689$ git branch new     # create branch "new" starting at current HEAD
3690$ git branch -d new  # delete branch "new"
3691-----------------------------------------------
3692
3693Instead of basing new branch on current HEAD (the default), use:
3694
3695-----------------------------------------------
3696$ git branch new test    # branch named "test"
3697$ git branch new v2.6.15 # tag named v2.6.15
3698$ git branch new HEAD^   # commit before the most recent
3699$ git branch new HEAD^^  # commit before that
3700$ git branch new test~10 # ten commits before tip of branch "test"
3701-----------------------------------------------
3702
3703Create and switch to a new branch at the same time:
3704
3705-----------------------------------------------
3706$ git checkout -b new v2.6.15
3707-----------------------------------------------
3708
3709Update and examine branches from the repository you cloned from:
3710
3711-----------------------------------------------
3712$ git fetch             # update
3713$ git branch -r         # list
3714  origin/master
3715  origin/next
3716  ...
3717$ git checkout -b masterwork origin/master
3718-----------------------------------------------
3719
3720Fetch a branch from a different repository, and give it a new
3721name in your repository:
3722
3723-----------------------------------------------
3724$ git fetch git://example.com/project.git theirbranch:mybranch
3725$ git fetch git://example.com/project.git v2.6.15:mybranch
3726-----------------------------------------------
3727
3728Keep a list of repositories you work with regularly:
3729
3730-----------------------------------------------
3731$ git remote add example git://example.com/project.git
3732$ git remote                    # list remote repositories
3733example
3734origin
3735$ git remote show example       # get details
3736* remote example
3737  URL: git://example.com/project.git
3738  Tracked remote branches
3739    master next ...
3740$ git fetch example             # update branches from example
3741$ git branch -r                 # list all remote branches
3742-----------------------------------------------
3743
3744
3745[[exploring-history]]
3746Exploring history
3747-----------------
3748
3749-----------------------------------------------
3750$ gitk                      # visualize and browse history
3751$ git log                   # list all commits
3752$ git log src/              # ...modifying src/
3753$ git log v2.6.15..v2.6.16  # ...in v2.6.16, not in v2.6.15
3754$ git log master..test      # ...in branch test, not in branch master
3755$ git log test..master      # ...in branch master, but not in test
3756$ git log test...master     # ...in one branch, not in both
3757$ git log -S'foo()'         # ...where difference contain "foo()"
3758$ git log --since="2 weeks ago"
3759$ git log -p                # show patches as well
3760$ git show                  # most recent commit
3761$ git diff v2.6.15..v2.6.16 # diff between two tagged versions
3762$ git diff v2.6.15..HEAD    # diff with current head
3763$ git grep "foo()"          # search working directory for "foo()"
3764$ git grep v2.6.15 "foo()"  # search old tree for "foo()"
3765$ git show v2.6.15:a.txt    # look at old version of a.txt
3766-----------------------------------------------
3767
3768Search for regressions:
3769
3770-----------------------------------------------
3771$ git bisect start
3772$ git bisect bad                # current version is bad
3773$ git bisect good v2.6.13-rc2   # last known good revision
3774Bisecting: 675 revisions left to test after this
3775                                # test here, then:
3776$ git bisect good               # if this revision is good, or
3777$ git bisect bad                # if this revision is bad.
3778                                # repeat until done.
3779-----------------------------------------------
3780
3781[[making-changes]]
3782Making changes
3783--------------
3784
3785Make sure git knows who to blame:
3786
3787------------------------------------------------
3788$ cat >>~/.gitconfig <<\EOF
3789[user]
3790        name = Your Name Comes Here
3791        email = you@yourdomain.example.com
3792EOF
3793------------------------------------------------
3794
3795Select file contents to include in the next commit, then make the
3796commit:
3797
3798-----------------------------------------------
3799$ git add a.txt    # updated file
3800$ git add b.txt    # new file
3801$ git rm c.txt     # old file
3802$ git commit
3803-----------------------------------------------
3804
3805Or, prepare and create the commit in one step:
3806
3807-----------------------------------------------
3808$ git commit d.txt # use latest content only of d.txt
3809$ git commit -a    # use latest content of all tracked files
3810-----------------------------------------------
3811
3812[[merging]]
3813Merging
3814-------
3815
3816-----------------------------------------------
3817$ git merge test   # merge branch "test" into the current branch
3818$ git pull git://example.com/project.git master
3819                   # fetch and merge in remote branch
3820$ git pull . test  # equivalent to git merge test
3821-----------------------------------------------
3822
3823[[sharing-your-changes]]
3824Sharing your changes
3825--------------------
3826
3827Importing or exporting patches:
3828
3829-----------------------------------------------
3830$ git format-patch origin..HEAD # format a patch for each commit
3831                                # in HEAD but not in origin
3832$ git am mbox # import patches from the mailbox "mbox"
3833-----------------------------------------------
3834
3835Fetch a branch in a different git repository, then merge into the
3836current branch:
3837
3838-----------------------------------------------
3839$ git pull git://example.com/project.git theirbranch
3840-----------------------------------------------
3841
3842Store the fetched branch into a local branch before merging into the
3843current branch:
3844
3845-----------------------------------------------
3846$ git pull git://example.com/project.git theirbranch:mybranch
3847-----------------------------------------------
3848
3849After creating commits on a local branch, update the remote
3850branch with your commits:
3851
3852-----------------------------------------------
3853$ git push ssh://example.com/project.git mybranch:theirbranch
3854-----------------------------------------------
3855
3856When remote and local branch are both named "test":
3857
3858-----------------------------------------------
3859$ git push ssh://example.com/project.git test
3860-----------------------------------------------
3861
3862Shortcut version for a frequently used remote repository:
3863
3864-----------------------------------------------
3865$ git remote add example ssh://example.com/project.git
3866$ git push example test
3867-----------------------------------------------
3868
3869[[repository-maintenance]]
3870Repository maintenance
3871----------------------
3872
3873Check for corruption:
3874
3875-----------------------------------------------
3876$ git fsck
3877-----------------------------------------------
3878
3879Recompress, remove unused cruft:
3880
3881-----------------------------------------------
3882$ git gc
3883-----------------------------------------------
3884
3885
3886[[todo]]
3887Appendix B: Notes and todo list for this manual
3888===============================================
3889
3890This is a work in progress.
3891
3892The basic requirements:
3893        - It must be readable in order, from beginning to end, by
3894          someone intelligent with a basic grasp of the unix
3895          commandline, but without any special knowledge of git.  If
3896          necessary, any other prerequisites should be specifically
3897          mentioned as they arise.
3898        - Whenever possible, section headings should clearly describe
3899          the task they explain how to do, in language that requires
3900          no more knowledge than necessary: for example, "importing
3901          patches into a project" rather than "the git-am command"
3902
3903Think about how to create a clear chapter dependency graph that will
3904allow people to get to important topics without necessarily reading
3905everything in between.
3906
3907Scan Documentation/ for other stuff left out; in particular:
3908        howto's
3909        some of technical/?
3910        hooks
3911        list of commands in gitlink:git[1]
3912
3913Scan email archives for other stuff left out
3914
3915Scan man pages to see if any assume more background than this manual
3916provides.
3917
3918Simplify beginning by suggesting disconnected head instead of
3919temporary branch creation?
3920
3921Add more good examples.  Entire sections of just cookbook examples
3922might be a good idea; maybe make an "advanced examples" section a
3923standard end-of-chapter section?
3924
3925Include cross-references to the glossary, where appropriate.
3926
3927Document shallow clones?  See draft 1.5.0 release notes for some
3928documentation.
3929
3930Add a section on working with other version control systems, including
3931CVS, Subversion, and just imports of series of release tarballs.
3932
3933More details on gitweb?
3934
3935Write a chapter on using plumbing and writing scripts.
3936
3937Alternates, clone -reference, etc.
3938
3939git unpack-objects -r for recovery