blob: 42b6e7d7d2bbb24d96f29635967945f516b25e15 [file] [log] [blame]
Junio C Hamano6f8a7902006-05-22 01:10:131A tutorial introduction to git: part two
2========================================
3
4You should work through link:tutorial.html[A tutorial introduction to
5git] before reading this tutorial.
6
7The goal of this tutorial is to introduce two fundamental pieces of
8git's architecture--the object database and the index file--and to
9provide the reader with everything necessary to understand the rest
10of the git documentation.
11
12The git object database
13-----------------------
14
15Let's start a new project and create a small amount of history:
16
17------------------------------------------------
18$ mkdir test-project
19$ cd test-project
20$ git init-db
21defaulting to local storage area
22$ echo 'hello world' > file.txt
23$ git add .
24$ git commit -a -m "initial commit"
25Committing initial tree 92b8b694ffb1675e5975148e1121810081dbdffe
26$ echo 'hello world!' >file.txt
27$ git commit -a -m "add emphasis"
28------------------------------------------------
29
30What are the 40 digits of hex that git responded to the first commit
31with?
32
33We saw in part one of the tutorial that commits have names like this.
34It turns out that every object in the git history is stored under
35such a 40-digit hex name. That name is the SHA1 hash of the object's
36contents; among other things, this ensures that git will never store
37the same data twice (since identical data is given an identical SHA1
38name), and that the contents of a git object will never change (since
39that would change the object's name as well).
40
41We can ask git about this particular object with the cat-file
42command--just cut-and-paste from the reply to the initial commit, to
43save yourself typing all 40 hex digits:
44
45------------------------------------------------
46$ git cat-file -t 92b8b694ffb1675e5975148e1121810081dbdffe
47tree
48------------------------------------------------
49
50A tree can refer to one or more "blob" objects, each corresponding to
51a file. In addition, a tree can also refer to other tree objects,
Junio C Hamano341071d2006-06-04 07:24:4852thus creating a directory hierarchy. You can examine the contents of
Junio C Hamano6f8a7902006-05-22 01:10:1353any tree using ls-tree (remember that a long enough initial portion
54of the SHA1 will also work):
55
56------------------------------------------------
57$ git ls-tree 92b8b694
58100644 blob 3b18e512dba79e4c8300dd08aeb37f8e728b8dad file.txt
59------------------------------------------------
60
61Thus we see that this tree has one file in it. The SHA1 hash is a
62reference to that file's data:
63
64------------------------------------------------
65$ git cat-file -t 3b18e512
66blob
67------------------------------------------------
68
69A "blob" is just file data, which we can also examine with cat-file:
70
71------------------------------------------------
72$ git cat-file blob 3b18e512
73hello world
74------------------------------------------------
75
76Note that this is the old file data; so the object that git named in
77its response to the initial tree was a tree with a snapshot of the
78directory state that was recorded by the first commit.
79
80All of these objects are stored under their SHA1 names inside the git
81directory:
82
83------------------------------------------------
84$ find .git/objects/
85.git/objects/
86.git/objects/pack
87.git/objects/info
88.git/objects/3b
89.git/objects/3b/18e512dba79e4c8300dd08aeb37f8e728b8dad
90.git/objects/92
91.git/objects/92/b8b694ffb1675e5975148e1121810081dbdffe
92.git/objects/54
93.git/objects/54/196cc2703dc165cbd373a65a4dcf22d50ae7f7
94.git/objects/a0
95.git/objects/a0/423896973644771497bdc03eb99d5281615b51
96.git/objects/d0
97.git/objects/d0/492b368b66bdabf2ac1fd8c92b39d3db916e59
98.git/objects/c4
99.git/objects/c4/d59f390b9cfd4318117afde11d601c1085f241
100------------------------------------------------
101
102and the contents of these files is just the compressed data plus a
103header identifying their length and their type. The type is either a
104blob, a tree, a commit, or a tag. We've seen a blob and a tree now,
105so next we should look at a commit.
106
107The simplest commit to find is the HEAD commit, which we can find
108from .git/HEAD:
109
110------------------------------------------------
111$ cat .git/HEAD
112ref: refs/heads/master
113------------------------------------------------
114
115As you can see, this tells us which branch we're currently on, and it
116tells us this by naming a file under the .git directory, which itself
117contains a SHA1 name referring to a commit object, which we can
118examine with cat-file:
119
120------------------------------------------------
121$ cat .git/refs/heads/master
122c4d59f390b9cfd4318117afde11d601c1085f241
123$ git cat-file -t c4d59f39
124commit
125$ git cat-file commit c4d59f39
126tree d0492b368b66bdabf2ac1fd8c92b39d3db916e59
127parent 54196cc2703dc165cbd373a65a4dcf22d50ae7f7
128author J. Bruce Fields <bfields@puzzle.fieldses.org> 1143418702 -0500
129committer J. Bruce Fields <bfields@puzzle.fieldses.org> 1143418702 -0500
130
131add emphasis
132------------------------------------------------
133
134The "tree" object here refers to the new state of the tree:
135
136------------------------------------------------
137$ git ls-tree d0492b36
138100644 blob a0423896973644771497bdc03eb99d5281615b51 file.txt
Junio C Hamano7da87bb2006-06-06 01:23:49139$ git cat-file blob a0423896
Junio C Hamano6f8a7902006-05-22 01:10:13140hello world!
141------------------------------------------------
142
143and the "parent" object refers to the previous commit:
144
145------------------------------------------------
146$ git-cat-file commit 54196cc2
147tree 92b8b694ffb1675e5975148e1121810081dbdffe
148author J. Bruce Fields <bfields@puzzle.fieldses.org> 1143414668 -0500
149committer J. Bruce Fields <bfields@puzzle.fieldses.org> 1143414668 -0500
150
151initial commit
152------------------------------------------------
153
154The tree object is the tree we examined first, and this commit is
155unusual in that it lacks any parent.
156
157Most commits have only one parent, but it is also common for a commit
158to have multiple parents. In that case the commit represents a
159merge, with the parent references pointing to the heads of the merged
160branches.
161
162Besides blobs, trees, and commits, the only remaining type of object
163is a "tag", which we won't discuss here; refer to gitlink:git-tag[1]
164for details.
165
166So now we know how git uses the object database to represent a
167project's history:
168
169 * "commit" objects refer to "tree" objects representing the
170 snapshot of a directory tree at a particular point in the
171 history, and refer to "parent" commits to show how they're
172 connected into the project history.
173 * "tree" objects represent the state of a single directory,
174 associating directory names to "blob" objects containing file
175 data and "tree" objects containing subdirectory information.
176 * "blob" objects contain file data without any other structure.
177 * References to commit objects at the head of each branch are
178 stored in files under .git/refs/heads/.
179 * The name of the current branch is stored in .git/HEAD.
180
181Note, by the way, that lots of commands take a tree as an argument.
182But as we can see above, a tree can be referred to in many different
183ways--by the SHA1 name for that tree, by the name of a commit that
184refers to the tree, by the name of a branch whose head refers to that
185tree, etc.--and most such commands can accept any of these names.
186
187In command synopses, the word "tree-ish" is sometimes used to
188designate such an argument.
189
190The index file
191--------------
192
193The primary tool we've been using to create commits is "git commit
194-a", which creates a commit including every change you've made to
195your working tree. But what if you want to commit changes only to
196certain files? Or only certain changes to certain files?
197
198If we look at the way commits are created under the cover, we'll see
199that there are more flexible ways creating commits.
200
201Continuing with our test-project, let's modify file.txt again:
202
203------------------------------------------------
204$ echo "hello world, again" >>file.txt
205------------------------------------------------
206
207but this time instead of immediately making the commit, let's take an
208intermediate step, and ask for diffs along the way to keep track of
209what's happening:
210
211------------------------------------------------
212$ git diff
213--- a/file.txt
214+++ b/file.txt
215@@ -1 +1,2 @@
216 hello world!
217+hello world, again
218$ git update-index file.txt
219$ git diff
220------------------------------------------------
221
222The last diff is empty, but no new commits have been made, and the
223head still doesn't contain the new line:
224
225------------------------------------------------
226$ git-diff HEAD
227diff --git a/file.txt b/file.txt
228index a042389..513feba 100644
229--- a/file.txt
230+++ b/file.txt
231@@ -1 +1,2 @@
232 hello world!
233+hello world, again
234------------------------------------------------
235
236So "git diff" is comparing against something other than the head.
237The thing that it's comparing against is actually the index file,
238which is stored in .git/index in a binary format, but whose contents
239we can examine with ls-files:
240
241------------------------------------------------
242$ git ls-files --stage
243100644 513feba2e53ebbd2532419ded848ba19de88ba00 0 file.txt
244$ git cat-file -t 513feba2
245blob
246$ git cat-file blob 513feba2
Junio C Hamano8fd52302006-08-10 00:18:08247hello world!
Junio C Hamano6f8a7902006-05-22 01:10:13248hello world, again
249------------------------------------------------
250
251So what our "git update-index" did was store a new blob and then put
252a reference to it in the index file. If we modify the file again,
253we'll see that the new modifications are reflected in the "git-diff"
254output:
255
256------------------------------------------------
257$ echo 'again?' >>file.txt
258$ git diff
259index 513feba..ba3da7b 100644
260--- a/file.txt
261+++ b/file.txt
262@@ -1,2 +1,3 @@
263 hello world!
264 hello world, again
265+again?
266------------------------------------------------
267
268With the right arguments, git diff can also show us the difference
269between the working directory and the last commit, or between the
270index and the last commit:
271
272------------------------------------------------
273$ git diff HEAD
274diff --git a/file.txt b/file.txt
275index a042389..ba3da7b 100644
276--- a/file.txt
277+++ b/file.txt
278@@ -1 +1,3 @@
279 hello world!
280+hello world, again
281+again?
282$ git diff --cached
283diff --git a/file.txt b/file.txt
284index a042389..513feba 100644
285--- a/file.txt
286+++ b/file.txt
287@@ -1 +1,2 @@
288 hello world!
289+hello world, again
290------------------------------------------------
291
292At any time, we can create a new commit using "git commit" (without
293the -a option), and verify that the state committed only includes the
294changes stored in the index file, not the additional change that is
295still only in our working tree:
296
297------------------------------------------------
298$ git commit -m "repeat"
299$ git diff HEAD
300diff --git a/file.txt b/file.txt
301index 513feba..ba3da7b 100644
302--- a/file.txt
303+++ b/file.txt
304@@ -1,2 +1,3 @@
305 hello world!
306 hello world, again
307+again?
308------------------------------------------------
309
310So by default "git commit" uses the index to create the commit, not
311the working tree; the -a option to commit tells it to first update
312the index with all changes in the working tree.
313
314Finally, it's worth looking at the effect of "git add" on the index
315file:
316
317------------------------------------------------
318$ echo "goodbye, world" >closing.txt
319$ git add closing.txt
320------------------------------------------------
321
322The effect of the "git add" was to add one entry to the index file:
323
324------------------------------------------------
325$ git ls-files --stage
326100644 8b9743b20d4b15be3955fc8d5cd2b09cd2336138 0 closing.txt
327100644 513feba2e53ebbd2532419ded848ba19de88ba00 0 file.txt
328------------------------------------------------
329
330And, as you can see with cat-file, this new entry refers to the
331current contents of the file:
332
333------------------------------------------------
334$ git cat-file blob a6b11f7a
335goodbye, word
336------------------------------------------------
337
338The "status" command is a useful way to get a quick summary of the
339situation:
340
341------------------------------------------------
342$ git status
343#
344# Updated but not checked in:
345# (will commit)
346#
347# new file: closing.txt
348#
349#
350# Changed but not updated:
351# (use git-update-index to mark for commit)
352#
353# modified: file.txt
354#
355------------------------------------------------
356
357Since the current state of closing.txt is cached in the index file,
358it is listed as "updated but not checked in". Since file.txt has
359changes in the working directory that aren't reflected in the index,
360it is marked "changed but not updated". At this point, running "git
361commit" would create a commit that added closing.txt (with its new
362contents), but that didn't modify file.txt.
363
364Also, note that a bare "git diff" shows the changes to file.txt, but
365not the addition of closing.txt, because the version of closing.txt
366in the index file is identical to the one in the working directory.
367
368In addition to being the staging area for new commits, the index file
369is also populated from the object database when checking out a
370branch, and is used to hold the trees involved in a merge operation.
Junio C Hamanofd73d892006-09-14 07:38:22371See the link:core-tutorial.html[core tutorial] and the relevant man
Junio C Hamano6f8a7902006-05-22 01:10:13372pages for details.
373
374What next?
375----------
376
377At this point you should know everything necessary to read the man
378pages for any of the git commands; one good place to start would be
Junio C Hamano59929ee2006-05-22 22:34:54379with the commands mentioned in link:everyday.html[Everyday git]. You
Junio C Hamano6f8a7902006-05-22 01:10:13380should be able to find any unknown jargon in the
Junio C Hamanobb8fb052006-05-30 07:21:12381link:glossary.html[Glossary].
Junio C Hamano6f8a7902006-05-22 01:10:13382
383The link:cvs-migration.html[CVS migration] document explains how to
384import a CVS repository into git, and shows how to use git in a
385CVS-like way.
386
387For some interesting examples of git use, see the
388link:howto-index.html[howtos].
389
390For git developers, the link:core-tutorial.html[Core tutorial] goes
391into detail on the lower-level git mechanisms involved in, for
392example, creating a new commit.