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 a1000special staging area called "the index."10011002At the beginning, the content of the index will be identical to1003that of the HEAD. The command "git diff --cached", which shows1004the difference between the HEAD and the index, should therefore1005produce no output at that point.10061007Modifying the index is easy:10081009To update the index with the new contents of a modified file, use10101011-------------------------------------------------1012$ git add path/to/file1013-------------------------------------------------10141015To add the contents of a new file to the index, use10161017-------------------------------------------------1018$ git add path/to/file1019-------------------------------------------------10201021To remove a file from the index and from the working tree,10221023-------------------------------------------------1024$ git rm path/to/file1025-------------------------------------------------10261027After each step you can verify that10281029-------------------------------------------------1030$ git diff --cached1031-------------------------------------------------10321033always shows the difference between the HEAD and the index file--this1034is what you'd commit if you created the commit now--and that10351036-------------------------------------------------1037$ git diff1038-------------------------------------------------10391040shows the difference between the working tree and the index file.10411042Note that "git add" always adds just the current contents of a file1043to the index; further changes to the same file will be ignored unless1044you run git-add on the file again.10451046When you're ready, just run10471048-------------------------------------------------1049$ git commit1050-------------------------------------------------10511052and git will prompt you for a commit message and then create the new1053commit. Check to make sure it looks like what you expected with10541055-------------------------------------------------1056$ git show1057-------------------------------------------------10581059As a special shortcut,10601061-------------------------------------------------1062$ git commit -a1063-------------------------------------------------10641065will update the index with any files that you've modified or removed1066and create a commit, all in one step.10671068A number of commands are useful for keeping track of what you're1069about to commit:10701071-------------------------------------------------1072$ git diff --cached # difference between HEAD and the index; what1073 # would be committed if you ran "commit" now.1074$ git diff # difference between the index file and your1075 # working directory; changes that would not1076 # be included if you ran "commit" now.1077$ git diff HEAD # difference between HEAD and working tree; what1078 # would be committed if you ran "commit -a" now.1079$ git status # a brief per-file summary of the above.1080-------------------------------------------------10811082[[creating-good-commit-messages]]1083Creating good commit messages1084-----------------------------10851086Though not required, it's a good idea to begin the commit message1087with a single short (less than 50 character) line summarizing the1088change, followed by a blank line and then a more thorough1089description. Tools that turn commits into email, for example, use1090the first line on the Subject line and the rest of the commit in the1091body.10921093[[ignoring-files]]1094Ignoring files1095--------------10961097A project will often generate files that you do 'not' want to track with git.1098This typically includes files generated by a build process or temporary1099backup files made by your editor. Of course, 'not' tracking files with git1100is just a matter of 'not' calling "`git add`" on them. But it quickly becomes1101annoying to have these untracked files lying around; e.g. they make1102"`git add .`" and "`git commit -a`" practically useless, and they keep1103showing up in the output of "`git status`", etc.11041105Git therefore provides "exclude patterns" for telling git which files to1106actively ignore. Exclude patterns are thoroughly explained in the1107gitlink:gitignore[5] manual page, but the heart of the concept is simply1108a list of files which git should ignore. Entries in the list may contain1109globs to specify multiple files, or may be prefixed by "`!`" to1110explicitly include (un-ignore) a previously excluded (ignored) file1111(i.e. later exclude patterns override earlier ones). The following1112example should illustrate such patterns:11131114-------------------------------------------------1115# Lines starting with '#' are considered comments.1116# Ignore foo.txt.1117foo.txt1118# Ignore (generated) html files,1119*.html1120# except foo.html which is maintained by hand.1121!foo.html1122# Ignore objects and archives.1123*.[oa]1124-------------------------------------------------11251126The next question is where to put these exclude patterns so that git can1127find them. Git looks for exclude patterns in the following files:11281129`.gitignore` files in your working tree:::1130 You may store multiple `.gitignore` files at various locations in your1131 working tree. Each `.gitignore` file is applied to the directory where1132 it's located, including its subdirectories. Furthermore, the1133 `.gitignore` files can be tracked like any other files in your working1134 tree; just do a "`git add .gitignore`" and commit. `.gitignore` is1135 therefore the right place to put exclude patterns that are meant to1136 be shared between all project participants, such as build output files1137 (e.g. `\*.o`), etc.1138`.git/info/exclude` in your repo:::1139 Exclude patterns in this file are applied to the working tree as a1140 whole. Since the file is not located in your working tree, it does1141 not follow push/pull/clone like `.gitignore` can do. This is therefore1142 the place to put exclude patterns that are local to your copy of the1143 repo (i.e. 'not' shared between project participants), such as1144 temporary backup files made by your editor (e.g. `\*~`), etc.1145The file specified by the `core.excludesfile` config directive:::1146 By setting the `core.excludesfile` config directive you can tell git1147 where to find more exclude patterns (see gitlink:git-config[1] for1148 more information on configuration options). This config directive1149 can be set in the per-repo `.git/config` file, in which case the1150 exclude patterns will apply to that repo only. Alternatively, you1151 can set the directive in the global `~/.gitconfig` file to apply1152 the exclude pattern to all your git repos. As with the above1153 `.git/info/exclude` (and, indeed, with git config directives in1154 general), this directive does not follow push/pull/clone, but remain1155 local to your repo(s).11561157[NOTE]1158In addition to the above alternatives, there are git commands that can take1159exclude patterns directly on the command line. See gitlink:git-ls-files[1]1160for an example of this.11611162[[how-to-merge]]1163How to merge1164------------11651166You can rejoin two diverging branches of development using1167gitlink:git-merge[1]:11681169-------------------------------------------------1170$ git merge branchname1171-------------------------------------------------11721173merges the development in the branch "branchname" into the current1174branch. If there are conflicts--for example, if the same file is1175modified in two different ways in the remote branch and the local1176branch--then you are warned; the output may look something like this:11771178-------------------------------------------------1179$ git merge next1180 100% (4/4) done1181Auto-merged file.txt1182CONFLICT (content): Merge conflict in file.txt1183Automatic merge failed; fix conflicts and then commit the result.1184-------------------------------------------------11851186Conflict markers are left in the problematic files, and after1187you resolve the conflicts manually, you can update the index1188with the contents and run git commit, as you normally would when1189creating a new file.11901191If you examine the resulting commit using gitk, you will see that it1192has two parents, one pointing to the top of the current branch, and1193one to the top of the other branch.11941195[[resolving-a-merge]]1196Resolving a merge1197-----------------11981199When a merge isn't resolved automatically, git leaves the index and1200the working tree in a special state that gives you all the1201information you need to help resolve the merge.12021203Files with conflicts are marked specially in the index, so until you1204resolve the problem and update the index, gitlink:git-commit[1] will1205fail:12061207-------------------------------------------------1208$ git commit1209file.txt: needs merge1210-------------------------------------------------12111212Also, gitlink:git-status[1] will list those files as "unmerged", and the1213files with conflicts will have conflict markers added, like this:12141215-------------------------------------------------1216<<<<<<< HEAD:file.txt1217Hello world1218=======1219Goodbye1220>>>>>>> 77976da35a11db4580b80ae27e8d65caf5208086:file.txt1221-------------------------------------------------12221223All you need to do is edit the files to resolve the conflicts, and then12241225-------------------------------------------------1226$ git add file.txt1227$ git commit1228-------------------------------------------------12291230Note that the commit message will already be filled in for you with1231some information about the merge. Normally you can just use this1232default message unchanged, but you may add additional commentary of1233your own if desired.12341235The above is all you need to know to resolve a simple merge. But git1236also provides more information to help resolve conflicts:12371238[[conflict-resolution]]1239Getting conflict-resolution help during a merge1240~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~12411242All of the changes that git was able to merge automatically are1243already added to the index file, so gitlink:git-diff[1] shows only1244the conflicts. It uses an unusual syntax:12451246-------------------------------------------------1247$ git diff1248diff --cc file.txt1249index 802992c,2b60207..00000001250--- a/file.txt1251+++ b/file.txt1252@@@ -1,1 -1,1 +1,5 @@@1253++<<<<<<< HEAD:file.txt1254 +Hello world1255++=======1256+ Goodbye1257++>>>>>>> 77976da35a11db4580b80ae27e8d65caf5208086:file.txt1258-------------------------------------------------12591260Recall that the commit which will be committed after we resolve this1261conflict will have two parents instead of the usual one: one parent1262will be HEAD, the tip of the current branch; the other will be the1263tip of the other branch, which is stored temporarily in MERGE_HEAD.12641265During the merge, the index holds three versions of each file. Each of1266these three "file stages" represents a different version of the file:12671268-------------------------------------------------1269$ git show :1:file.txt # the file in a common ancestor of both branches1270$ git show :2:file.txt # the version from HEAD, but including any1271 # nonconflicting changes from MERGE_HEAD1272$ git show :3:file.txt # the version from MERGE_HEAD, but including any1273 # nonconflicting changes from HEAD.1274-------------------------------------------------12751276Since the stage 2 and stage 3 versions have already been updated with1277nonconflicting changes, the only remaining differences between them are1278the important ones; thus gitlink:git-diff[1] can use the information in1279the index to show only those conflicts.12801281The diff above shows the differences between the working-tree version of1282file.txt and the stage 2 and stage 3 versions. So instead of preceding1283each line by a single "+" or "-", it now uses two columns: the first1284column is used for differences between the first parent and the working1285directory copy, and the second for differences between the second parent1286and the working directory copy. (See the "COMBINED DIFF FORMAT" section1287of gitlink:git-diff-files[1] for a details of the format.)12881289After resolving the conflict in the obvious way (but before updating the1290index), the diff will look like:12911292-------------------------------------------------1293$ git diff1294diff --cc file.txt1295index 802992c,2b60207..00000001296--- a/file.txt1297+++ b/file.txt1298@@@ -1,1 -1,1 +1,1 @@@1299- Hello world1300 -Goodbye1301++Goodbye world1302-------------------------------------------------13031304This shows that our resolved version deleted "Hello world" from the1305first parent, deleted "Goodbye" from the second parent, and added1306"Goodbye world", which was previously absent from both.13071308Some special diff options allow diffing the working directory against1309any of these stages:13101311-------------------------------------------------1312$ git diff -1 file.txt # diff against stage 11313$ git diff --base file.txt # same as the above1314$ git diff -2 file.txt # diff against stage 21315$ git diff --ours file.txt # same as the above1316$ git diff -3 file.txt # diff against stage 31317$ git diff --theirs file.txt # same as the above.1318-------------------------------------------------13191320The gitlink:git-log[1] and gitk[1] commands also provide special help1321for merges:13221323-------------------------------------------------1324$ git log --merge1325$ gitk --merge1326-------------------------------------------------13271328These will display all commits which exist only on HEAD or on1329MERGE_HEAD, and which touch an unmerged file.13301331You may also use gitlink:git-mergetool[1], which lets you merge the1332unmerged files using external tools such as emacs or kdiff3.13331334Each time you resolve the conflicts in a file and update the index:13351336-------------------------------------------------1337$ git add file.txt1338-------------------------------------------------13391340the different stages of that file will be "collapsed", after which1341git-diff will (by default) no longer show diffs for that file.13421343[[undoing-a-merge]]1344Undoing a merge1345---------------13461347If you get stuck and decide to just give up and throw the whole mess1348away, you can always return to the pre-merge state with13491350-------------------------------------------------1351$ git reset --hard HEAD1352-------------------------------------------------13531354Or, if you've already committed the merge that you want to throw away,13551356-------------------------------------------------1357$ git reset --hard ORIG_HEAD1358-------------------------------------------------13591360However, this last command can be dangerous in some cases--never1361throw away a commit you have already committed if that commit may1362itself have been merged into another branch, as doing so may confuse1363further merges.13641365[[fast-forwards]]1366Fast-forward merges1367-------------------13681369There is one special case not mentioned above, which is treated1370differently. Normally, a merge results in a merge commit, with two1371parents, one pointing at each of the two lines of development that1372were merged.13731374However, if the current branch is a descendant of the other--so every1375commit present in the one is already contained in the other--then git1376just performs a "fast forward"; the head of the current branch is moved1377forward to point at the head of the merged-in branch, without any new1378commits being created.13791380[[fixing-mistakes]]1381Fixing mistakes1382---------------13831384If you've messed up the working tree, but haven't yet committed your1385mistake, you can return the entire working tree to the last committed1386state with13871388-------------------------------------------------1389$ git reset --hard HEAD1390-------------------------------------------------13911392If you make a commit that you later wish you hadn't, there are two1393fundamentally different ways to fix the problem:13941395 1. You can create a new commit that undoes whatever was done1396 by the previous commit. This is the correct thing if your1397 mistake has already been made public.13981399 2. You can go back and modify the old commit. You should1400 never do this if you have already made the history public;1401 git does not normally expect the "history" of a project to1402 change, and cannot correctly perform repeated merges from1403 a branch that has had its history changed.14041405[[reverting-a-commit]]1406Fixing a mistake with a new commit1407~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~14081409Creating a new commit that reverts an earlier change is very easy;1410just pass the gitlink:git-revert[1] command a reference to the bad1411commit; for example, to revert the most recent commit:14121413-------------------------------------------------1414$ git revert HEAD1415-------------------------------------------------14161417This will create a new commit which undoes the change in HEAD. You1418will be given a chance to edit the commit message for the new commit.14191420You can also revert an earlier change, for example, the next-to-last:14211422-------------------------------------------------1423$ git revert HEAD^1424-------------------------------------------------14251426In this case git will attempt to undo the old change while leaving1427intact any changes made since then. If more recent changes overlap1428with the changes to be reverted, then you will be asked to fix1429conflicts manually, just as in the case of <<resolving-a-merge,1430resolving a merge>>.14311432[[fixing-a-mistake-by-editing-history]]1433Fixing a mistake by editing history1434~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~14351436If the problematic commit is the most recent commit, and you have not1437yet made that commit public, then you may just1438<<undoing-a-merge,destroy it using git-reset>>.14391440Alternatively, you1441can edit the working directory and update the index to fix your1442mistake, just as if you were going to <<how-to-make-a-commit,create a1443new commit>>, then run14441445-------------------------------------------------1446$ git commit --amend1447-------------------------------------------------14481449which will replace the old commit by a new commit incorporating your1450changes, giving you a chance to edit the old commit message first.14511452Again, you should never do this to a commit that may already have1453been merged into another branch; use gitlink:git-revert[1] instead in1454that case.14551456It is also possible to edit commits further back in the history, but1457this is an advanced topic to be left for1458<<cleaning-up-history,another chapter>>.14591460[[checkout-of-path]]1461Checking out an old version of a file1462~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~14631464In the process of undoing a previous bad change, you may find it1465useful to check out an older version of a particular file using1466gitlink:git-checkout[1]. We've used git checkout before to switch1467branches, but it has quite different behavior if it is given a path1468name: the command14691470-------------------------------------------------1471$ git checkout HEAD^ path/to/file1472-------------------------------------------------14731474replaces path/to/file by the contents it had in the commit HEAD^, and1475also updates the index to match. It does not change branches.14761477If you just want to look at an old version of the file, without1478modifying the working directory, you can do that with1479gitlink:git-show[1]:14801481-------------------------------------------------1482$ git show HEAD^:path/to/file1483-------------------------------------------------14841485which will display the given version of the file.14861487[[interrupted-work]]1488Temporarily setting aside work in progress1489~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~14901491While you are in the middle of working on something complicated, you1492find an unrelated but obvious and trivial bug. You would like to fix it1493before continuing. You can use gitlink:git-stash[1] to save the current1494state of your work, and after fixing the bug (or, optionally after doing1495so on a different branch and then coming back), unstash the1496work-in-progress changes.14971498------------------------------------------------1499$ git stash "work in progress for foo feature"1500------------------------------------------------15011502This command will save your changes away to the `stash`, and1503reset your working tree and the index to match the tip of your1504current branch. Then you can make your fix as usual.15051506------------------------------------------------1507... edit and test ...1508$ git commit -a -m "blorpl: typofix"1509------------------------------------------------15101511After that, you can go back to what you were working on with1512`git stash apply`:15131514------------------------------------------------1515$ git stash apply1516------------------------------------------------151715181519[[ensuring-good-performance]]1520Ensuring good performance1521-------------------------15221523On large repositories, git depends on compression to keep the history1524information from taking up to much space on disk or in memory.15251526This compression is not performed automatically. Therefore you1527should occasionally run gitlink:git-gc[1]:15281529-------------------------------------------------1530$ git gc1531-------------------------------------------------15321533to recompress the archive. This can be very time-consuming, so1534you may prefer to run git-gc when you are not doing other work.153515361537[[ensuring-reliability]]1538Ensuring reliability1539--------------------15401541[[checking-for-corruption]]1542Checking the repository for corruption1543~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~15441545The gitlink:git-fsck[1] command runs a number of self-consistency checks1546on the repository, and reports on any problems. This may take some1547time. The most common warning by far is about "dangling" objects:15481549-------------------------------------------------1550$ git fsck1551dangling commit 7281251ddd2a61e38657c827739c57015671a6b31552dangling commit 2706a059f258c6b245f298dc4ff2ccd30ec21a631553dangling commit 13472b7c4b80851a1bc551779171dcb03655e9b51554dangling blob 218761f9d90712d37a9c5e36f406f92202db07eb1555dangling commit bf093535a34a4d35731aa2bd90fe6b176302f14f1556dangling commit 8e4bec7f2ddaa268bef999853c25755452100f8e1557dangling tree d50bb86186bf27b681d25af89d3b5b68382e40851558dangling tree b24c2473f1fd3d91352a624795be026d64c8841f1559...1560-------------------------------------------------15611562Dangling objects are not a problem. At worst they may take up a little1563extra disk space. They can sometimes provide a last-resort method for1564recovering lost work--see <<dangling-objects>> for details. However, if1565you wish, you can remove them with gitlink:git-prune[1] or the --prune1566option to gitlink:git-gc[1]:15671568-------------------------------------------------1569$ git gc --prune1570-------------------------------------------------15711572This may be time-consuming. Unlike most other git operations (including1573git-gc when run without any options), it is not safe to prune while1574other git operations are in progress in the same repository.15751576[[recovering-lost-changes]]1577Recovering lost changes1578~~~~~~~~~~~~~~~~~~~~~~~15791580[[reflogs]]1581Reflogs1582^^^^^^^15831584Say you modify a branch with gitlink:git-reset[1] --hard, and then1585realize that the branch was the only reference you had to that point in1586history.15871588Fortunately, git also keeps a log, called a "reflog", of all the1589previous values of each branch. So in this case you can still find the1590old history using, for example,15911592-------------------------------------------------1593$ git log master@{1}1594-------------------------------------------------15951596This lists the commits reachable from the previous version of the head.1597This syntax can be used to with any git command that accepts a commit,1598not just with git log. Some other examples:15991600-------------------------------------------------1601$ git show master@{2} # See where the branch pointed 2,1602$ git show master@{3} # 3, ... changes ago.1603$ gitk master@{yesterday} # See where it pointed yesterday,1604$ gitk master@{"1 week ago"} # ... or last week1605$ git log --walk-reflogs master # show reflog entries for master1606-------------------------------------------------16071608A separate reflog is kept for the HEAD, so16091610-------------------------------------------------1611$ git show HEAD@{"1 week ago"}1612-------------------------------------------------16131614will show what HEAD pointed to one week ago, not what the current branch1615pointed to one week ago. This allows you to see the history of what1616you've checked out.16171618The reflogs are kept by default for 30 days, after which they may be1619pruned. See gitlink:git-reflog[1] and gitlink:git-gc[1] to learn1620how to control this pruning, and see the "SPECIFYING REVISIONS"1621section of gitlink:git-rev-parse[1] for details.16221623Note that the reflog history is very different from normal git history.1624While normal history is shared by every repository that works on the1625same project, the reflog history is not shared: it tells you only about1626how the branches in your local repository have changed over time.16271628[[dangling-object-recovery]]1629Examining dangling objects1630^^^^^^^^^^^^^^^^^^^^^^^^^^16311632In some situations the reflog may not be able to save you. For example,1633suppose you delete a branch, then realize you need the history it1634contained. The reflog is also deleted; however, if you have not yet1635pruned the repository, then you may still be able to find the lost1636commits in the dangling objects that git-fsck reports. See1637<<dangling-objects>> for the details.16381639-------------------------------------------------1640$ git fsck1641dangling commit 7281251ddd2a61e38657c827739c57015671a6b31642dangling commit 2706a059f258c6b245f298dc4ff2ccd30ec21a631643dangling commit 13472b7c4b80851a1bc551779171dcb03655e9b51644...1645-------------------------------------------------16461647You can examine1648one of those dangling commits with, for example,16491650------------------------------------------------1651$ gitk 7281251ddd --not --all1652------------------------------------------------16531654which does what it sounds like: it says that you want to see the commit1655history that is described by the dangling commit(s), but not the1656history that is described by all your existing branches and tags. Thus1657you get exactly the history reachable from that commit that is lost.1658(And notice that it might not be just one commit: we only report the1659"tip of the line" as being dangling, but there might be a whole deep1660and complex commit history that was dropped.)16611662If you decide you want the history back, you can always create a new1663reference pointing to it, for example, a new branch:16641665------------------------------------------------1666$ git branch recovered-branch 7281251ddd1667------------------------------------------------16681669Other types of dangling objects (blobs and trees) are also possible, and1670dangling objects can arise in other situations.167116721673[[sharing-development]]1674Sharing development with others1675===============================16761677[[getting-updates-with-git-pull]]1678Getting updates with git pull1679-----------------------------16801681After you clone a repository and make a few changes of your own, you1682may wish to check the original repository for updates and merge them1683into your own work.16841685We have already seen <<Updating-a-repository-with-git-fetch,how to1686keep remote tracking branches up to date>> with gitlink:git-fetch[1],1687and how to merge two branches. So you can merge in changes from the1688original repository's master branch with:16891690-------------------------------------------------1691$ git fetch1692$ git merge origin/master1693-------------------------------------------------16941695However, the gitlink:git-pull[1] command provides a way to do this in1696one step:16971698-------------------------------------------------1699$ git pull origin master1700-------------------------------------------------17011702In fact, if you have "master" checked out, then by default "git pull"1703merges from the HEAD branch of the origin repository. So often you can1704accomplish the above with just a simple17051706-------------------------------------------------1707$ git pull1708-------------------------------------------------17091710More generally, a branch that is created from a remote branch will pull1711by default from that branch. See the descriptions of the1712branch.<name>.remote and branch.<name>.merge options in1713gitlink:git-config[1], and the discussion of the --track option in1714gitlink:git-checkout[1], to learn how to control these defaults.17151716In addition to saving you keystrokes, "git pull" also helps you by1717producing a default commit message documenting the branch and1718repository that you pulled from.17191720(But note that no such commit will be created in the case of a1721<<fast-forwards,fast forward>>; instead, your branch will just be1722updated to point to the latest commit from the upstream branch.)17231724The git-pull command can also be given "." as the "remote" repository,1725in which case it just merges in a branch from the current repository; so1726the commands17271728-------------------------------------------------1729$ git pull . branch1730$ git merge branch1731-------------------------------------------------17321733are roughly equivalent. The former is actually very commonly used.17341735[[submitting-patches]]1736Submitting patches to a project1737-------------------------------17381739If you just have a few changes, the simplest way to submit them may1740just be to send them as patches in email:17411742First, use gitlink:git-format-patch[1]; for example:17431744-------------------------------------------------1745$ git format-patch origin1746-------------------------------------------------17471748will produce a numbered series of files in the current directory, one1749for each patch in the current branch but not in origin/HEAD.17501751You can then import these into your mail client and send them by1752hand. However, if you have a lot to send at once, you may prefer to1753use the gitlink:git-send-email[1] script to automate the process.1754Consult the mailing list for your project first to determine how they1755prefer such patches be handled.17561757[[importing-patches]]1758Importing patches to a project1759------------------------------17601761Git also provides a tool called gitlink:git-am[1] (am stands for1762"apply mailbox"), for importing such an emailed series of patches.1763Just save all of the patch-containing messages, in order, into a1764single mailbox file, say "patches.mbox", then run17651766-------------------------------------------------1767$ git am -3 patches.mbox1768-------------------------------------------------17691770Git will apply each patch in order; if any conflicts are found, it1771will stop, and you can fix the conflicts as described in1772"<<resolving-a-merge,Resolving a merge>>". (The "-3" option tells1773git to perform a merge; if you would prefer it just to abort and1774leave your tree and index untouched, you may omit that option.)17751776Once the index is updated with the results of the conflict1777resolution, instead of creating a new commit, just run17781779-------------------------------------------------1780$ git am --resolved1781-------------------------------------------------17821783and git will create the commit for you and continue applying the1784remaining patches from the mailbox.17851786The final result will be a series of commits, one for each patch in1787the original mailbox, with authorship and commit log message each1788taken from the message containing each patch.17891790[[public-repositories]]1791Public git repositories1792-----------------------17931794Another way to submit changes to a project is to tell the maintainer of1795that project to pull the changes from your repository using git-pull[1].1796In the section "<<getting-updates-with-git-pull, Getting updates with1797git pull>>" we described this as a way to get updates from the "main"1798repository, but it works just as well in the other direction.17991800If you and the maintainer both have accounts on the same machine, then1801you can just pull changes from each other's repositories directly;1802commands that accept repository URLs as arguments will also accept a1803local directory name:18041805-------------------------------------------------1806$ git clone /path/to/repository1807$ git pull /path/to/other/repository1808-------------------------------------------------18091810or an ssh url:18111812-------------------------------------------------1813$ git clone ssh://yourhost/~you/repository1814-------------------------------------------------18151816For projects with few developers, or for synchronizing a few private1817repositories, this may be all you need.18181819However, the more common way to do this is to maintain a separate public1820repository (usually on a different host) for others to pull changes1821from. This is usually more convenient, and allows you to cleanly1822separate private work in progress from publicly visible work.18231824You will continue to do your day-to-day work in your personal1825repository, but periodically "push" changes from your personal1826repository into your public repository, allowing other developers to1827pull from that repository. So the flow of changes, in a situation1828where there is one other developer with a public repository, looks1829like this:18301831 you push1832 your personal repo ------------------> your public repo1833 ^ |1834 | |1835 | you pull | they pull1836 | |1837 | |1838 | they push V1839 their public repo <------------------- their repo18401841We explain how to do this in the following sections.18421843[[setting-up-a-public-repository]]1844Setting up a public repository1845~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~18461847Assume your personal repository is in the directory ~/proj. We1848first create a new clone of the repository and tell git-daemon that it1849is meant to be public:18501851-------------------------------------------------1852$ git clone --bare ~/proj proj.git1853$ touch proj.git/git-daemon-export-ok1854-------------------------------------------------18551856The resulting directory proj.git contains a "bare" git repository--it is1857just the contents of the ".git" directory, without any files checked out1858around it.18591860Next, copy proj.git to the server where you plan to host the1861public repository. You can use scp, rsync, or whatever is most1862convenient.18631864[[exporting-via-git]]1865Exporting a git repository via the git protocol1866~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~18671868This is the preferred method.18691870If someone else administers the server, they should tell you what1871directory to put the repository in, and what git:// url it will appear1872at. You can then skip to the section1873"<<pushing-changes-to-a-public-repository,Pushing changes to a public1874repository>>", below.18751876Otherwise, all you need to do is start gitlink:git-daemon[1]; it will1877listen on port 9418. By default, it will allow access to any directory1878that looks like a git directory and contains the magic file1879git-daemon-export-ok. Passing some directory paths as git-daemon1880arguments will further restrict the exports to those paths.18811882You can also run git-daemon as an inetd service; see the1883gitlink:git-daemon[1] man page for details. (See especially the1884examples section.)18851886[[exporting-via-http]]1887Exporting a git repository via http1888~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~18891890The git protocol gives better performance and reliability, but on a1891host with a web server set up, http exports may be simpler to set up.18921893All you need to do is place the newly created bare git repository in1894a directory that is exported by the web server, and make some1895adjustments to give web clients some extra information they need:18961897-------------------------------------------------1898$ mv proj.git /home/you/public_html/proj.git1899$ cd proj.git1900$ git --bare update-server-info1901$ chmod a+x hooks/post-update1902-------------------------------------------------19031904(For an explanation of the last two lines, see1905gitlink:git-update-server-info[1], and the documentation1906link:hooks.html[Hooks used by git].)19071908Advertise the url of proj.git. Anybody else should then be able to1909clone or pull from that url, for example with a commandline like:19101911-------------------------------------------------1912$ git clone http://yourserver.com/~you/proj.git1913-------------------------------------------------19141915(See also1916link:howto/setup-git-server-over-http.txt[setup-git-server-over-http]1917for a slightly more sophisticated setup using WebDAV which also1918allows pushing over http.)19191920[[pushing-changes-to-a-public-repository]]1921Pushing changes to a public repository1922~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~19231924Note that the two techniques outlined above (exporting via1925<<exporting-via-http,http>> or <<exporting-via-git,git>>) allow other1926maintainers to fetch your latest changes, but they do not allow write1927access, which you will need to update the public repository with the1928latest changes created in your private repository.19291930The simplest way to do this is using gitlink:git-push[1] and ssh; to1931update the remote branch named "master" with the latest state of your1932branch named "master", run19331934-------------------------------------------------1935$ git push ssh://yourserver.com/~you/proj.git master:master1936-------------------------------------------------19371938or just19391940-------------------------------------------------1941$ git push ssh://yourserver.com/~you/proj.git master1942-------------------------------------------------19431944As with git-fetch, git-push will complain if this does not result in1945a <<fast-forwards,fast forward>>. Normally this is a sign of1946something wrong. However, if you are sure you know what you're1947doing, you may force git-push to perform the update anyway by1948proceeding the branch name by a plus sign:19491950-------------------------------------------------1951$ git push ssh://yourserver.com/~you/proj.git +master1952-------------------------------------------------19531954Note that the target of a "push" is normally a1955<<def_bare_repository,bare>> repository. You can also push to a1956repository that has a checked-out working tree, but the working tree1957will not be updated by the push. This may lead to unexpected results if1958the branch you push to is the currently checked-out branch!19591960As with git-fetch, you may also set up configuration options to1961save typing; so, for example, after19621963-------------------------------------------------1964$ cat >>.git/config <<EOF1965[remote "public-repo"]1966 url = ssh://yourserver.com/~you/proj.git1967EOF1968-------------------------------------------------19691970you should be able to perform the above push with just19711972-------------------------------------------------1973$ git push public-repo master1974-------------------------------------------------19751976See the explanations of the remote.<name>.url, branch.<name>.remote,1977and remote.<name>.push options in gitlink:git-config[1] for1978details.19791980[[setting-up-a-shared-repository]]1981Setting up a shared repository1982~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~19831984Another way to collaborate is by using a model similar to that1985commonly used in CVS, where several developers with special rights1986all push to and pull from a single shared repository. See1987link:cvs-migration.html[git for CVS users] for instructions on how to1988set this up.19891990However, while there is nothing wrong with git's support for shared1991repositories, this mode of operation is not generally recommended,1992simply because the mode of collaboration that git supports--by1993exchanging patches and pulling from public repositories--has so many1994advantages over the central shared repository:19951996 - Git's ability to quickly import and merge patches allows a1997 single maintainer to process incoming changes even at very1998 high rates. And when that becomes too much, git-pull provides1999 an easy way for that maintainer to delegate this job to other2000 maintainers while still allowing optional review of incoming2001 changes.2002 - Since every developer's repository has the same complete copy2003 of the project history, no repository is special, and it is2004 trivial for another developer to take over maintenance of a2005 project, either by mutual agreement, or because a maintainer2006 becomes unresponsive or difficult to work with.2007 - The lack of a central group of "committers" means there is2008 less need for formal decisions about who is "in" and who is2009 "out".20102011[[setting-up-gitweb]]2012Allowing web browsing of a repository2013~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~20142015The gitweb cgi script provides users an easy way to browse your2016project's files and history without having to install git; see the file2017gitweb/INSTALL in the git source tree for instructions on setting it up.20182019[[sharing-development-examples]]2020Examples2021--------20222023[[maintaining-topic-branches]]2024Maintaining topic branches for a Linux subsystem maintainer2025~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~20262027This describes how Tony Luck uses git in his role as maintainer of the2028IA64 architecture for the Linux kernel.20292030He uses two public branches:20312032 - A "test" tree into which patches are initially placed so that they2033 can get some exposure when integrated with other ongoing development.2034 This tree is available to Andrew for pulling into -mm whenever he2035 wants.20362037 - A "release" tree into which tested patches are moved for final sanity2038 checking, and as a vehicle to send them upstream to Linus (by sending2039 him a "please pull" request.)20402041He also uses a set of temporary branches ("topic branches"), each2042containing a logical grouping of patches.20432044To set this up, first create your work tree by cloning Linus's public2045tree:20462047-------------------------------------------------2048$ git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git work2049$ cd work2050-------------------------------------------------20512052Linus's tree will be stored in the remote branch named origin/master,2053and can be updated using gitlink:git-fetch[1]; you can track other2054public trees using gitlink:git-remote[1] to set up a "remote" and2055git-fetch[1] to keep them up-to-date; see <<repositories-and-branches>>.20562057Now create the branches in which you are going to work; these start out2058at the current tip of origin/master branch, and should be set up (using2059the --track option to gitlink:git-branch[1]) to merge changes in from2060Linus by default.20612062-------------------------------------------------2063$ git branch --track test origin/master2064$ git branch --track release origin/master2065-------------------------------------------------20662067These can be easily kept up to date using gitlink:git-pull[1]20682069-------------------------------------------------2070$ git checkout test && git pull2071$ git checkout release && git pull2072-------------------------------------------------20732074Important note! If you have any local changes in these branches, then2075this merge will create a commit object in the history (with no local2076changes git will simply do a "Fast forward" merge). Many people dislike2077the "noise" that this creates in the Linux history, so you should avoid2078doing this capriciously in the "release" branch, as these noisy commits2079will become part of the permanent history when you ask Linus to pull2080from the release branch.20812082A few configuration variables (see gitlink:git-config[1]) can2083make it easy to push both branches to your public tree. (See2084<<setting-up-a-public-repository>>.)20852086-------------------------------------------------2087$ cat >> .git/config <<EOF2088[remote "mytree"]2089 url = master.kernel.org:/pub/scm/linux/kernel/git/aegl/linux-2.6.git2090 push = release2091 push = test2092EOF2093-------------------------------------------------20942095Then you can push both the test and release trees using2096gitlink:git-push[1]:20972098-------------------------------------------------2099$ git push mytree2100-------------------------------------------------21012102or push just one of the test and release branches using:21032104-------------------------------------------------2105$ git push mytree test2106-------------------------------------------------21072108or21092110-------------------------------------------------2111$ git push mytree release2112-------------------------------------------------21132114Now to apply some patches from the community. Think of a short2115snappy name for a branch to hold this patch (or related group of2116patches), and create a new branch from the current tip of Linus's2117branch:21182119-------------------------------------------------2120$ git checkout -b speed-up-spinlocks origin2121-------------------------------------------------21222123Now you apply the patch(es), run some tests, and commit the change(s). If2124the patch is a multi-part series, then you should apply each as a separate2125commit to this branch.21262127-------------------------------------------------2128$ ... patch ... test ... commit [ ... patch ... test ... commit ]*2129-------------------------------------------------21302131When you are happy with the state of this change, you can pull it into the2132"test" branch in preparation to make it public:21332134-------------------------------------------------2135$ git checkout test && git pull . speed-up-spinlocks2136-------------------------------------------------21372138It is unlikely that you would have any conflicts here ... but you might if you2139spent a while on this step and had also pulled new versions from upstream.21402141Some time later when enough time has passed and testing done, you can pull the2142same branch into the "release" tree ready to go upstream. This is where you2143see the value of keeping each patch (or patch series) in its own branch. It2144means that the patches can be moved into the "release" tree in any order.21452146-------------------------------------------------2147$ git checkout release && git pull . speed-up-spinlocks2148-------------------------------------------------21492150After a while, you will have a number of branches, and despite the2151well chosen names you picked for each of them, you may forget what2152they are for, or what status they are in. To get a reminder of what2153changes are in a specific branch, use:21542155-------------------------------------------------2156$ git log linux..branchname | git-shortlog2157-------------------------------------------------21582159To see whether it has already been merged into the test or release branches2160use:21612162-------------------------------------------------2163$ git log test..branchname2164-------------------------------------------------21652166or21672168-------------------------------------------------2169$ git log release..branchname2170-------------------------------------------------21712172(If this branch has not yet been merged you will see some log entries.2173If it has been merged, then there will be no output.)21742175Once a patch completes the great cycle (moving from test to release,2176then pulled by Linus, and finally coming back into your local2177"origin/master" branch) the branch for this change is no longer needed.2178You detect this when the output from:21792180-------------------------------------------------2181$ git log origin..branchname2182-------------------------------------------------21832184is empty. At this point the branch can be deleted:21852186-------------------------------------------------2187$ git branch -d branchname2188-------------------------------------------------21892190Some changes are so trivial that it is not necessary to create a separate2191branch and then merge into each of the test and release branches. For2192these changes, just apply directly to the "release" branch, and then2193merge that into the "test" branch.21942195To create diffstat and shortlog summaries of changes to include in a "please2196pull" request to Linus you can use:21972198-------------------------------------------------2199$ git diff --stat origin..release2200-------------------------------------------------22012202and22032204-------------------------------------------------2205$ git log -p origin..release | git shortlog2206-------------------------------------------------22072208Here are some of the scripts that simplify all this even further.22092210-------------------------------------------------2211==== update script ====2212# Update a branch in my GIT tree. If the branch to be updated2213# is origin, then pull from kernel.org. Otherwise merge2214# origin/master branch into test|release branch22152216case "$1" in2217test|release)2218 git checkout $1 && git pull . origin2219 ;;2220origin)2221 before=$(cat .git/refs/remotes/origin/master)2222 git fetch origin2223 after=$(cat .git/refs/remotes/origin/master)2224 if [ $before != $after ]2225 then2226 git log $before..$after | git shortlog2227 fi2228 ;;2229*)2230 echo "Usage: $0 origin|test|release" 1>&22231 exit 12232 ;;2233esac2234-------------------------------------------------22352236-------------------------------------------------2237==== merge script ====2238# Merge a branch into either the test or release branch22392240pname=$022412242usage()2243{2244 echo "Usage: $pname branch test|release" 1>&22245 exit 12246}22472248if [ ! -f .git/refs/heads/"$1" ]2249then2250 echo "Can't see branch <$1>" 1>&22251 usage2252fi22532254case "$2" in2255test|release)2256 if [ $(git log $2..$1 | wc -c) -eq 0 ]2257 then2258 echo $1 already merged into $2 1>&22259 exit 12260 fi2261 git checkout $2 && git pull . $12262 ;;2263*)2264 usage2265 ;;2266esac2267-------------------------------------------------22682269-------------------------------------------------2270==== status script ====2271# report on status of my ia64 GIT tree22722273gb=$(tput setab 2)2274rb=$(tput setab 1)2275restore=$(tput setab 9)22762277if [ `git rev-list test..release | wc -c` -gt 0 ]2278then2279 echo $rb Warning: commits in release that are not in test $restore2280 git log test..release2281fi22822283for branch in `ls .git/refs/heads`2284do2285 if [ $branch = test -o $branch = release ]2286 then2287 continue2288 fi22892290 echo -n $gb ======= $branch ====== $restore " "2291 status=2292 for ref in test release origin/master2293 do2294 if [ `git rev-list $ref..$branch | wc -c` -gt 0 ]2295 then2296 status=$status${ref:0:1}2297 fi2298 done2299 case $status in2300 trl)2301 echo $rb Need to pull into test $restore2302 ;;2303 rl)2304 echo "In test"2305 ;;2306 l)2307 echo "Waiting for linus"2308 ;;2309 "")2310 echo $rb All done $restore2311 ;;2312 *)2313 echo $rb "<$status>" $restore2314 ;;2315 esac2316 git log origin/master..$branch | git shortlog2317done2318-------------------------------------------------231923202321[[cleaning-up-history]]2322Rewriting history and maintaining patch series2323==============================================23242325Normally commits are only added to a project, never taken away or2326replaced. Git is designed with this assumption, and violating it will2327cause git's merge machinery (for example) to do the wrong thing.23282329However, there is a situation in which it can be useful to violate this2330assumption.23312332[[patch-series]]2333Creating the perfect patch series2334---------------------------------23352336Suppose you are a contributor to a large project, and you want to add a2337complicated feature, and to present it to the other developers in a way2338that makes it easy for them to read your changes, verify that they are2339correct, and understand why you made each change.23402341If you present all of your changes as a single patch (or commit), they2342may find that it is too much to digest all at once.23432344If you present them with the entire history of your work, complete with2345mistakes, corrections, and dead ends, they may be overwhelmed.23462347So the ideal is usually to produce a series of patches such that:23482349 1. Each patch can be applied in order.23502351 2. Each patch includes a single logical change, together with a2352 message explaining the change.23532354 3. No patch introduces a regression: after applying any initial2355 part of the series, the resulting project still compiles and2356 works, and has no bugs that it didn't have before.23572358 4. The complete series produces the same end result as your own2359 (probably much messier!) development process did.23602361We will introduce some tools that can help you do this, explain how to2362use them, and then explain some of the problems that can arise because2363you are rewriting history.23642365[[using-git-rebase]]2366Keeping a patch series up to date using git-rebase2367--------------------------------------------------23682369Suppose that you create a branch "mywork" on a remote-tracking branch2370"origin", and create some commits on top of it:23712372-------------------------------------------------2373$ git checkout -b mywork origin2374$ vi file.txt2375$ git commit2376$ vi otherfile.txt2377$ git commit2378...2379-------------------------------------------------23802381You have performed no merges into mywork, so it is just a simple linear2382sequence of patches on top of "origin":23832384................................................2385 o--o--o <-- origin2386 \2387 o--o--o <-- mywork2388................................................23892390Some more interesting work has been done in the upstream project, and2391"origin" has advanced:23922393................................................2394 o--o--O--o--o--o <-- origin2395 \2396 a--b--c <-- mywork2397................................................23982399At this point, you could use "pull" to merge your changes back in;2400the result would create a new merge commit, like this:24012402................................................2403 o--o--O--o--o--o <-- origin2404 \ \2405 a--b--c--m <-- mywork2406................................................24072408However, if you prefer to keep the history in mywork a simple series of2409commits without any merges, you may instead choose to use2410gitlink:git-rebase[1]:24112412-------------------------------------------------2413$ git checkout mywork2414$ git rebase origin2415-------------------------------------------------24162417This will remove each of your commits from mywork, temporarily saving2418them as patches (in a directory named ".dotest"), update mywork to2419point at the latest version of origin, then apply each of the saved2420patches to the new mywork. The result will look like:242124222423................................................2424 o--o--O--o--o--o <-- origin2425 \2426 a'--b'--c' <-- mywork2427................................................24282429In the process, it may discover conflicts. In that case it will stop2430and allow you to fix the conflicts; after fixing conflicts, use "git2431add" to update the index with those contents, and then, instead of2432running git-commit, just run24332434-------------------------------------------------2435$ git rebase --continue2436-------------------------------------------------24372438and git will continue applying the rest of the patches.24392440At any point you may use the --abort option to abort this process and2441return mywork to the state it had before you started the rebase:24422443-------------------------------------------------2444$ git rebase --abort2445-------------------------------------------------24462447[[modifying-one-commit]]2448Modifying a single commit2449-------------------------24502451We saw in <<fixing-a-mistake-by-editing-history>> that you can replace the2452most recent commit using24532454-------------------------------------------------2455$ git commit --amend2456-------------------------------------------------24572458which will replace the old commit by a new commit incorporating your2459changes, giving you a chance to edit the old commit message first.24602461You can also use a combination of this and gitlink:git-rebase[1] to edit2462commits further back in your history. First, tag the problematic commit with24632464-------------------------------------------------2465$ git tag bad mywork~52466-------------------------------------------------24672468(Either gitk or git-log may be useful for finding the commit.)24692470Then check out that commit, edit it, and rebase the rest of the series2471on top of it (note that we could check out the commit on a temporary2472branch, but instead we're using a <<detached-head,detached head>>):24732474-------------------------------------------------2475$ git checkout bad2476$ # make changes here and update the index2477$ git commit --amend2478$ git rebase --onto HEAD bad mywork2479-------------------------------------------------24802481When you're done, you'll be left with mywork checked out, with the top2482patches on mywork reapplied on top of your modified commit. You can2483then clean up with24842485-------------------------------------------------2486$ git tag -d bad2487-------------------------------------------------24882489Note that the immutable nature of git history means that you haven't really2490"modified" existing commits; instead, you have replaced the old commits with2491new commits having new object names.24922493[[reordering-patch-series]]2494Reordering or selecting from a patch series2495-------------------------------------------24962497Given one existing commit, the gitlink:git-cherry-pick[1] command2498allows you to apply the change introduced by that commit and create a2499new commit that records it. So, for example, if "mywork" points to a2500series of patches on top of "origin", you might do something like:25012502-------------------------------------------------2503$ git checkout -b mywork-new origin2504$ gitk origin..mywork &2505-------------------------------------------------25062507And browse through the list of patches in the mywork branch using gitk,2508applying them (possibly in a different order) to mywork-new using2509cherry-pick, and possibly modifying them as you go using commit2510--amend.25112512Another technique is to use git-format-patch to create a series of2513patches, then reset the state to before the patches:25142515-------------------------------------------------2516$ git format-patch origin2517$ git reset --hard origin2518-------------------------------------------------25192520Then modify, reorder, or eliminate patches as preferred before applying2521them again with gitlink:git-am[1].25222523[[patch-series-tools]]2524Other tools2525-----------25262527There are numerous other tools, such as stgit, which exist for the2528purpose of maintaining a patch series. These are outside of the scope of2529this manual.25302531[[problems-with-rewriting-history]]2532Problems with rewriting history2533-------------------------------25342535The primary problem with rewriting the history of a branch has to do2536with merging. Suppose somebody fetches your branch and merges it into2537their branch, with a result something like this:25382539................................................2540 o--o--O--o--o--o <-- origin2541 \ \2542 t--t--t--m <-- their branch:2543................................................25442545Then suppose you modify the last three commits:25462547................................................2548 o--o--o <-- new head of origin2549 /2550 o--o--O--o--o--o <-- old head of origin2551................................................25522553If we examined all this history together in one repository, it will2554look like:25552556................................................2557 o--o--o <-- new head of origin2558 /2559 o--o--O--o--o--o <-- old head of origin2560 \ \2561 t--t--t--m <-- their branch:2562................................................25632564Git has no way of knowing that the new head is an updated version of2565the old head; it treats this situation exactly the same as it would if2566two developers had independently done the work on the old and new heads2567in parallel. At this point, if someone attempts to merge the new head2568in to their branch, git will attempt to merge together the two (old and2569new) lines of development, instead of trying to replace the old by the2570new. The results are likely to be unexpected.25712572You may still choose to publish branches whose history is rewritten,2573and it may be useful for others to be able to fetch those branches in2574order to examine or test them, but they should not attempt to pull such2575branches into their own work.25762577For true distributed development that supports proper merging,2578published branches should never be rewritten.25792580[[advanced-branch-management]]2581Advanced branch management2582==========================25832584[[fetching-individual-branches]]2585Fetching individual branches2586----------------------------25872588Instead of using gitlink:git-remote[1], you can also choose just2589to update one branch at a time, and to store it locally under an2590arbitrary name:25912592-------------------------------------------------2593$ git fetch origin todo:my-todo-work2594-------------------------------------------------25952596The first argument, "origin", just tells git to fetch from the2597repository you originally cloned from. The second argument tells git2598to fetch the branch named "todo" from the remote repository, and to2599store it locally under the name refs/heads/my-todo-work.26002601You can also fetch branches from other repositories; so26022603-------------------------------------------------2604$ git fetch git://example.com/proj.git master:example-master2605-------------------------------------------------26062607will create a new branch named "example-master" and store in it the2608branch named "master" from the repository at the given URL. If you2609already have a branch named example-master, it will attempt to2610<<fast-forwards,fast-forward>> to the commit given by example.com's2611master branch. In more detail:26122613[[fetch-fast-forwards]]2614git fetch and fast-forwards2615---------------------------26162617In the previous example, when updating an existing branch, "git2618fetch" checks to make sure that the most recent commit on the remote2619branch is a descendant of the most recent commit on your copy of the2620branch before updating your copy of the branch to point at the new2621commit. Git calls this process a <<fast-forwards,fast forward>>.26222623A fast forward looks something like this:26242625................................................2626 o--o--o--o <-- old head of the branch2627 \2628 o--o--o <-- new head of the branch2629................................................263026312632In some cases it is possible that the new head will *not* actually be2633a descendant of the old head. For example, the developer may have2634realized she made a serious mistake, and decided to backtrack,2635resulting in a situation like:26362637................................................2638 o--o--o--o--a--b <-- old head of the branch2639 \2640 o--o--o <-- new head of the branch2641................................................26422643In this case, "git fetch" will fail, and print out a warning.26442645In that case, you can still force git to update to the new head, as2646described in the following section. However, note that in the2647situation above this may mean losing the commits labeled "a" and "b",2648unless you've already created a reference of your own pointing to2649them.26502651[[forcing-fetch]]2652Forcing git fetch to do non-fast-forward updates2653------------------------------------------------26542655If git fetch fails because the new head of a branch is not a2656descendant of the old head, you may force the update with:26572658-------------------------------------------------2659$ git fetch git://example.com/proj.git +master:refs/remotes/example/master2660-------------------------------------------------26612662Note the addition of the "+" sign. Alternatively, you can use the "-f"2663flag to force updates of all the fetched branches, as in:26642665-------------------------------------------------2666$ git fetch -f origin2667-------------------------------------------------26682669Be aware that commits that the old version of example/master pointed at2670may be lost, as we saw in the previous section.26712672[[remote-branch-configuration]]2673Configuring remote branches2674---------------------------26752676We saw above that "origin" is just a shortcut to refer to the2677repository that you originally cloned from. This information is2678stored in git configuration variables, which you can see using2679gitlink:git-config[1]:26802681-------------------------------------------------2682$ git config -l2683core.repositoryformatversion=02684core.filemode=true2685core.logallrefupdates=true2686remote.origin.url=git://git.kernel.org/pub/scm/git/git.git2687remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*2688branch.master.remote=origin2689branch.master.merge=refs/heads/master2690-------------------------------------------------26912692If there are other repositories that you also use frequently, you can2693create similar configuration options to save typing; for example,2694after26952696-------------------------------------------------2697$ git config remote.example.url git://example.com/proj.git2698-------------------------------------------------26992700then the following two commands will do the same thing:27012702-------------------------------------------------2703$ git fetch git://example.com/proj.git master:refs/remotes/example/master2704$ git fetch example master:refs/remotes/example/master2705-------------------------------------------------27062707Even better, if you add one more option:27082709-------------------------------------------------2710$ git config remote.example.fetch master:refs/remotes/example/master2711-------------------------------------------------27122713then the following commands will all do the same thing:27142715-------------------------------------------------2716$ git fetch git://example.com/proj.git master:refs/remotes/example/master2717$ git fetch example master:refs/remotes/example/master2718$ git fetch example2719-------------------------------------------------27202721You can also add a "+" to force the update each time:27222723-------------------------------------------------2724$ git config remote.example.fetch +master:ref/remotes/example/master2725-------------------------------------------------27262727Don't do this unless you're sure you won't mind "git fetch" possibly2728throwing away commits on mybranch.27292730Also note that all of the above configuration can be performed by2731directly editing the file .git/config instead of using2732gitlink:git-config[1].27332734See gitlink:git-config[1] for more details on the configuration2735options mentioned above.273627372738[[git-internals]]2739Git internals2740=============27412742Git depends on two fundamental abstractions: the "object database", and2743the "current directory cache" aka "index".27442745[[the-object-database]]2746The Object Database2747-------------------27482749The object database is literally just a content-addressable collection2750of objects. All objects are named by their content, which is2751approximated by the SHA1 hash of the object itself. Objects may refer2752to other objects (by referencing their SHA1 hash), and so you can2753build up a hierarchy of objects.27542755All objects have a statically determined "type" which is2756determined at object creation time, and which identifies the format of2757the object (i.e. how it is used, and how it can refer to other2758objects). There are currently four different object types: "blob",2759"tree", "commit", and "tag".27602761A <<def_blob_object,"blob" object>> cannot refer to any other object,2762and is, as the name implies, a pure storage object containing some2763user data. It is used to actually store the file data, i.e. a blob2764object is associated with some particular version of some file.27652766A <<def_tree_object,"tree" object>> is an object that ties one or more2767"blob" objects into a directory structure. In addition, a tree object2768can refer to other tree objects, thus creating a directory hierarchy.27692770A <<def_commit_object,"commit" object>> ties such directory hierarchies2771together into a <<def_DAG,directed acyclic graph>> of revisions - each2772"commit" is associated with exactly one tree (the directory hierarchy at2773the time of the commit). In addition, a "commit" refers to one or more2774"parent" commit objects that describe the history of how we arrived at2775that directory hierarchy.27762777As a special case, a commit object with no parents is called the "root"2778commit, and is the point of an initial project commit. Each project2779must have at least one root, and while you can tie several different2780root objects together into one project by creating a commit object which2781has two or more separate roots as its ultimate parents, that's probably2782just going to confuse people. So aim for the notion of "one root object2783per project", even if git itself does not enforce that.27842785A <<def_tag_object,"tag" object>> symbolically identifies and can be2786used to sign other objects. It contains the identifier and type of2787another object, a symbolic name (of course!) and, optionally, a2788signature.27892790Regardless of object type, all objects share the following2791characteristics: they are all deflated with zlib, and have a header2792that not only specifies their type, but also provides size information2793about the data in the object. It's worth noting that the SHA1 hash2794that is used to name the object is the hash of the original data2795plus this header, so `sha1sum` 'file' does not match the object name2796for 'file'.2797(Historical note: in the dawn of the age of git the hash2798was the sha1 of the 'compressed' object.)27992800As a result, the general consistency of an object can always be tested2801independently of the contents or the type of the object: all objects can2802be validated by verifying that (a) their hashes match the content of the2803file and (b) the object successfully inflates to a stream of bytes that2804forms a sequence of <ascii type without space> {plus} <space> {plus} <ascii decimal2805size> {plus} <byte\0> {plus} <binary object data>.28062807The structured objects can further have their structure and2808connectivity to other objects verified. This is generally done with2809the `git-fsck` program, which generates a full dependency graph2810of all objects, and verifies their internal consistency (in addition2811to just verifying their superficial consistency through the hash).28122813The object types in some more detail:28142815[[blob-object]]2816Blob Object2817-----------28182819A "blob" object is nothing but a binary blob of data, and doesn't2820refer to anything else. There is no signature or any other2821verification of the data, so while the object is consistent (it 'is'2822indexed by its sha1 hash, so the data itself is certainly correct), it2823has absolutely no other attributes. No name associations, no2824permissions. It is purely a blob of data (i.e. normally "file2825contents").28262827In particular, since the blob is entirely defined by its data, if two2828files in a directory tree (or in multiple different versions of the2829repository) have the same contents, they will share the same blob2830object. The object is totally independent of its location in the2831directory tree, and renaming a file does not change the object that2832file is associated with in any way.28332834A blob is typically created when gitlink:git-update-index[1]2835is run, and its data can be accessed by gitlink:git-cat-file[1].28362837[[tree-object]]2838Tree Object2839-----------28402841The next hierarchical object type is the "tree" object. A tree object2842is a list of mode/name/blob data, sorted by name. Alternatively, the2843mode data may specify a directory mode, in which case instead of2844naming a blob, that name is associated with another TREE object.28452846Like the "blob" object, a tree object is uniquely determined by the2847set contents, and so two separate but identical trees will always2848share the exact same object. This is true at all levels, i.e. it's2849true for a "leaf" tree (which does not refer to any other trees, only2850blobs) as well as for a whole subdirectory.28512852For that reason a "tree" object is just a pure data abstraction: it2853has no history, no signatures, no verification of validity, except2854that since the contents are again protected by the hash itself, we can2855trust that the tree is immutable and its contents never change.28562857So you can trust the contents of a tree to be valid, the same way you2858can trust the contents of a blob, but you don't know where those2859contents 'came' from.28602861Side note on trees: since a "tree" object is a sorted list of2862"filename+content", you can create a diff between two trees without2863actually having to unpack two trees. Just ignore all common parts,2864and your diff will look right. In other words, you can effectively2865(and efficiently) tell the difference between any two random trees by2866O(n) where "n" is the size of the difference, rather than the size of2867the tree.28682869Side note 2 on trees: since the name of a "blob" depends entirely and2870exclusively on its contents (i.e. there are no names or permissions2871involved), you can see trivial renames or permission changes by2872noticing that the blob stayed the same. However, renames with data2873changes need a smarter "diff" implementation.28742875A tree is created with gitlink:git-write-tree[1] and2876its data can be accessed by gitlink:git-ls-tree[1].2877Two trees can be compared with gitlink:git-diff-tree[1].28782879[[commit-object]]2880Commit Object2881-------------28822883The "commit" object is an object that introduces the notion of2884history into the picture. In contrast to the other objects, it2885doesn't just describe the physical state of a tree, it describes how2886we got there, and why.28872888A "commit" is defined by the tree-object that it results in, the2889parent commits (zero, one or more) that led up to that point, and a2890comment on what happened. Again, a commit is not trusted per se:2891the contents are well-defined and "safe" due to the cryptographically2892strong signatures at all levels, but there is no reason to believe2893that the tree is "good" or that the merge information makes sense.2894The parents do not have to actually have any relationship with the2895result, for example.28962897Note on commits: unlike some SCM's, commits do not contain2898rename information or file mode change information. All of that is2899implicit in the trees involved (the result tree, and the result trees2900of the parents), and describing that makes no sense in this idiotic2901file manager.29022903A commit is created with gitlink:git-commit-tree[1] and2904its data can be accessed by gitlink:git-cat-file[1].29052906[[trust]]2907Trust2908-----29092910An aside on the notion of "trust". Trust is really outside the scope2911of "git", but it's worth noting a few things. First off, since2912everything is hashed with SHA1, you 'can' trust that an object is2913intact and has not been messed with by external sources. So the name2914of an object uniquely identifies a known state - just not a state that2915you may want to trust.29162917Furthermore, since the SHA1 signature of a commit refers to the2918SHA1 signatures of the tree it is associated with and the signatures2919of the parent, a single named commit specifies uniquely a whole set2920of history, with full contents. You can't later fake any step of the2921way once you have the name of a commit.29222923So to introduce some real trust in the system, the only thing you need2924to do is to digitally sign just 'one' special note, which includes the2925name of a top-level commit. Your digital signature shows others2926that you trust that commit, and the immutability of the history of2927commits tells others that they can trust the whole history.29282929In other words, you can easily validate a whole archive by just2930sending out a single email that tells the people the name (SHA1 hash)2931of the top commit, and digitally sign that email using something2932like GPG/PGP.29332934To assist in this, git also provides the tag object...29352936[[tag-object]]2937Tag Object2938----------29392940Git provides the "tag" object to simplify creating, managing and2941exchanging symbolic and signed tokens. The "tag" object at its2942simplest simply symbolically identifies another object by containing2943the sha1, type and symbolic name.29442945However it can optionally contain additional signature information2946(which git doesn't care about as long as there's less than 8k of2947it). This can then be verified externally to git.29482949Note that despite the tag features, "git" itself only handles content2950integrity; the trust framework (and signature provision and2951verification) has to come from outside.29522953A tag is created with gitlink:git-mktag[1],2954its data can be accessed by gitlink:git-cat-file[1],2955and the signature can be verified by2956gitlink:git-verify-tag[1].295729582959[[the-index]]2960The "index" aka "Current Directory Cache"2961-----------------------------------------29622963The index is a simple binary file, which contains an efficient2964representation of the contents of a virtual directory. It2965does so by a simple array that associates a set of names, dates,2966permissions and content (aka "blob") objects together. The cache is2967always kept ordered by name, and names are unique (with a few very2968specific rules) at any point in time, but the cache has no long-term2969meaning, and can be partially updated at any time.29702971In particular, the index certainly does not need to be consistent with2972the current directory contents (in fact, most operations will depend on2973different ways to make the index 'not' be consistent with the directory2974hierarchy), but it has three very important attributes:29752976'(a) it can re-generate the full state it caches (not just the2977directory structure: it contains pointers to the "blob" objects so2978that it can regenerate the data too)'29792980As a special case, there is a clear and unambiguous one-way mapping2981from a current directory cache to a "tree object", which can be2982efficiently created from just the current directory cache without2983actually looking at any other data. So a directory cache at any one2984time uniquely specifies one and only one "tree" object (but has2985additional data to make it easy to match up that tree object with what2986has happened in the directory)29872988'(b) it has efficient methods for finding inconsistencies between that2989cached state ("tree object waiting to be instantiated") and the2990current state.'29912992'(c) it can additionally efficiently represent information about merge2993conflicts between different tree objects, allowing each pathname to be2994associated with sufficient information about the trees involved that2995you can create a three-way merge between them.'29962997Those are the ONLY three things that the directory cache does. It's a2998cache, and the normal operation is to re-generate it completely from a2999known tree object, or update/compare it with a live tree that is being3000developed. If you blow the directory cache away entirely, you generally3001haven't lost any information as long as you have the name of the tree3002that it described.30033004At the same time, the index is also the staging area for creating3005new trees, and creating a new tree always involves a controlled3006modification of the index file. In particular, the index file can3007have the representation of an intermediate tree that has not yet been3008instantiated. So the index can be thought of as a write-back cache,3009which can contain dirty information that has not yet been written back3010to the backing store.3011301230133014[[the-workflow]]3015The Workflow3016------------30173018Generally, all "git" operations work on the index file. Some operations3019work *purely* on the index file (showing the current state of the3020index), but most operations move data to and from the index file. Either3021from the database or from the working directory. Thus there are four3022main combinations:30233024[[working-directory-to-index]]3025working directory -> index3026~~~~~~~~~~~~~~~~~~~~~~~~~~30273028You update the index with information from the working directory with3029the gitlink:git-update-index[1] command. You3030generally update the index information by just specifying the filename3031you want to update, like so:30323033-------------------------------------------------3034$ git-update-index filename3035-------------------------------------------------30363037but to avoid common mistakes with filename globbing etc, the command3038will not normally add totally new entries or remove old entries,3039i.e. it will normally just update existing cache entries.30403041To tell git that yes, you really do realize that certain files no3042longer exist, or that new files should be added, you3043should use the `--remove` and `--add` flags respectively.30443045NOTE! A `--remove` flag does 'not' mean that subsequent filenames will3046necessarily be removed: if the files still exist in your directory3047structure, the index will be updated with their new status, not3048removed. The only thing `--remove` means is that update-cache will be3049considering a removed file to be a valid thing, and if the file really3050does not exist any more, it will update the index accordingly.30513052As a special case, you can also do `git-update-index --refresh`, which3053will refresh the "stat" information of each index to match the current3054stat information. It will 'not' update the object status itself, and3055it will only update the fields that are used to quickly test whether3056an object still matches its old backing store object.30573058[[index-to-object-database]]3059index -> object database3060~~~~~~~~~~~~~~~~~~~~~~~~30613062You write your current index file to a "tree" object with the program30633064-------------------------------------------------3065$ git-write-tree3066-------------------------------------------------30673068that doesn't come with any options - it will just write out the3069current index into the set of tree objects that describe that state,3070and it will return the name of the resulting top-level tree. You can3071use that tree to re-generate the index at any time by going in the3072other direction:30733074[[object-database-to-index]]3075object database -> index3076~~~~~~~~~~~~~~~~~~~~~~~~30773078You read a "tree" file from the object database, and use that to3079populate (and overwrite - don't do this if your index contains any3080unsaved state that you might want to restore later!) your current3081index. Normal operation is just30823083-------------------------------------------------3084$ git-read-tree <sha1 of tree>3085-------------------------------------------------30863087and your index file will now be equivalent to the tree that you saved3088earlier. However, that is only your 'index' file: your working3089directory contents have not been modified.30903091[[index-to-working-directory]]3092index -> working directory3093~~~~~~~~~~~~~~~~~~~~~~~~~~30943095You update your working directory from the index by "checking out"3096files. This is not a very common operation, since normally you'd just3097keep your files updated, and rather than write to your working3098directory, you'd tell the index files about the changes in your3099working directory (i.e. `git-update-index`).31003101However, if you decide to jump to a new version, or check out somebody3102else's version, or just restore a previous tree, you'd populate your3103index file with read-tree, and then you need to check out the result3104with31053106-------------------------------------------------3107$ git-checkout-index filename3108-------------------------------------------------31093110or, if you want to check out all of the index, use `-a`.31113112NOTE! git-checkout-index normally refuses to overwrite old files, so3113if you have an old version of the tree already checked out, you will3114need to use the "-f" flag ('before' the "-a" flag or the filename) to3115'force' the checkout.311631173118Finally, there are a few odds and ends which are not purely moving3119from one representation to the other:31203121[[tying-it-all-together]]3122Tying it all together3123~~~~~~~~~~~~~~~~~~~~~31243125To commit a tree you have instantiated with "git-write-tree", you'd3126create a "commit" object that refers to that tree and the history3127behind it - most notably the "parent" commits that preceded it in3128history.31293130Normally a "commit" has one parent: the previous state of the tree3131before a certain change was made. However, sometimes it can have two3132or more parent commits, in which case we call it a "merge", due to the3133fact that such a commit brings together ("merges") two or more3134previous states represented by other commits.31353136In other words, while a "tree" represents a particular directory state3137of a working directory, a "commit" represents that state in "time",3138and explains how we got there.31393140You create a commit object by giving it the tree that describes the3141state at the time of the commit, and a list of parents:31423143-------------------------------------------------3144$ git-commit-tree <tree> -p <parent> [-p <parent2> ..]3145-------------------------------------------------31463147and then giving the reason for the commit on stdin (either through3148redirection from a pipe or file, or by just typing it at the tty).31493150git-commit-tree will return the name of the object that represents3151that commit, and you should save it away for later use. Normally,3152you'd commit a new `HEAD` state, and while git doesn't care where you3153save the note about that state, in practice we tend to just write the3154result to the file pointed at by `.git/HEAD`, so that we can always see3155what the last committed state was.31563157Here is an ASCII art by Jon Loeliger that illustrates how3158various pieces fit together.31593160------------31613162 commit-tree3163 commit obj3164 +----+3165 | |3166 | |3167 V V3168 +-----------+3169 | Object DB |3170 | Backing |3171 | Store |3172 +-----------+3173 ^3174 write-tree | |3175 tree obj | |3176 | | read-tree3177 | | tree obj3178 V3179 +-----------+3180 | Index |3181 | "cache" |3182 +-----------+3183 update-index ^3184 blob obj | |3185 | |3186 checkout-index -u | | checkout-index3187 stat | | blob obj3188 V3189 +-----------+3190 | Working |3191 | Directory |3192 +-----------+31933194------------319531963197[[examining-the-data]]3198Examining the data3199------------------32003201You can examine the data represented in the object database and the3202index with various helper tools. For every object, you can use3203gitlink:git-cat-file[1] to examine details about the3204object:32053206-------------------------------------------------3207$ git-cat-file -t <objectname>3208-------------------------------------------------32093210shows the type of the object, and once you have the type (which is3211usually implicit in where you find the object), you can use32123213-------------------------------------------------3214$ git-cat-file blob|tree|commit|tag <objectname>3215-------------------------------------------------32163217to show its contents. NOTE! Trees have binary content, and as a result3218there is a special helper for showing that content, called3219`git-ls-tree`, which turns the binary content into a more easily3220readable form.32213222It's especially instructive to look at "commit" objects, since those3223tend to be small and fairly self-explanatory. In particular, if you3224follow the convention of having the top commit name in `.git/HEAD`,3225you can do32263227-------------------------------------------------3228$ git-cat-file commit HEAD3229-------------------------------------------------32303231to see what the top commit was.32323233[[merging-multiple-trees]]3234Merging multiple trees3235----------------------32363237Git helps you do a three-way merge, which you can expand to n-way by3238repeating the merge procedure arbitrary times until you finally3239"commit" the state. The normal situation is that you'd only do one3240three-way merge (two parents), and commit it, but if you like to, you3241can do multiple parents in one go.32423243To do a three-way merge, you need the two sets of "commit" objects3244that you want to merge, use those to find the closest common parent (a3245third "commit" object), and then use those commit objects to find the3246state of the directory ("tree" object) at these points.32473248To get the "base" for the merge, you first look up the common parent3249of two commits with32503251-------------------------------------------------3252$ git-merge-base <commit1> <commit2>3253-------------------------------------------------32543255which will return you the commit they are both based on. You should3256now look up the "tree" objects of those commits, which you can easily3257do with (for example)32583259-------------------------------------------------3260$ git-cat-file commit <commitname> | head -13261-------------------------------------------------32623263since the tree object information is always the first line in a commit3264object.32653266Once you know the three trees you are going to merge (the one "original"3267tree, aka the common tree, and the two "result" trees, aka the branches3268you want to merge), you do a "merge" read into the index. This will3269complain if it has to throw away your old index contents, so you should3270make sure that you've committed those - in fact you would normally3271always do a merge against your last commit (which should thus match what3272you have in your current index anyway).32733274To do the merge, do32753276-------------------------------------------------3277$ git-read-tree -m -u <origtree> <yourtree> <targettree>3278-------------------------------------------------32793280which will do all trivial merge operations for you directly in the3281index file, and you can just write the result out with3282`git-write-tree`.328332843285[[merging-multiple-trees-2]]3286Merging multiple trees, continued3287---------------------------------32883289Sadly, many merges aren't trivial. If there are files that have3290been added.moved or removed, or if both branches have modified the3291same file, you will be left with an index tree that contains "merge3292entries" in it. Such an index tree can 'NOT' be written out to a tree3293object, and you will have to resolve any such merge clashes using3294other tools before you can write out the result.32953296You can examine such index state with `git-ls-files --unmerged`3297command. An example:32983299------------------------------------------------3300$ git-read-tree -m $orig HEAD $target3301$ git-ls-files --unmerged3302100644 263414f423d0e4d70dae8fe53fa34614ff3e2860 1 hello.c3303100644 06fa6a24256dc7e560efa5687fa84b51f0263c3a 2 hello.c3304100644 cc44c73eb783565da5831b4d820c962954019b69 3 hello.c3305------------------------------------------------33063307Each line of the `git-ls-files --unmerged` output begins with3308the blob mode bits, blob SHA1, 'stage number', and the3309filename. The 'stage number' is git's way to say which tree it3310came from: stage 1 corresponds to `$orig` tree, stage 2 `HEAD`3311tree, and stage3 `$target` tree.33123313Earlier we said that trivial merges are done inside3314`git-read-tree -m`. For example, if the file did not change3315from `$orig` to `HEAD` nor `$target`, or if the file changed3316from `$orig` to `HEAD` and `$orig` to `$target` the same way,3317obviously the final outcome is what is in `HEAD`. What the3318above example shows is that file `hello.c` was changed from3319`$orig` to `HEAD` and `$orig` to `$target` in a different way.3320You could resolve this by running your favorite 3-way merge3321program, e.g. `diff3`, `merge`, or git's own merge-file, on3322the blob objects from these three stages yourself, like this:33233324------------------------------------------------3325$ git-cat-file blob 263414f... >hello.c~13326$ git-cat-file blob 06fa6a2... >hello.c~23327$ git-cat-file blob cc44c73... >hello.c~33328$ git merge-file hello.c~2 hello.c~1 hello.c~33329------------------------------------------------33303331This would leave the merge result in `hello.c~2` file, along3332with conflict markers if there are conflicts. After verifying3333the merge result makes sense, you can tell git what the final3334merge result for this file is by:33353336-------------------------------------------------3337$ mv -f hello.c~2 hello.c3338$ git-update-index hello.c3339-------------------------------------------------33403341When a path is in unmerged state, running `git-update-index` for3342that path tells git to mark the path resolved.33433344The above is the description of a git merge at the lowest level,3345to help you understand what conceptually happens under the hood.3346In practice, nobody, not even git itself, uses three `git-cat-file`3347for this. There is `git-merge-index` program that extracts the3348stages to temporary files and calls a "merge" script on it:33493350-------------------------------------------------3351$ git-merge-index git-merge-one-file hello.c3352-------------------------------------------------33533354and that is what higher level `git merge -s resolve` is implemented with.33553356[[pack-files]]3357How git stores objects efficiently: pack files3358----------------------------------------------33593360We've seen how git stores each object in a file named after the3361object's SHA1 hash.33623363Unfortunately this system becomes inefficient once a project has a3364lot of objects. Try this on an old project:33653366------------------------------------------------3367$ git count-objects33686930 objects, 47620 kilobytes3369------------------------------------------------33703371The first number is the number of objects which are kept in3372individual files. The second is the amount of space taken up by3373those "loose" objects.33743375You can save space and make git faster by moving these loose objects in3376to a "pack file", which stores a group of objects in an efficient3377compressed format; the details of how pack files are formatted can be3378found in link:technical/pack-format.txt[technical/pack-format.txt].33793380To put the loose objects into a pack, just run git repack:33813382------------------------------------------------3383$ git repack3384Generating pack...3385Done counting 6020 objects.3386Deltifying 6020 objects.3387 100% (6020/6020) done3388Writing 6020 objects.3389 100% (6020/6020) done3390Total 6020, written 6020 (delta 4070), reused 0 (delta 0)3391Pack pack-3e54ad29d5b2e05838c75df582c65257b8d08e1c created.3392------------------------------------------------33933394You can then run33953396------------------------------------------------3397$ git prune3398------------------------------------------------33993400to remove any of the "loose" objects that are now contained in the3401pack. This will also remove any unreferenced objects (which may be3402created when, for example, you use "git reset" to remove a commit).3403You can verify that the loose objects are gone by looking at the3404.git/objects directory or by running34053406------------------------------------------------3407$ git count-objects34080 objects, 0 kilobytes3409------------------------------------------------34103411Although the object files are gone, any commands that refer to those3412objects will work exactly as they did before.34133414The gitlink:git-gc[1] command performs packing, pruning, and more for3415you, so is normally the only high-level command you need.34163417[[dangling-objects]]3418Dangling objects3419----------------34203421The gitlink:git-fsck[1] command will sometimes complain about dangling3422objects. They are not a problem.34233424The most common cause of dangling objects is that you've rebased a3425branch, or you have pulled from somebody else who rebased a branch--see3426<<cleaning-up-history>>. In that case, the old head of the original3427branch still exists, as does everything it pointed to. The branch3428pointer itself just doesn't, since you replaced it with another one.34293430There are also other situations that cause dangling objects. For3431example, a "dangling blob" may arise because you did a "git add" of a3432file, but then, before you actually committed it and made it part of the3433bigger picture, you changed something else in that file and committed3434that *updated* thing - the old state that you added originally ends up3435not being pointed to by any commit or tree, so it's now a dangling blob3436object.34373438Similarly, when the "recursive" merge strategy runs, and finds that3439there are criss-cross merges and thus more than one merge base (which is3440fairly unusual, but it does happen), it will generate one temporary3441midway tree (or possibly even more, if you had lots of criss-crossing3442merges and more than two merge bases) as a temporary internal merge3443base, and again, those are real objects, but the end result will not end3444up pointing to them, so they end up "dangling" in your repository.34453446Generally, dangling objects aren't anything to worry about. They can3447even be very useful: if you screw something up, the dangling objects can3448be how you recover your old tree (say, you did a rebase, and realized3449that you really didn't want to - you can look at what dangling objects3450you have, and decide to reset your head to some old dangling state).34513452For commits, you can just use:34533454------------------------------------------------3455$ gitk <dangling-commit-sha-goes-here> --not --all3456------------------------------------------------34573458This asks for all the history reachable from the given commit but not3459from any branch, tag, or other reference. If you decide it's something3460you want, you can always create a new reference to it, e.g.,34613462------------------------------------------------3463$ git branch recovered-branch <dangling-commit-sha-goes-here>3464------------------------------------------------34653466For blobs and trees, you can't do the same, but you can still examine3467them. You can just do34683469------------------------------------------------3470$ git show <dangling-blob/tree-sha-goes-here>3471------------------------------------------------34723473to show what the contents of the blob were (or, for a tree, basically3474what the "ls" for that directory was), and that may give you some idea3475of what the operation was that left that dangling object.34763477Usually, dangling blobs and trees aren't very interesting. They're3478almost always the result of either being a half-way mergebase (the blob3479will often even have the conflict markers from a merge in it, if you3480have had conflicting merges that you fixed up by hand), or simply3481because you interrupted a "git fetch" with ^C or something like that,3482leaving _some_ of the new objects in the object database, but just3483dangling and useless.34843485Anyway, once you are sure that you're not interested in any dangling3486state, you can just prune all unreachable objects:34873488------------------------------------------------3489$ git prune3490------------------------------------------------34913492and they'll be gone. But you should only run "git prune" on a quiescent3493repository - it's kind of like doing a filesystem fsck recovery: you3494don't want to do that while the filesystem is mounted.34953496(The same is true of "git-fsck" itself, btw - but since3497git-fsck never actually *changes* the repository, it just reports3498on what it found, git-fsck itself is never "dangerous" to run.3499Running it while somebody is actually changing the repository can cause3500confusing and scary messages, but it won't actually do anything bad. In3501contrast, running "git prune" while somebody is actively changing the3502repository is a *BAD* idea).35033504[[birdview-on-the-source-code]]3505A birds-eye view of Git's source code3506-------------------------------------35073508It is not always easy for new developers to find their way through Git's3509source code. This section gives you a little guidance to show where to3510start.35113512A good place to start is with the contents of the initial commit, with:35133514----------------------------------------------------3515$ git checkout e83c51633516----------------------------------------------------35173518The initial revision lays the foundation for almost everything git has3519today, but is small enough to read in one sitting.35203521Note that terminology has changed since that revision. For example, the3522README in that revision uses the word "changeset" to describe what we3523now call a <<def_commit_object,commit>>.35243525Also, we do not call it "cache" any more, but "index", however, the3526file is still called `cache.h`. Remark: Not much reason to change it now,3527especially since there is no good single name for it anyway, because it is3528basically _the_ header file which is included by _all_ of Git's C sources.35293530If you grasp the ideas in that initial commit, you should check out a3531more recent version and skim `cache.h`, `object.h` and `commit.h`.35323533In the early days, Git (in the tradition of UNIX) was a bunch of programs3534which were extremely simple, and which you used in scripts, piping the3535output of one into another. This turned out to be good for initial3536development, since it was easier to test new things. However, recently3537many of these parts have become builtins, and some of the core has been3538"libified", i.e. put into libgit.a for performance, portability reasons,3539and to avoid code duplication.35403541By now, you know what the index is (and find the corresponding data3542structures in `cache.h`), and that there are just a couple of object types3543(blobs, trees, commits and tags) which inherit their common structure from3544`struct object`, which is their first member (and thus, you can cast e.g.3545`(struct object *)commit` to achieve the _same_ as `&commit->object`, i.e.3546get at the object name and flags).35473548Now is a good point to take a break to let this information sink in.35493550Next step: get familiar with the object naming. Read <<naming-commits>>.3551There are quite a few ways to name an object (and not only revisions!).3552All of these are handled in `sha1_name.c`. Just have a quick look at3553the function `get_sha1()`. A lot of the special handling is done by3554functions like `get_sha1_basic()` or the likes.35553556This is just to get you into the groove for the most libified part of Git:3557the revision walker.35583559Basically, the initial version of `git log` was a shell script:35603561----------------------------------------------------------------3562$ git-rev-list --pretty $(git-rev-parse --default HEAD "$@") | \3563 LESS=-S ${PAGER:-less}3564----------------------------------------------------------------35653566What does this mean?35673568`git-rev-list` is the original version of the revision walker, which3569_always_ printed a list of revisions to stdout. It is still functional,3570and needs to, since most new Git programs start out as scripts using3571`git-rev-list`.35723573`git-rev-parse` is not as important any more; it was only used to filter out3574options that were relevant for the different plumbing commands that were3575called by the script.35763577Most of what `git-rev-list` did is contained in `revision.c` and3578`revision.h`. It wraps the options in a struct named `rev_info`, which3579controls how and what revisions are walked, and more.35803581The original job of `git-rev-parse` is now taken by the function3582`setup_revisions()`, which parses the revisions and the common command line3583options for the revision walker. This information is stored in the struct3584`rev_info` for later consumption. You can do your own command line option3585parsing after calling `setup_revisions()`. After that, you have to call3586`prepare_revision_walk()` for initialization, and then you can get the3587commits one by one with the function `get_revision()`.35883589If you are interested in more details of the revision walking process,3590just have a look at the first implementation of `cmd_log()`; call3591`git-show v1.3.0~155^2~4` and scroll down to that function (note that you3592no longer need to call `setup_pager()` directly).35933594Nowadays, `git log` is a builtin, which means that it is _contained_ in the3595command `git`. The source side of a builtin is35963597- a function called `cmd_<bla>`, typically defined in `builtin-<bla>.c`,3598 and declared in `builtin.h`,35993600- an entry in the `commands[]` array in `git.c`, and36013602- an entry in `BUILTIN_OBJECTS` in the `Makefile`.36033604Sometimes, more than one builtin is contained in one source file. For3605example, `cmd_whatchanged()` and `cmd_log()` both reside in `builtin-log.c`,3606since they share quite a bit of code. In that case, the commands which are3607_not_ named like the `.c` file in which they live have to be listed in3608`BUILT_INS` in the `Makefile`.36093610`git log` looks more complicated in C than it does in the original script,3611but that allows for a much greater flexibility and performance.36123613Here again it is a good point to take a pause.36143615Lesson three is: study the code. Really, it is the best way to learn about3616the organization of Git (after you know the basic concepts).36173618So, think about something which you are interested in, say, "how can I3619access a blob just knowing the object name of it?". The first step is to3620find a Git command with which you can do it. In this example, it is either3621`git show` or `git cat-file`.36223623For the sake of clarity, let's stay with `git cat-file`, because it36243625- is plumbing, and36263627- was around even in the initial commit (it literally went only through3628 some 20 revisions as `cat-file.c`, was renamed to `builtin-cat-file.c`3629 when made a builtin, and then saw less than 10 versions).36303631So, look into `builtin-cat-file.c`, search for `cmd_cat_file()` and look what3632it does.36333634------------------------------------------------------------------3635 git_config(git_default_config);3636 if (argc != 3)3637 usage("git-cat-file [-t|-s|-e|-p|<type>] <sha1>");3638 if (get_sha1(argv[2], sha1))3639 die("Not a valid object name %s", argv[2]);3640------------------------------------------------------------------36413642Let's skip over the obvious details; the only really interesting part3643here is the call to `get_sha1()`. It tries to interpret `argv[2]` as an3644object name, and if it refers to an object which is present in the current3645repository, it writes the resulting SHA-1 into the variable `sha1`.36463647Two things are interesting here:36483649- `get_sha1()` returns 0 on _success_. This might surprise some new3650 Git hackers, but there is a long tradition in UNIX to return different3651 negative numbers in case of different errors -- and 0 on success.36523653- the variable `sha1` in the function signature of `get_sha1()` is `unsigned3654 char \*`, but is actually expected to be a pointer to `unsigned3655 char[20]`. This variable will contain the 160-bit SHA-1 of the given3656 commit. Note that whenever a SHA-1 is passed as `unsigned char \*`, it3657 is the binary representation, as opposed to the ASCII representation in3658 hex characters, which is passed as `char *`.36593660You will see both of these things throughout the code.36613662Now, for the meat:36633664-----------------------------------------------------------------------------3665 case 0:3666 buf = read_object_with_reference(sha1, argv[1], &size, NULL);3667-----------------------------------------------------------------------------36683669This is how you read a blob (actually, not only a blob, but any type of3670object). To know how the function `read_object_with_reference()` actually3671works, find the source code for it (something like `git grep3672read_object_with | grep ":[a-z]"` in the git repository), and read3673the source.36743675To find out how the result can be used, just read on in `cmd_cat_file()`:36763677-----------------------------------3678 write_or_die(1, buf, size);3679-----------------------------------36803681Sometimes, you do not know where to look for a feature. In many such cases,3682it helps to search through the output of `git log`, and then `git show` the3683corresponding commit.36843685Example: If you know that there was some test case for `git bundle`, but3686do not remember where it was (yes, you _could_ `git grep bundle t/`, but that3687does not illustrate the point!):36883689------------------------3690$ git log --no-merges t/3691------------------------36923693In the pager (`less`), just search for "bundle", go a few lines back,3694and see that it is in commit 18449ab0... Now just copy this object name,3695and paste it into the command line36963697-------------------3698$ git show 18449ab03699-------------------37003701Voila.37023703Another example: Find out what to do in order to make some script a3704builtin:37053706-------------------------------------------------3707$ git log --no-merges --diff-filter=A builtin-*.c3708-------------------------------------------------37093710You see, Git is actually the best tool to find out about the source of Git3711itself!37123713[[glossary]]3714include::glossary.txt[]37153716[[git-quick-start]]3717Appendix A: Git Quick Reference3718===============================37193720This is a quick summary of the major commands; the previous chapters3721explain how these work in more detail.37223723[[quick-creating-a-new-repository]]3724Creating a new repository3725-------------------------37263727From a tarball:37283729-----------------------------------------------3730$ tar xzf project.tar.gz3731$ cd project3732$ git init3733Initialized empty Git repository in .git/3734$ git add .3735$ git commit3736-----------------------------------------------37373738From a remote repository:37393740-----------------------------------------------3741$ git clone git://example.com/pub/project.git3742$ cd project3743-----------------------------------------------37443745[[managing-branches]]3746Managing branches3747-----------------37483749-----------------------------------------------3750$ git branch # list all local branches in this repo3751$ git checkout test # switch working directory to branch "test"3752$ git branch new # create branch "new" starting at current HEAD3753$ git branch -d new # delete branch "new"3754-----------------------------------------------37553756Instead of basing new branch on current HEAD (the default), use:37573758-----------------------------------------------3759$ git branch new test # branch named "test"3760$ git branch new v2.6.15 # tag named v2.6.153761$ git branch new HEAD^ # commit before the most recent3762$ git branch new HEAD^^ # commit before that3763$ git branch new test~10 # ten commits before tip of branch "test"3764-----------------------------------------------37653766Create and switch to a new branch at the same time:37673768-----------------------------------------------3769$ git checkout -b new v2.6.153770-----------------------------------------------37713772Update and examine branches from the repository you cloned from:37733774-----------------------------------------------3775$ git fetch # update3776$ git branch -r # list3777 origin/master3778 origin/next3779 ...3780$ git checkout -b masterwork origin/master3781-----------------------------------------------37823783Fetch a branch from a different repository, and give it a new3784name in your repository:37853786-----------------------------------------------3787$ git fetch git://example.com/project.git theirbranch:mybranch3788$ git fetch git://example.com/project.git v2.6.15:mybranch3789-----------------------------------------------37903791Keep a list of repositories you work with regularly:37923793-----------------------------------------------3794$ git remote add example git://example.com/project.git3795$ git remote # list remote repositories3796example3797origin3798$ git remote show example # get details3799* remote example3800 URL: git://example.com/project.git3801 Tracked remote branches3802 master next ...3803$ git fetch example # update branches from example3804$ git branch -r # list all remote branches3805-----------------------------------------------380638073808[[exploring-history]]3809Exploring history3810-----------------38113812-----------------------------------------------3813$ gitk # visualize and browse history3814$ git log # list all commits3815$ git log src/ # ...modifying src/3816$ git log v2.6.15..v2.6.16 # ...in v2.6.16, not in v2.6.153817$ git log master..test # ...in branch test, not in branch master3818$ git log test..master # ...in branch master, but not in test3819$ git log test...master # ...in one branch, not in both3820$ git log -S'foo()' # ...where difference contain "foo()"3821$ git log --since="2 weeks ago"3822$ git log -p # show patches as well3823$ git show # most recent commit3824$ git diff v2.6.15..v2.6.16 # diff between two tagged versions3825$ git diff v2.6.15..HEAD # diff with current head3826$ git grep "foo()" # search working directory for "foo()"3827$ git grep v2.6.15 "foo()" # search old tree for "foo()"3828$ git show v2.6.15:a.txt # look at old version of a.txt3829-----------------------------------------------38303831Search for regressions:38323833-----------------------------------------------3834$ git bisect start3835$ git bisect bad # current version is bad3836$ git bisect good v2.6.13-rc2 # last known good revision3837Bisecting: 675 revisions left to test after this3838 # test here, then:3839$ git bisect good # if this revision is good, or3840$ git bisect bad # if this revision is bad.3841 # repeat until done.3842-----------------------------------------------38433844[[making-changes]]3845Making changes3846--------------38473848Make sure git knows who to blame:38493850------------------------------------------------3851$ cat >>~/.gitconfig <<\EOF3852[user]3853 name = Your Name Comes Here3854 email = you@yourdomain.example.com3855EOF3856------------------------------------------------38573858Select file contents to include in the next commit, then make the3859commit:38603861-----------------------------------------------3862$ git add a.txt # updated file3863$ git add b.txt # new file3864$ git rm c.txt # old file3865$ git commit3866-----------------------------------------------38673868Or, prepare and create the commit in one step:38693870-----------------------------------------------3871$ git commit d.txt # use latest content only of d.txt3872$ git commit -a # use latest content of all tracked files3873-----------------------------------------------38743875[[merging]]3876Merging3877-------38783879-----------------------------------------------3880$ git merge test # merge branch "test" into the current branch3881$ git pull git://example.com/project.git master3882 # fetch and merge in remote branch3883$ git pull . test # equivalent to git merge test3884-----------------------------------------------38853886[[sharing-your-changes]]3887Sharing your changes3888--------------------38893890Importing or exporting patches:38913892-----------------------------------------------3893$ git format-patch origin..HEAD # format a patch for each commit3894 # in HEAD but not in origin3895$ git am mbox # import patches from the mailbox "mbox"3896-----------------------------------------------38973898Fetch a branch in a different git repository, then merge into the3899current branch:39003901-----------------------------------------------3902$ git pull git://example.com/project.git theirbranch3903-----------------------------------------------39043905Store the fetched branch into a local branch before merging into the3906current branch:39073908-----------------------------------------------3909$ git pull git://example.com/project.git theirbranch:mybranch3910-----------------------------------------------39113912After creating commits on a local branch, update the remote3913branch with your commits:39143915-----------------------------------------------3916$ git push ssh://example.com/project.git mybranch:theirbranch3917-----------------------------------------------39183919When remote and local branch are both named "test":39203921-----------------------------------------------3922$ git push ssh://example.com/project.git test3923-----------------------------------------------39243925Shortcut version for a frequently used remote repository:39263927-----------------------------------------------3928$ git remote add example ssh://example.com/project.git3929$ git push example test3930-----------------------------------------------39313932[[repository-maintenance]]3933Repository maintenance3934----------------------39353936Check for corruption:39373938-----------------------------------------------3939$ git fsck3940-----------------------------------------------39413942Recompress, remove unused cruft:39433944-----------------------------------------------3945$ git gc3946-----------------------------------------------394739483949[[todo]]3950Appendix B: Notes and todo list for this manual3951===============================================39523953This is a work in progress.39543955The basic requirements:3956 - It must be readable in order, from beginning to end, by3957 someone intelligent with a basic grasp of the unix3958 commandline, but without any special knowledge of git. If3959 necessary, any other prerequisites should be specifically3960 mentioned as they arise.3961 - Whenever possible, section headings should clearly describe3962 the task they explain how to do, in language that requires3963 no more knowledge than necessary: for example, "importing3964 patches into a project" rather than "the git-am command"39653966Think about how to create a clear chapter dependency graph that will3967allow people to get to important topics without necessarily reading3968everything in between.39693970Scan Documentation/ for other stuff left out; in particular:3971 howto's3972 some of technical/?3973 hooks3974 list of commands in gitlink:git[1]39753976Scan email archives for other stuff left out39773978Scan man pages to see if any assume more background than this manual3979provides.39803981Simplify beginning by suggesting disconnected head instead of3982temporary branch creation?39833984Add more good examples. Entire sections of just cookbook examples3985might be a good idea; maybe make an "advanced examples" section a3986standard end-of-chapter section?39873988Include cross-references to the glossary, where appropriate.39893990Document shallow clones? See draft 1.5.0 release notes for some3991documentation.39923993Add a section on working with other version control systems, including3994CVS, Subversion, and just imports of series of release tarballs.39953996More details on gitweb?39973998Write a chapter on using plumbing and writing scripts.39994000Alternates, clone -reference, etc.40014002git unpack-objects -r for recovery