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