1Git User's Manual 2_________________ 3 4This manual is designed to be readable by someone with basic unix 5commandline skills, but no previous knowledge of git. 6 7Chapters 1 and 2 explain how to fetch and study a project using 8git--the tools you'd need to build and test a particular version of a 9software project, to search for regressions, and so on. 10 11Chapter 3 explains how to do development with git, and chapter 4 how 12to share that development with others. 13 14Further chapters cover more specialized topics. 15 16Comprehensive reference documentation is available through the man 17pages. For a command such as "git clone", just use 18 19------------------------------------------------ 20$ man git-clone 21------------------------------------------------ 22 23Repositories and Branches 24========================= 25 26How to get a git repository 27--------------------------- 28 29It will be useful to have a git repository to experiment with as you 30read this manual. 31 32The best way to get one is by using the gitlink:git-clone[1] command 33to download a copy of an existing repository for a project that you 34are interested in. If you don't already have a project in mind, here 35are some interesting examples: 36 37------------------------------------------------ 38 # git itself (approx. 10MB download): 39$ git clone git://git.kernel.org/pub/scm/git/git.git 40 # the linux kernel (approx. 150MB download): 41$ git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git 42------------------------------------------------ 43 44The initial clone may be time-consuming for a large project, but you 45will only need to clone once. 46 47The clone command creates a new directory named after the project 48("git" or "linux-2.6" in the examples above). After you cd into this 49directory, you will see that it contains a copy of the project files, 50together with a special top-level directory named ".git", which 51contains all the information about the history of the project. 52 53In most of the following, examples will be taken from one of the two 54repositories above. 55 56How to check out a different version of a project 57------------------------------------------------- 58 59Git is best thought of as a tool for storing the history of a 60collection of files. It stores the history as a compressed 61collection of interrelated snapshots (versions) of the project's 62contents. 63 64A single git repository may contain multiple branches. Each branch 65is a bookmark referencing a particular point in the project history. 66The gitlink:git-branch[1] command shows you the list of branches: 67 68------------------------------------------------ 69$ git branch 70* master 71------------------------------------------------ 72 73A freshly cloned repository contains a single branch, named "master", 74and the working directory contains the version of the project 75referred to by the master branch. 76 77Most projects also use tags. Tags, like branches, are references 78into the project's history, and can be listed using the 79gitlink:git-tag[1] command: 80 81------------------------------------------------ 82$ git tag -l 83v2.6.11 84v2.6.11-tree 85v2.6.12 86v2.6.12-rc2 87v2.6.12-rc3 88v2.6.12-rc4 89v2.6.12-rc5 90v2.6.12-rc6 91v2.6.13 92... 93------------------------------------------------ 94 95Create a new branch pointing to one of these versions and check it 96out using gitlink:git-checkout[1]: 97 98------------------------------------------------ 99$ git checkout -b new v2.6.13 100------------------------------------------------ 101 102The working directory then reflects the contents that the project had 103when it was tagged v2.6.13, and gitlink:git-branch[1] shows two 104branches, with an asterisk marking the currently checked-out branch: 105 106------------------------------------------------ 107$ git branch 108 master 109* new 110------------------------------------------------ 111 112If you decide that you'd rather see version 2.6.17, you can modify 113the current branch to point at v2.6.17 instead, with 114 115------------------------------------------------ 116$ git reset --hard v2.6.17 117------------------------------------------------ 118 119Note that if the current branch was your only reference to a 120particular point in history, then resetting that branch may leave you 121with no way to find the history it used to point to; so use this 122command carefully. 123 124Understanding History: Commits 125------------------------------ 126 127Every change in the history of a project is represented by a commit. 128The gitlink:git-show[1] command shows the most recent commit on the 129current branch: 130 131------------------------------------------------ 132$ git show 133commit 2b5f6dcce5bf94b9b119e9ed8d537098ec61c3d2 134Author: Jamal Hadi Salim <hadi@cyberus.ca> 135Date: Sat Dec 2 22:22:25 2006 -0800 136 137 [XFRM]: Fix aevent structuring to be more complete. 138 139 aevents can not uniquely identify an SA. We break the ABI with this 140 patch, but consensus is that since it is not yet utilized by any 141 (known) application then it is fine (better do it now than later). 142 143 Signed-off-by: Jamal Hadi Salim <hadi@cyberus.ca> 144 Signed-off-by: David S. Miller <davem@davemloft.net> 145 146diff --git a/Documentation/networking/xfrm_sync.txt b/Documentation/networking/xfrm_sync.txt 147index 8be626f..d7aac9d 100644 148--- a/Documentation/networking/xfrm_sync.txt 149+++ b/Documentation/networking/xfrm_sync.txt 150@@ -47,10 +47,13 @@ aevent_id structure looks like: 151 152 struct xfrm_aevent_id { 153 struct xfrm_usersa_id sa_id; 154+ xfrm_address_t saddr; 155 __u32 flags; 156+ __u32 reqid; 157 }; 158... 159------------------------------------------------ 160 161As you can see, a commit shows who made the latest change, what they 162did, and why. 163 164Every commit has a 40-hexdigit id, sometimes called the "SHA1 id", shown 165on the first line of the "git show" output. You can usually refer to 166a commit by a shorter name, such as a tag or a branch name, but this 167longer id can also be useful. In particular, it is a globally unique 168name for this commit: so if you tell somebody else the SHA1 id (for 169example in email), then you are guaranteed they will see the same 170commit in their repository that you do in yours. 171 172Understanding history: commits, parents, and reachability 173~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 174 175Every commit (except the very first commit in a project) also has a 176parent commit which shows what happened before this commit. 177Following the chain of parents will eventually take you back to the 178beginning of the project. 179 180However, the commits do not form a simple list; git allows lines of 181development to diverge and then reconverge, and the point where two 182lines of development reconverge is called a "merge". The commit 183representing a merge can therefore have more than one parent, with 184each parent representing the most recent commit on one of the lines 185of development leading to that point. 186 187The best way to see how this works is using the gitlink:gitk[1] 188command; running gitk now on a git repository and looking for merge 189commits will help understand how the git organizes history. 190 191In the following, we say that commit X is "reachable" from commit Y 192if commit X is an ancestor of commit Y. Equivalently, you could say 193that Y is a descendent of X, or that there is a chain of parents 194leading from commit Y to commit X. 195 196Undestanding history: History diagrams 197~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 198 199We will sometimes represent git history using diagrams like the one 200below. Commits are shown as "o", and the links between them with 201lines drawn with - / and \. Time goes left to right: 202 203 o--o--o <-- Branch A 204 / 205 o--o--o <-- master 206 \ 207 o--o--o <-- Branch B 208 209If we need to talk about a particular commit, the character "o" may 210be replaced with another letter or number. 211 212Understanding history: What is a branch? 213~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 214 215Though we've been using the word "branch" to mean a kind of reference 216to a particular commit, the word branch is also commonly used to 217refer to the line of commits leading up to that point. In the 218example above, git may think of the branch named "A" as just a 219pointer to one particular commit, but we may refer informally to the 220line of three commits leading up to that point as all being part of 221"branch A". 222 223If we need to make it clear that we're just talking about the most 224recent commit on the branch, we may refer to that commit as the 225"head" of the branch. 226 227Manipulating branches 228--------------------- 229 230Creating, deleting, and modifying branches is quick and easy; here's 231a summary of the commands: 232 233git branch:: 234 list all branches 235git branch <branch>:: 236 create a new branch named <branch>, referencing the same 237 point in history as the current branch 238git branch <branch> <start-point>:: 239 create a new branch named <branch>, referencing 240 <start-point>, which may be specified any way you like, 241 including using a branch name or a tag name 242git branch -d <branch>:: 243 delete the branch <branch>; if the branch you are deleting 244 points to a commit which is not reachable from this branch, 245 this command will fail with a warning. 246git branch -D <branch>:: 247 even if the branch points to a commit not reachable 248 from the current branch, you may know that that commit 249 is still reachable from some other branch or tag. In that 250 case it is safe to use this command to force git to delete 251 the branch. 252git checkout <branch>:: 253 make the current branch <branch>, updating the working 254 directory to reflect the version referenced by <branch> 255git checkout -b <new> <start-point>:: 256 create a new branch <new> referencing <start-point>, and 257 check it out. 258 259It is also useful to know that the special symbol "HEAD" can always 260be used to refer to the current branch. 261 262Examining branches from a remote repository 263------------------------------------------- 264 265The "master" branch that was created at the time you cloned is a copy 266of the HEAD in the repository that you cloned from. That repository 267may also have had other branches, though, and your local repository 268keeps branches which track each of those remote branches, which you 269can view using the "-r" option to gitlink:git-branch[1]: 270 271------------------------------------------------ 272$ git branch -r 273 origin/HEAD 274 origin/html 275 origin/maint 276 origin/man 277 origin/master 278 origin/next 279 origin/pu 280 origin/todo 281------------------------------------------------ 282 283You cannot check out these remote-tracking branches, but you can 284examine them on a branch of your own, just as you would a tag: 285 286------------------------------------------------ 287$ git checkout -b my-todo-copy origin/todo 288------------------------------------------------ 289 290Note that the name "origin" is just the name that git uses by default 291to refer to the repository that you cloned from. 292 293[[how-git-stores-references]] 294How git stores references 295------------------------- 296 297Branches, remote-tracking branches, and tags are all references to 298commits. Git stores these references in the ".git" directory. Most 299of them are stored in .git/refs/: 300 301 - branches are stored in .git/refs/heads 302 - tags are stored in .git/refs/tags 303 - remote-tracking branches for "origin" are stored in 304 .git/refs/remotes/origin/ 305 306If you look at one of these files you will see that they usually 307contain just the SHA1 id of a commit: 308 309------------------------------------------------ 310$ ls .git/refs/heads/ 311master 312$ cat .git/refs/heads/master 313c0f982dcf188d55db9d932a39d4ea7becaa55fed 314------------------------------------------------ 315 316You can refer to a reference by its path relative to the .git 317directory. However, we've seen above that git will also accept 318shorter names; for example, "master" is an acceptable shortcut for 319"refs/heads/master", and "origin/master" is a shortcut for 320"refs/remotes/origin/master". 321 322As another useful shortcut, you can also refer to the "HEAD" of 323"origin" (or any other remote), using just the name of the remote. 324 325For the complete list of paths which git checks for references, and 326how it decides which to choose when there are multiple references 327with the same name, see the "SPECIFYING REVISIONS" section of 328gitlink:git-rev-parse[1]. 329 330[[Updating-a-repository-with-git-fetch]] 331Updating a repository with git fetch 332------------------------------------ 333 334Eventually the developer cloned from will do additional work in her 335repository, creating new commits and advancing the branches to point 336at the new commits. 337 338The command "git fetch", with no arguments, will update all of the 339remote-tracking branches to the latest version found in her 340repository. It will not touch any of your own branches--not even the 341"master" branch that was created for you on clone. 342 343Fetching branches from other repositories 344----------------------------------------- 345 346You can also track branches from repositories other than the one you 347cloned from, using gitlink:git-remote[1]: 348 349------------------------------------------------- 350$ git remote add linux-nfs git://linux-nfs.org/pub/nfs-2.6.git 351$ git fetch 352* refs/remotes/linux-nfs/master: storing branch 'master' ... 353 commit: bf81b46 354------------------------------------------------- 355 356New remote-tracking branches will be stored under the shorthand name 357that you gave "git remote add", in this case linux-nfs: 358 359------------------------------------------------- 360$ git branch -r 361linux-nfs/master 362origin/master 363------------------------------------------------- 364 365If you run "git fetch <remote>" later, the tracking branches for the 366named <remote> will be updated. 367 368If you examine the file .git/config, you will see that git has added 369a new stanza: 370 371------------------------------------------------- 372$ cat .git/config 373... 374[remote "linux-nfs"] 375 url = git://linux-nfs.org/~bfields/git.git 376 fetch = +refs/heads/*:refs/remotes/linux-nfs-read/* 377... 378------------------------------------------------- 379 380This is what causes git to track the remote's branches; you may 381modify or delete these configuration options by editing .git/config 382with a text editor. 383 384Fetching individual branches 385---------------------------- 386 387TODO: find another home for this, later on: 388 389You can also choose to update just one branch at a time: 390 391------------------------------------------------- 392$ git fetch origin todo:refs/remotes/origin/todo 393------------------------------------------------- 394 395The first argument, "origin", just tells git to fetch from the 396repository you originally cloned from. The second argument tells git 397to fetch the branch named "todo" from the remote repository, and to 398store it locally under the name refs/remotes/origin/todo; as we saw 399above, remote-tracking branches are stored under 400refs/remotes/<name-of-repository>/<name-of-branch>. 401 402You can also fetch branches from other repositories; so 403 404------------------------------------------------- 405$ git fetch git://example.com/proj.git master:refs/remotes/example/master 406------------------------------------------------- 407 408will create a new reference named "refs/remotes/example/master" and 409store in it the branch named "master" from the repository at the 410given URL. If you already have a branch named 411"refs/remotes/example/master", it will attempt to "fast-forward" to 412the commit given by example.com's master branch. So next we explain 413what a fast-forward is: 414 415[[fast-forwards]] 416Understanding git history: fast-forwards 417---------------------------------------- 418 419In the previous example, when updating an existing branch, "git 420fetch" checks to make sure that the most recent commit on the remote 421branch is a descendant of the most recent commit on your copy of the 422branch before updating your copy of the branch to point at the new 423commit. Git calls this process a "fast forward". 424 425A fast forward looks something like this: 426 427 o--o--o--o <-- old head of the branch 428 \ 429 o--o--o <-- new head of the branch 430 431 432In some cases it is possible that the new head will *not* actually be 433a descendant of the old head. For example, the developer may have 434realized she made a serious mistake, and decided to backtrack, 435resulting in a situation like: 436 437 o--o--o--o--a--b <-- old head of the branch 438 \ 439 o--o--o <-- new head of the branch 440 441 442 443In this case, "git fetch" will fail, and print out a warning. 444 445In that case, you can still force git to update to the new head, as 446described in the following section. However, note that in the 447situation above this may mean losing the commits labeled "a" and "b", 448unless you've already created a reference of your own pointing to 449them. 450 451Forcing git fetch to do non-fast-forward updates 452------------------------------------------------ 453 454If git fetch fails because the new head of a branch is not a 455descendant of the old head, you may force the update with: 456 457------------------------------------------------- 458$ git fetch git://example.com/proj.git +master:refs/remotes/example/master 459------------------------------------------------- 460 461Note the addition of the "+" sign. Be aware that commits which the 462old version of example/master pointed at may be lost, as we saw in 463the previous section. 464 465Configuring remote branches 466--------------------------- 467 468We saw above that "origin" is just a shortcut to refer to the 469repository which you originally cloned from. This information is 470stored in git configuration variables, which you can see using 471gitlink:git-repo-config[1]: 472 473------------------------------------------------- 474$ git-repo-config -l 475core.repositoryformatversion=0 476core.filemode=true 477core.logallrefupdates=true 478remote.origin.url=git://git.kernel.org/pub/scm/git/git.git 479remote.origin.fetch=+refs/heads/*:refs/remotes/origin/* 480branch.master.remote=origin 481branch.master.merge=refs/heads/master 482------------------------------------------------- 483 484If there are other repositories that you also use frequently, you can 485create similar configuration options to save typing; for example, 486after 487 488------------------------------------------------- 489$ git repo-config remote.example.url git://example.com/proj.git 490------------------------------------------------- 491 492then the following two commands will do the same thing: 493 494------------------------------------------------- 495$ git fetch git://example.com/proj.git master:refs/remotes/example/master 496$ git fetch example master:refs/remotes/example/master 497------------------------------------------------- 498 499Even better, if you add one more option: 500 501------------------------------------------------- 502$ git repo-config remote.example.fetch master:refs/remotes/example/master 503------------------------------------------------- 504 505then the following commands will all do the same thing: 506 507------------------------------------------------- 508$ git fetch git://example.com/proj.git master:ref/remotes/example/master 509$ git fetch example master:ref/remotes/example/master 510$ git fetch example example/master 511$ git fetch example 512------------------------------------------------- 513 514You can also add a "+" to force the update each time: 515 516------------------------------------------------- 517$ git repo-config remote.example.fetch +master:ref/remotes/example/master 518------------------------------------------------- 519 520Don't do this unless you're sure you won't mind "git fetch" possibly 521throwing away commits on mybranch. 522 523Also note that all of the above configuration can be performed by 524directly editing the file .git/config instead of using 525gitlink:git-repo-config[1]. 526 527See gitlink:git-repo-config[1] for more details on the configuration 528options mentioned above. 529 530Exploring git history 531===================== 532 533Git is best thought of as a tool for storing the history of a 534collection of files. It does this by storing compressed snapshots of 535the contents of a file heirarchy, together with "commits" which show 536the relationships between these snapshots. 537 538Git provides extremely flexible and fast tools for exploring the 539history of a project. 540 541We start with one specialized tool which is useful for finding the 542commit that introduced a bug into a project. 543 544How to use bisect to find a regression 545-------------------------------------- 546 547Suppose version 2.6.18 of your project worked, but the version at 548"master" crashes. Sometimes the best way to find the cause of such a 549regression is to perform a brute-force search through the project's 550history to find the particular commit that caused the problem. The 551gitlink:git-bisect[1] command can help you do this: 552 553------------------------------------------------- 554$ git bisect start 555$ git bisect good v2.6.18 556$ git bisect bad master 557Bisecting: 3537 revisions left to test after this 558[65934a9a028b88e83e2b0f8b36618fe503349f8e] BLOCK: Make USB storage depend on SCSI rather than selecting it [try #6] 559------------------------------------------------- 560 561If you run "git branch" at this point, you'll see that git has 562temporarily moved you to a new branch named "bisect". This branch 563points to a commit (with commit id 65934...) that is reachable from 564v2.6.19 but not from v2.6.18. Compile and test it, and see whether 565it crashes. Assume it does crash. Then: 566 567------------------------------------------------- 568$ git bisect bad 569Bisecting: 1769 revisions left to test after this 570[7eff82c8b1511017ae605f0c99ac275a7e21b867] i2c-core: Drop useless bitmaskings 571------------------------------------------------- 572 573checks out an older version. Continue like this, telling git at each 574stage whether the version it gives you is good or bad, and notice 575that the number of revisions left to test is cut approximately in 576half each time. 577 578After about 13 tests (in this case), it will output the commit id of 579the guilty commit. You can then examine the commit with 580gitlink:git-show[1], find out who wrote it, and mail them your bug 581report with the commit id. Finally, run 582 583------------------------------------------------- 584$ git bisect reset 585------------------------------------------------- 586 587to return you to the branch you were on before and delete the 588temporary "bisect" branch. 589 590Note that the version which git-bisect checks out for you at each 591point is just a suggestion, and you're free to try a different 592version if you think it would be a good idea. For example, 593occasionally you may land on a commit that broke something unrelated; 594run 595 596------------------------------------------------- 597$ git bisect-visualize 598------------------------------------------------- 599 600which will run gitk and label the commit it chose with a marker that 601says "bisect". Chose a safe-looking commit nearby, note its commit 602id, and check it out with: 603 604------------------------------------------------- 605$ git reset --hard fb47ddb2db... 606------------------------------------------------- 607 608then test, run "bisect good" or "bisect bad" as appropriate, and 609continue. 610 611Naming commits 612-------------- 613 614We have seen several ways of naming commits already: 615 616 - 40-hexdigit SHA1 id 617 - branch name: refers to the commit at the head of the given 618 branch 619 - tag name: refers to the commit pointed to by the given tag 620 (we've seen branches and tags are special cases of 621 <<how-git-stores-references,references>>). 622 - HEAD: refers to the head of the current branch 623 624There are many more; see the "SPECIFYING REVISIONS" section of the 625gitlink:git-rev-parse[1] man page for the complete list of ways to 626name revisions. Some examples: 627 628------------------------------------------------- 629$ git show fb47ddb2 # the first few characters of the SHA1 id 630 # are usually enough to specify it uniquely 631$ git show HEAD^ # the parent of the HEAD commit 632$ git show HEAD^^ # the grandparent 633$ git show HEAD~4 # the great-great-grandparent 634------------------------------------------------- 635 636Recall that merge commits may have more than one parent; by default, 637^ and ~ follow the first parent listed in the commit, but you can 638also choose: 639 640------------------------------------------------- 641$ git show HEAD^1 # show the first parent of HEAD 642$ git show HEAD^2 # show the second parent of HEAD 643------------------------------------------------- 644 645In addition to HEAD, there are several other special names for 646commits: 647 648Merges (to be discussed later), as well as operations such as 649git-reset, which change the currently checked-out commit, generally 650set ORIG_HEAD to the value HEAD had before the current operation. 651 652The git-fetch operation always stores the head of the last fetched 653branch in FETCH_HEAD. For example, if you run git fetch without 654specifying a local branch as the target of the operation 655 656------------------------------------------------- 657$ git fetch git://example.com/proj.git theirbranch 658------------------------------------------------- 659 660the fetched commits will still be available from FETCH_HEAD. 661 662When we discuss merges we'll also see the special name MERGE_HEAD, 663which refers to the other branch that we're merging in to the current 664branch. 665 666The gitlink:git-rev-parse[1] command is a low-level command that is 667occasionally useful for translating some name for a commit to the SHA1 id for 668that commit: 669 670------------------------------------------------- 671$ git rev-parse origin 672e05db0fd4f31dde7005f075a84f96b360d05984b 673------------------------------------------------- 674 675Creating tags 676------------- 677 678We can also create a tag to refer to a particular commit; after 679running 680 681------------------------------------------------- 682$ git-tag stable-1 1b2e1d63ff 683------------------------------------------------- 684 685You can use stable-1 to refer to the commit 1b2e1d63ff. 686 687This creates a "lightweight" tag. If the tag is a tag you wish to 688share with others, and possibly sign cryptographically, then you 689should create a tag object instead; see the gitlink:git-tag[1] man 690page for details. 691 692Browsing revisions 693------------------ 694 695The gitlink:git-log[1] command can show lists of commits. On its 696own, it shows all commits reachable from the parent commit; but you 697can also make more specific requests: 698 699------------------------------------------------- 700$ git log v2.5.. # commits since (not reachable from) v2.5 701$ git log test..master # commits reachable from master but not test 702$ git log master..test # ...reachable from test but not master 703$ git log master...test # ...reachable from either test or master, 704 # but not both 705$ git log --since="2 weeks ago" # commits from the last 2 weeks 706$ git log Makefile # commits which modify Makefile 707$ git log fs/ # ... which modify any file under fs/ 708$ git log -S'foo()' # commits which add or remove any file data 709 # matching the string 'foo()' 710------------------------------------------------- 711 712And of course you can combine all of these; the following finds 713commits since v2.5 which touch the Makefile or any file under fs: 714 715------------------------------------------------- 716$ git log v2.5.. Makefile fs/ 717------------------------------------------------- 718 719You can also ask git log to show patches: 720 721------------------------------------------------- 722$ git log -p 723------------------------------------------------- 724 725See the "--pretty" option in the gitlink:git-log[1] man page for more 726display options. 727 728Note that git log starts with the most recent commit and works 729backwards through the parents; however, since git history can contain 730multiple independant lines of development, the particular order that 731commits are listed in may be somewhat arbitrary. 732 733Generating diffs 734---------------- 735 736You can generate diffs between any two versions using 737gitlink:git-diff[1]: 738 739------------------------------------------------- 740$ git diff master..test 741------------------------------------------------- 742 743Sometimes what you want instead is a set of patches: 744 745------------------------------------------------- 746$ git format-patch master..test 747------------------------------------------------- 748 749will generate a file with a patch for each commit reachable from test 750but not from master. Note that if master also has commits which are 751not reachable from test, then the combined result of these patches 752will not be the same as the diff produced by the git-diff example. 753 754Viewing old file versions 755------------------------- 756 757You can always view an old version of a file by just checking out the 758correct revision first. But sometimes it is more convenient to be 759able to view an old version of a single file without checking 760anything out; this command does that: 761 762------------------------------------------------- 763$ git show v2.5:fs/locks.c 764------------------------------------------------- 765 766Before the colon may be anything that names a commit, and after it 767may be any path to a file tracked by git. 768 769Examples 770-------- 771 772Check whether two branches point at the same history 773---------------------------------------------------- 774 775Suppose you want to check whether two branches point at the same point 776in history. 777 778------------------------------------------------- 779$ git diff origin..master 780------------------------------------------------- 781 782will tell you whether the contents of the project are the same at the 783two branches; in theory, however, it's possible that the same project 784contents could have been arrived at by two different historical 785routes. You could compare the SHA1 id's: 786 787------------------------------------------------- 788$ git rev-list origin 789e05db0fd4f31dde7005f075a84f96b360d05984b 790$ git rev-list master 791e05db0fd4f31dde7005f075a84f96b360d05984b 792------------------------------------------------- 793 794Or you could recall that the ... operator selects all commits 795contained reachable from either one reference or the other but not 796both: so 797 798------------------------------------------------- 799$ git log origin...master 800------------------------------------------------- 801 802will return no commits when the two branches are equal. 803 804Check which tagged version a given fix was first included in 805------------------------------------------------------------ 806 807Suppose you know that the commit e05db0fd fixed a certain problem. 808You'd like to find the earliest tagged release that contains that 809fix. 810 811Of course, there may be more than one answer--if the history branched 812after commit e05db0fd, then there could be multiple "earliest" tagged 813releases. 814 815You could just visually inspect the commits since e05db0fd: 816 817------------------------------------------------- 818$ gitk e05db0fd.. 819------------------------------------------------- 820 821... 822 823Developing with git 824=================== 825 826Telling git your name 827--------------------- 828 829Before creating any commits, you should introduce yourself to git. The 830easiest way to do so is: 831 832------------------------------------------------ 833$ cat >~/.gitconfig <<\EOF 834[user] 835 name = Your Name Comes Here 836 email = you@yourdomain.example.com 837EOF 838------------------------------------------------ 839 840 841Creating a new repository 842------------------------- 843 844Creating a new repository from scratch is very easy: 845 846------------------------------------------------- 847$ mkdir project 848$ cd project 849$ git init 850------------------------------------------------- 851 852If you have some initial content (say, a tarball): 853 854------------------------------------------------- 855$ tar -xzvf project.tar.gz 856$ cd project 857$ git init 858$ git add . # include everything below ./ in the first commit: 859$ git commit 860------------------------------------------------- 861 862[[how-to-make-a-commit]] 863how to make a commit 864-------------------- 865 866Creating a new commit takes three steps: 867 868 1. Making some changes to the working directory using your 869 favorite editor. 870 2. Telling git about your changes. 871 3. Creating the commit using the content you told git about 872 in step 2. 873 874In practice, you can interleave and repeat steps 1 and 2 as many 875times as you want: in order to keep track of what you want committed 876at step 3, git maintains a snapshot of the tree's contents in a 877special staging area called "the index." 878 879At the beginning, the content of the index will be identical to 880that of the HEAD. The command "git diff --cached", which shows 881the difference between the HEAD and the index, should therefore 882produce no output at that point. 883 884Modifying the index is easy: 885 886To update the index with the new contents of a modified file, use 887 888------------------------------------------------- 889$ git add path/to/file 890------------------------------------------------- 891 892To add the contents of a new file to the index, use 893 894------------------------------------------------- 895$ git add path/to/file 896------------------------------------------------- 897 898To remove a file from the index and from the working tree, 899 900------------------------------------------------- 901$ git rm path/to/file 902------------------------------------------------- 903 904After each step you can verify that 905 906------------------------------------------------- 907$ git diff --cached 908------------------------------------------------- 909 910always shows the difference between the HEAD and the index file--this 911is what you'd commit if you created the commit now--and that 912 913------------------------------------------------- 914$ git diff 915------------------------------------------------- 916 917shows the difference between the working tree and the index file. 918 919Note that "git add" always adds just the current contents of a file 920to the index; further changes to the same file will be ignored unless 921you run git-add on the file again. 922 923When you're ready, just run 924 925------------------------------------------------- 926$ git commit 927------------------------------------------------- 928 929and git will prompt you for a commit message and then create the new 930commmit. Check to make sure it looks like what you expected with 931 932------------------------------------------------- 933$ git show 934------------------------------------------------- 935 936As a special shortcut, 937 938------------------------------------------------- 939$ git commit -a 940------------------------------------------------- 941 942will update the index with any files that you've modified or removed 943and create a commit, all in one step. 944 945A number of commands are useful for keeping track of what you're 946about to commit: 947 948------------------------------------------------- 949$ git diff --cached # difference between HEAD and the index; what 950 # would be commited if you ran "commit" now. 951$ git diff # difference between the index file and your 952 # working directory; changes that would not 953 # be included if you ran "commit" now. 954$ git status # a brief per-file summary of the above. 955------------------------------------------------- 956 957creating good commit messages 958----------------------------- 959 960Though not required, it's a good idea to begin the commit message 961with a single short (less than 50 character) line summarizing the 962change, followed by a blank line and then a more thorough 963description. Tools that turn commits into email, for example, use 964the first line on the Subject line and the rest of the commit in the 965body. 966 967how to merge 968------------ 969 970You can rejoin two diverging branches of development using 971gitlink:git-merge[1]: 972 973------------------------------------------------- 974$ git merge branchname 975------------------------------------------------- 976 977merges the development in the branch "branchname" into the current 978branch. If there are conflicts--for example, if the same file is 979modified in two different ways in the remote branch and the local 980branch--then you are warned; the output may look something like this: 981 982------------------------------------------------- 983$ git pull . next 984Trying really trivial in-index merge... 985fatal: Merge requires file-level merging 986Nope. 987Merging HEAD with 77976da35a11db4580b80ae27e8d65caf5208086 988Merging: 98915e2162 world 99077976da goodbye 991found 1 common ancestor(s): 992d122ed4 initial 993Auto-merging file.txt 994CONFLICT (content): Merge conflict in file.txt 995Automatic merge failed; fix conflicts and then commit the result. 996------------------------------------------------- 997 998Conflict markers are left in the problematic files, and after 999you resolve the conflicts manually, you can update the index1000with the contents and run git commit, as you normally would when1001creating a new file.10021003If you examine the resulting commit using gitk, you will see that it1004has two parents, one pointing to the top of the current branch, and1005one to the top of the other branch.10061007In more detail:10081009[[resolving-a-merge]]1010Resolving a merge1011-----------------10121013When a merge isn't resolved automatically, git leaves the index and1014the working tree in a special state that gives you all the1015information you need to help resolve the merge.10161017Files with conflicts are marked specially in the index, so until you1018resolve the problem and update the index, git commit will fail:10191020-------------------------------------------------1021$ git commit1022file.txt: needs merge1023-------------------------------------------------10241025Also, git status will list those files as "unmerged".10261027All of the changes that git was able to merge automatically are1028already added to the index file, so gitlink:git-diff[1] shows only1029the conflicts. Also, it uses a somewhat unusual syntax:10301031-------------------------------------------------1032$ git diff1033diff --cc file.txt1034index 802992c,2b60207..00000001035--- a/file.txt1036+++ b/file.txt1037@@@ -1,1 -1,1 +1,5 @@@1038++<<<<<<< HEAD:file.txt1039 +Hello world1040++=======1041+ Goodbye1042++>>>>>>> 77976da35a11db4580b80ae27e8d65caf5208086:file.txt1043-------------------------------------------------10441045Recall that the commit which will be commited after we resolve this1046conflict will have two parents instead of the usual one: one parent1047will be HEAD, the tip of the current branch; the other will be the1048tip of the other branch, which is stored temporarily in MERGE_HEAD.10491050The diff above shows the differences between the working-tree version1051of file.txt and two previous version: one version from HEAD, and one1052from MERGE_HEAD. So instead of preceding each line by a single "+"1053or "-", it now uses two columns: the first column is used for1054differences between the first parent and the working directory copy,1055and the second for differences between the second parent and the1056working directory copy. Thus after resolving the conflict in the1057obvious way, the diff will look like:10581059-------------------------------------------------1060$ git diff1061diff --cc file.txt1062index 802992c,2b60207..00000001063--- a/file.txt1064+++ b/file.txt1065@@@ -1,1 -1,1 +1,1 @@@1066- Hello world1067 -Goodbye1068++Goodbye world1069-------------------------------------------------10701071This shows that our resolved version deleted "Hello world" from the1072first parent, deleted "Goodbye" from the second parent, and added1073"Goodbye world", which was previously absent from both.10741075The gitlink:git-log[1] command also provides special help for merges:10761077-------------------------------------------------1078$ git log --merge1079-------------------------------------------------10801081This will list all commits which exist only on HEAD or on MERGE_HEAD,1082and which touch an unmerged file.10831084We can now add the resolved version to the index and commit:10851086-------------------------------------------------1087$ git add file.txt1088$ git commit1089-------------------------------------------------10901091Note that the commit message will already be filled in for you with1092some information about the merge. Normally you can just use this1093default message unchanged, but you may add additional commentary of1094your own if desired.10951096[[undoing-a-merge]]1097undoing a merge1098---------------10991100If you get stuck and decide to just give up and throw the whole mess1101away, you can always return to the pre-merge state with11021103-------------------------------------------------1104$ git reset --hard HEAD1105-------------------------------------------------11061107Or, if you've already commited the merge that you want to throw away,11081109-------------------------------------------------1110$ git reset --hard HEAD^1111-------------------------------------------------11121113However, this last command can be dangerous in some cases--never1114throw away a commit you have already committed if that commit may1115itself have been merged into another branch, as doing so may confuse1116further merges.11171118Fast-forward merges1119-------------------11201121There is one special case not mentioned above, which is treated1122differently. Normally, a merge results in a merge commit, with two1123parents, one pointing at each of the two lines of development that1124were merged.11251126However, if one of the two lines of development is completely1127contained within the other--so every commit present in the one is1128already contained in the other--then git just performs a1129<<fast-forwards,fast forward>>; the head of the current branch is1130moved forward to point at the head of the merged-in branch, without1131any new commits being created.11321133Fixing mistakes1134---------------11351136If you've messed up the working tree, but haven't yet committed your1137mistake, you can return the entire working tree to the last committed1138state with11391140-------------------------------------------------1141$ git reset --hard HEAD1142-------------------------------------------------11431144If you make a commit that you later wish you hadn't, there are two1145fundamentally different ways to fix the problem:11461147 1. You can create a new commit that undoes whatever was done1148 by the previous commit. This is the correct thing if your1149 mistake has already been made public.11501151 2. You can go back and modify the old commit. You should1152 never do this if you have already made the history public;1153 git does not normally expect the "history" of a project to1154 change, and cannot correctly perform repeated merges from1155 a branch that has had its history changed.11561157Fixing a mistake with a new commit1158~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~11591160Creating a new commit that reverts an earlier change is very easy;1161just pass the gitlink:git-revert[1] command a reference to the bad1162commit; for example, to revert the most recent commit:11631164-------------------------------------------------1165$ git revert HEAD1166-------------------------------------------------11671168This will create a new commit which undoes the change in HEAD. You1169will be given a chance to edit the commit message for the new commit.11701171You can also revert an earlier change, for example, the next-to-last:11721173-------------------------------------------------1174$ git revert HEAD^1175-------------------------------------------------11761177In this case git will attempt to undo the old change while leaving1178intact any changes made since then. If more recent changes overlap1179with the changes to be reverted, then you will be asked to fix1180conflicts manually, just as in the case of <<resolving-a-merge,1181resolving a merge>>.11821183Fixing a mistake by editing history1184~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~11851186If the problematic commit is the most recent commit, and you have not1187yet made that commit public, then you may just1188<<undoing-a-merge,destroy it using git-reset>>.11891190Alternatively, you1191can edit the working directory and update the index to fix your1192mistake, just as if you were going to <<how-to-make-a-commit,create a1193new commit>>, then run11941195-------------------------------------------------1196$ git commit --amend1197-------------------------------------------------11981199which will replace the old commit by a new commit incorporating your1200changes, giving you a chance to edit the old commit message first.12011202Again, you should never do this to a commit that may already have1203been merged into another branch; use gitlink:git-revert[1] instead in1204that case.12051206It is also possible to edit commits further back in the history, but1207this is an advanced topic to be left for1208<<cleaning-up-history,another chapter>>.12091210Checking out an old version of a file1211~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~12121213In the process of undoing a previous bad change, you may find it1214useful to check out an older version of a particular file using1215gitlink:git-checkout[1]. We've used git checkout before to switch1216branches, but it has quite different behavior if it is given a path1217name: the command12181219-------------------------------------------------1220$ git checkout HEAD^ path/to/file1221-------------------------------------------------12221223replaces path/to/file by the contents it had in the commit HEAD^, and1224also updates the index to match. It does not change branches.12251226If you just want to look at an old version of the file, without1227modifying the working directory, you can do that with1228gitlink:git-show[1]:12291230-------------------------------------------------1231$ git show HEAD^ path/to/file1232-------------------------------------------------12331234which will display the given version of the file.12351236Ensuring good performance1237-------------------------12381239On large repositories, git depends on compression to keep the history1240information from taking up to much space on disk or in memory.12411242This compression is not performed automatically. Therefore you1243should occasionally run12441245-------------------------------------------------1246$ git gc1247-------------------------------------------------12481249to recompress the archive and to prune any commits which are no1250longer referred to anywhere. This can be very time-consuming, and1251you should not modify the repository while it is working, so you1252should run it while you are not working.12531254Sharing development with others1255===============================12561257[[getting-updates-with-git-pull]]1258Getting updates with git pull1259-----------------------------12601261After you clone a repository and make a few changes of your own, you1262may wish to check the original repository for updates and merge them1263into your own work.12641265We have already seen <<Updating-a-repository-with-git-fetch,how to1266keep remote tracking branches up to date>> with gitlink:git-fetch[1],1267and how to merge two branches. So you can merge in changes from the1268original repository's master branch with:12691270-------------------------------------------------1271$ git fetch1272$ git merge origin/master1273-------------------------------------------------12741275However, the gitlink:git-pull[1] command provides a way to do this in1276one step:12771278-------------------------------------------------1279$ git pull origin master1280-------------------------------------------------12811282In fact, "origin" is normally the default repository to pull from,1283and the default branch is normally the HEAD of the remote repository,1284so often you can accomplish the above with just12851286-------------------------------------------------1287$ git pull1288-------------------------------------------------12891290See the descriptions of the branch.<name>.remote and1291branch.<name>.merge options in gitlink:git-repo-config[1] to learn1292how to control these defaults depending on the current branch.12931294In addition to saving you keystrokes, "git pull" also helps you by1295producing a default commit message documenting the branch and1296repository that you pulled from.12971298(But note that no such commit will be created in the case of a1299<<fast-forwards,fast forward>>; instead, your branch will just be1300updated to point to the latest commit from the upstream branch).13011302The git-pull command can also be given "." as the "remote" repository, in1303which case it just merges in a branch from the current repository; so1304the commands13051306-------------------------------------------------1307$ git pull . branch1308$ git merge branch1309-------------------------------------------------13101311are roughly equivalent. The former is actually very commonly used.13121313Submitting patches to a project1314-------------------------------13151316If you just have a few changes, the simplest way to submit them may1317just be to send them as patches in email:13181319First, use gitlink:git-format-patches[1]; for example:13201321-------------------------------------------------1322$ git format-patch origin1323-------------------------------------------------13241325will produce a numbered series of files in the current directory, one1326for each patch in the current branch but not in origin/HEAD.13271328You can then import these into your mail client and send them by1329hand. However, if you have a lot to send at once, you may prefer to1330use the gitlink:git-send-email[1] script to automate the process.1331Consult the mailing list for your project first to determine how they1332prefer such patches be handled.13331334Importing patches to a project1335------------------------------13361337Git also provides a tool called gitlink:git-am[1] (am stands for1338"apply mailbox"), for importing such an emailed series of patches.1339Just save all of the patch-containing messages, in order, into a1340single mailbox file, say "patches.mbox", then run13411342-------------------------------------------------1343$ git am -3 patches.mbox1344-------------------------------------------------13451346Git will apply each patch in order; if any conflicts are found, it1347will stop, and you can fix the conflicts as described in1348"<<resolving-a-merge,Resolving a merge>>". (The "-3" option tells1349git to perform a merge; if you would prefer it just to abort and1350leave your tree and index untouched, you may omit that option.)13511352Once the index is updated with the results of the conflict1353resolution, instead of creating a new commit, just run13541355-------------------------------------------------1356$ git am --resolved1357-------------------------------------------------13581359and git will create the commit for you and continue applying the1360remaining patches from the mailbox.13611362The final result will be a series of commits, one for each patch in1363the original mailbox, with authorship and commit log message each1364taken from the message containing each patch.13651366[[setting-up-a-public-repository]]1367Setting up a public repository1368------------------------------13691370Another way to submit changes to a project is to simply tell the1371maintainer of that project to pull from your repository, exactly as1372you did in the section "<<getting-updates-with-git-pull, Getting1373updates with git pull>>".13741375If you and maintainer both have accounts on the same machine, then1376then you can just pull changes from each other's repositories1377directly; note that all of the command (gitlink:git-clone[1],1378git-fetch[1], git-pull[1], etc.) which accept a URL as an argument1379will also accept a local file patch; so, for example, you can1380use13811382-------------------------------------------------1383$ git clone /path/to/repository1384$ git pull /path/to/other/repository1385-------------------------------------------------13861387If this sort of setup is inconvenient or impossible, another (more1388common) option is to set up a public repository on a public server.1389This also allows you to cleanly separate private work in progress1390from publicly visible work.13911392You will continue to do your day-to-day work in your personal1393repository, but periodically "push" changes from your personal1394repository into your public repository, allowing other developers to1395pull from that repository. So the flow of changes, in a situation1396where there is one other developer with a public repository, looks1397like this:13981399 you push1400 your personal repo ------------------> your public repo1401 ^ |1402 | |1403 | you pull | they pull1404 | |1405 | |1406 | they push V1407 their public repo <------------------- their repo14081409Now, assume your personal repository is in the directory ~/proj. We1410first create a new clone of the repository:14111412-------------------------------------------------1413$ git clone --bare proj-clone.git1414-------------------------------------------------14151416The resulting directory proj-clone.git will contains a "bare" git1417repository--it is just the contents of the ".git" directory, without1418a checked-out copy of a working directory.14191420Next, copy proj-clone.git to the server where you plan to host the1421public repository. You can use scp, rsync, or whatever is most1422convenient.14231424If somebody else maintains the public server, they may already have1425set up a git service for you, and you may skip to the section1426"<<pushing-changes-to-a-public-repository,Pushing changes to a public1427repository>>", below.14281429Otherwise, the following sections explain how to export your newly1430created public repository:14311432[[exporting-via-http]]1433Exporting a git repository via http1434-----------------------------------14351436The git protocol gives better performance and reliability, but on a1437host with a web server set up, http exports may be simpler to set up.14381439All you need to do is place the newly created bare git repository in1440a directory that is exported by the web server, and make some1441adjustments to give web clients some extra information they need:14421443-------------------------------------------------1444$ mv proj.git /home/you/public_html/proj.git1445$ cd proj.git1446$ git update-server-info1447$ chmod a+x hooks/post-update1448-------------------------------------------------14491450(For an explanation of the last two lines, see1451gitlink:git-update-server-info[1], and the documentation1452link:hooks.txt[Hooks used by git].)14531454Advertise the url of proj.git. Anybody else should then be able to1455clone or pull from that url, for example with a commandline like:14561457-------------------------------------------------1458$ git clone http://yourserver.com/~you/proj.git1459-------------------------------------------------14601461(See also1462link:howto/setup-git-server-over-http.txt[setup-git-server-over-http]1463for a slightly more sophisticated setup using WebDAV which also1464allows pushing over http.)14651466[[exporting-via-git]]1467Exporting a git repository via the git protocol1468-----------------------------------------------14691470This is the preferred method.14711472For now, we refer you to the gitlink:git-daemon[1] man page for1473instructions. (See especially the examples section.)14741475[[pushing-changes-to-a-public-repository]]1476Pushing changes to a public repository1477--------------------------------------14781479Note that the two techniques outline above (exporting via1480<<exporting-via-http,http>> or <<exporting-via-git,git>>) allow other1481maintainers to fetch your latest changes, but they do not allow write1482access, which you will need to update the public repository with the1483latest changes created in your private repository.14841485The simplest way to do this is using gitlink:git-push[1] and ssh; to1486update the remote branch named "master" with the latest state of your1487branch named "master", run14881489-------------------------------------------------1490$ git push ssh://yourserver.com/~you/proj.git master:master1491-------------------------------------------------14921493or just14941495-------------------------------------------------1496$ git push ssh://yourserver.com/~you/proj.git master1497-------------------------------------------------14981499As with git-fetch, git-push will complain if this does not result in1500a <<fast-forwards,fast forward>>. Normally this is a sign of1501something wrong. However, if you are sure you know what you're1502doing, you may force git-push to perform the update anyway by1503proceeding the branch name by a plus sign:15041505-------------------------------------------------1506$ git push ssh://yourserver.com/~you/proj.git +master1507-------------------------------------------------15081509As with git-fetch, you may also set up configuration options to1510save typing; so, for example, after15111512-------------------------------------------------1513$ cat >.git/config <<EOF1514[remote "public-repo"]1515 url = ssh://yourserver.com/~you/proj.git1516EOF1517-------------------------------------------------15181519you should be able to perform the above push with just15201521-------------------------------------------------1522$ git push public-repo master1523-------------------------------------------------15241525See the explanations of the remote.<name>.url, branch.<name>.remote,1526and remote.<name>.push options in gitlink:git-repo-config[1] for1527details.15281529Setting up a shared repository1530------------------------------15311532Another way to collaborate is by using a model similar to that1533commonly used in CVS, where several developers with special rights1534all push to and pull from a single shared repository. See1535link:cvs-migration.txt[git for CVS users] for instructions on how to1536set this up.15371538Allow web browsing of a repository1539----------------------------------15401541TODO: Brief setup-instructions for gitweb15421543Examples1544--------15451546TODO: topic branches, typical roles as in everyday.txt, ?154715481549Working with other version control systems1550==========================================15511552TODO: CVS, Subversion, series-of-release-tarballs, ?15531554[[cleaning-up-history]]1555Rewriting history and maintaining patch series1556==============================================15571558Normally commits are only added to a project, never taken away or1559replaced. Git is designed with this assumption, and violating it will1560cause git's merge machinery (for example) to do the wrong thing.15611562However, there is a situation in which it can be useful to violate this1563assumption.15641565Creating the perfect patch series1566---------------------------------15671568Suppose you are a contributor to a large project, and you want to add a1569complicated feature, and to present it to the other developers in a way1570that makes it easy for them to read your changes, verify that they are1571correct, and understand why you made each change.15721573If you present all of your changes as a single patch (or commit), they may1574find it is too much to digest all at once.15751576If you present them with the entire history of your work, complete with1577mistakes, corrections, and dead ends, they may be overwhelmed.15781579So the ideal is usually to produce a series of patches such that:15801581 1. Each patch can be applied in order.15821583 2. Each patch includes a single logical change, together with a1584 message explaining the change.15851586 3. No patch introduces a regression: after applying any initial1587 part of the series, the resulting project still compiles and1588 works, and has no bugs that it didn't have before.15891590 4. The complete series produces the same end result as your own1591 (probably much messier!) development process did.15921593We will introduce some tools that can help you do this, explain how to use1594them, and then explain some of the problems that can arise because you are1595rewriting history.15961597Keeping a patch series up to date using git-rebase1598--------------------------------------------------15991600Suppose you have a series of commits in a branch "mywork", which1601originally branched off from "origin".16021603Suppose you create a branch "mywork" on a remote-tracking branch "origin",1604and created some commits on top of it:16051606-------------------------------------------------1607$ git checkout -b mywork origin1608$ vi file.txt1609$ git commit1610$ vi otherfile.txt1611$ git commit1612...1613-------------------------------------------------16141615You have performed no merges into mywork, so it is just a simple linear1616sequence of patches on top of "origin":161716181619 o--o--o <-- origin1620 \1621 o--o--o <-- mywork16221623Some more interesting work has been done in the upstream project, and1624"origin" has advanced:16251626 o--o--O--o--o--o <-- origin1627 \1628 a--b--c <-- mywork16291630At this point, you could use "pull" to merge your changes back in;1631the result would create a new merge commit, like this:163216331634 o--o--O--o--o--o <-- origin1635 \ \1636 a--b--c--m <-- mywork16371638However, if you prefer to keep the history in mywork a simple series of1639commits without any merges, you may instead choose to use1640gitlink:git-rebase[1]:16411642-------------------------------------------------1643$ git checkout mywork1644$ git rebase origin1645-------------------------------------------------16461647This will remove each of your commits from mywork, temporarily saving them1648as patches (in a directory named ".dotest"), update mywork to point at the1649latest version of origin, then apply each of the saved patches to the new1650mywork. The result will look like:165116521653 o--o--O--o--o--o <-- origin1654 \1655 a'--b'--c' <-- mywork16561657In the process, it may discover conflicts. In that case it will stop and1658allow you to fix the conflicts as described in1659"<<resolving-a-merge,Resolving a merge>>".16601661XXX: no, maybe not: git diff doesn't produce very useful results, and there's1662no MERGE_HEAD.16631664Once the index is updated with1665the results of the conflict resolution, instead of creating a new commit,1666just run16671668-------------------------------------------------1669$ git rebase --continue1670-------------------------------------------------16711672and git will continue applying the rest of the patches.16731674At any point you may use the --abort option to abort this process and1675return mywork to the state it had before you started the rebase:16761677-------------------------------------------------1678$ git rebase --abort1679-------------------------------------------------16801681Reordering or selecting from a patch series1682-------------------------------------------16831684Given one existing commit, the gitlink:git-cherry-pick[1] command allows1685you to apply the change introduced by that commit and create a new commit1686that records it.16871688This can be useful for modifying a patch series.16891690TODO: elaborate16911692Other tools1693-----------16941695There are numerous other tools, such as stgit, which exist for the purpose1696of maintianing a patch series. These are out of the scope of this manual.16971698Problems with rewriting history1699-------------------------------17001701The primary problem with rewriting the history of a branch has to do with1702merging.17031704TODO: elaborate170517061707Git internals1708=============17091710Architectural overview1711----------------------17121713TODO: Sources, README, core-tutorial, tutorial-2.txt, technical/17141715Glossary of git terms1716=====================17171718include::glossary.txt[]17191720Notes and todo list for this manual1721===================================17221723This is a work in progress.17241725The basic requirements:1726 - It must be readable in order, from beginning to end, by someone1727 intelligent with a basic grasp of the unix commandline, but1728 without any special knowledge of git. If necessary, any other1729 prerequisites should be specifically mentioned as they arise.1730 - Whenever possible, section headings should clearly describe the1731 task they explain how to do, in language that requires no more1732 knowledge than necessary: for example, "importing patches into a1733 project" rather than "the git-am command"17341735Think about how to create a clear chapter dependency graph that will1736allow people to get to important topics without necessarily reading1737everything in between.17381739Scan Documentation/ for other stuff left out; in particular:1740 howto's1741 README1742 some of technical/?1743 hooks1744 etc.17451746Scan email archives for other stuff left out17471748Scan man pages to see if any assume more background than this manual1749provides.17501751Simplify beginning by suggesting disconnected head instead of temporary1752branch creation.17531754Explain how to refer to file stages in the "how to resolve a merge"1755section: diff -1, -2, -3, --ours, --theirs :1:/path notation. The1756"git ls-files --unmerged --stage" thing is sorta useful too, actually. And1757note gitk --merge. Also what's easiest way to see common merge base?17581759Add more good examples. Entire sections of just cookbook examples might1760be a good idea; maybe make an "advanced examples" section a standard1761end-of-chapter section?17621763Include cross-references to the glossary, where appropriate.17641765To document:1766 reflogs, git reflog expire1767 shallow clones?? See draft 1.5.0 release notes for some documentation.