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