Autogenerated manpages for v2.46.0-421-g159f2
[git-manpages.git] / man7 / gittutorial-2.7
blob86841af279010deb21c824114fc676cd60f3ec5b
1 '\" t
2 .\"     Title: gittutorial-2
3 .\"    Author: [FIXME: author] [see http://www.docbook.org/tdg5/en/html/author]
4 .\" Generator: DocBook XSL Stylesheets v1.79.2 <http://docbook.sf.net/>
5 .\"      Date: 2024-08-26
6 .\"    Manual: Git Manual
7 .\"    Source: Git 2.46.0.421.g159f2d50e7
8 .\"  Language: English
9 .\"
10 .TH "GITTUTORIAL\-2" "7" "2024-08-26" "Git 2\&.46\&.0\&.421\&.g159f2d" "Git Manual"
11 .\" -----------------------------------------------------------------
12 .\" * Define some portability stuff
13 .\" -----------------------------------------------------------------
14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15 .\" http://bugs.debian.org/507673
16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html
17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
18 .ie \n(.g .ds Aq \(aq
19 .el       .ds Aq '
20 .\" -----------------------------------------------------------------
21 .\" * set default formatting
22 .\" -----------------------------------------------------------------
23 .\" disable hyphenation
24 .nh
25 .\" disable justification (adjust text to left margin only)
26 .ad l
27 .\" -----------------------------------------------------------------
28 .\" * MAIN CONTENT STARTS HERE *
29 .\" -----------------------------------------------------------------
30 .SH "NAME"
31 gittutorial-2 \- A tutorial introduction to Git: part two
32 .SH "SYNOPSIS"
33 .sp
34 .nf
35 git *
36 .fi
37 .SH "DESCRIPTION"
38 .sp
39 You should work through \fBgittutorial\fR(7) before reading this tutorial\&.
40 .sp
41 The goal of this tutorial is to introduce two fundamental pieces of Git\(cqs architecture\(em\:the object database and the index file\(em\:and to provide the reader with everything necessary to understand the rest of the Git documentation\&.
42 .SH "THE GIT OBJECT DATABASE"
43 .sp
44 Let\(cqs start a new project and create a small amount of history:
45 .sp
46 .if n \{\
47 .RS 4
48 .\}
49 .nf
50 $ mkdir test\-project
51 $ cd test\-project
52 $ git init
53 Initialized empty Git repository in \&.git/
54 $ echo \*(Aqhello world\*(Aq > file\&.txt
55 $ git add \&.
56 $ git commit \-a \-m "initial commit"
57 [master (root\-commit) 54196cc] initial commit
58  1 file changed, 1 insertion(+)
59  create mode 100644 file\&.txt
60 $ echo \*(Aqhello world!\*(Aq >file\&.txt
61 $ git commit \-a \-m "add emphasis"
62 [master c4d59f3] add emphasis
63  1 file changed, 1 insertion(+), 1 deletion(\-)
64 .fi
65 .if n \{\
66 .RE
67 .\}
68 .sp
69 What are the 7 digits of hex that Git responded to the commit with?
70 .sp
71 We saw in part one of the tutorial that commits have names like this\&. It turns out that every object in the Git history is stored under a 40\-digit hex name\&. That name is the SHA\-1 hash of the object\(cqs contents; among other things, this ensures that Git will never store the same data twice (since identical data is given an identical SHA\-1 name), and that the contents of a Git object will never change (since that would change the object\(cqs name as well)\&. The 7 char hex strings here are simply the abbreviation of such 40 character long strings\&. Abbreviations can be used everywhere where the 40 character strings can be used, so long as they are unambiguous\&.
72 .sp
73 It is expected that the content of the commit object you created while following the example above generates a different SHA\-1 hash than the one shown above because the commit object records the time when it was created and the name of the person performing the commit\&.
74 .sp
75 We can ask Git about this particular object with the \fBcat\-file\fR command\&. Don\(cqt copy the 40 hex digits from this example but use those from your own version\&. Note that you can shorten it to only a few characters to save yourself typing all 40 hex digits:
76 .sp
77 .if n \{\
78 .RS 4
79 .\}
80 .nf
81 $ git cat\-file \-t 54196cc2
82 commit
83 $ git cat\-file commit 54196cc2
84 tree 92b8b694ffb1675e5975148e1121810081dbdffe
85 author J\&. Bruce Fields <bfields@puzzle\&.fieldses\&.org> 1143414668 \-0500
86 committer J\&. Bruce Fields <bfields@puzzle\&.fieldses\&.org> 1143414668 \-0500
88 initial commit
89 .fi
90 .if n \{\
91 .RE
92 .\}
93 .sp
94 A tree can refer to one or more "blob" objects, each corresponding to a file\&. In addition, a tree can also refer to other tree objects, thus creating a directory hierarchy\&. You can examine the contents of any tree using ls\-tree (remember that a long enough initial portion of the SHA\-1 will also work):
95 .sp
96 .if n \{\
97 .RS 4
98 .\}
99 .nf
100 $ git ls\-tree 92b8b694
101 100644 blob 3b18e512dba79e4c8300dd08aeb37f8e728b8dad    file\&.txt
103 .if n \{\
107 Thus we see that this tree has one file in it\&. The SHA\-1 hash is a reference to that file\(cqs data:
109 .if n \{\
110 .RS 4
113 $ git cat\-file \-t 3b18e512
114 blob
116 .if n \{\
120 A "blob" is just file data, which we can also examine with cat\-file:
122 .if n \{\
123 .RS 4
126 $ git cat\-file blob 3b18e512
127 hello world
129 .if n \{\
133 Note that this is the old file data; so the object that Git named in its response to the initial tree was a tree with a snapshot of the directory state that was recorded by the first commit\&.
135 All of these objects are stored under their SHA\-1 names inside the Git directory:
137 .if n \{\
138 .RS 4
141 $ find \&.git/objects/
142 \&.git/objects/
143 \&.git/objects/pack
144 \&.git/objects/info
145 \&.git/objects/3b
146 \&.git/objects/3b/18e512dba79e4c8300dd08aeb37f8e728b8dad
147 \&.git/objects/92
148 \&.git/objects/92/b8b694ffb1675e5975148e1121810081dbdffe
149 \&.git/objects/54
150 \&.git/objects/54/196cc2703dc165cbd373a65a4dcf22d50ae7f7
151 \&.git/objects/a0
152 \&.git/objects/a0/423896973644771497bdc03eb99d5281615b51
153 \&.git/objects/d0
154 \&.git/objects/d0/492b368b66bdabf2ac1fd8c92b39d3db916e59
155 \&.git/objects/c4
156 \&.git/objects/c4/d59f390b9cfd4318117afde11d601c1085f241
158 .if n \{\
162 and the contents of these files is just the compressed data plus a header identifying their length and their type\&. The type is either a blob, a tree, a commit, or a tag\&.
164 The simplest commit to find is the HEAD commit, which we can find from \&.git/HEAD:
166 .if n \{\
167 .RS 4
170 $ cat \&.git/HEAD
171 ref: refs/heads/master
173 .if n \{\
177 As you can see, this tells us which branch we\(cqre currently on, and it tells us this by naming a file under the \&.git directory, which itself contains a SHA\-1 name referring to a commit object, which we can examine with cat\-file:
179 .if n \{\
180 .RS 4
183 $ cat \&.git/refs/heads/master
184 c4d59f390b9cfd4318117afde11d601c1085f241
185 $ git cat\-file \-t c4d59f39
186 commit
187 $ git cat\-file commit c4d59f39
188 tree d0492b368b66bdabf2ac1fd8c92b39d3db916e59
189 parent 54196cc2703dc165cbd373a65a4dcf22d50ae7f7
190 author J\&. Bruce Fields <bfields@puzzle\&.fieldses\&.org> 1143418702 \-0500
191 committer J\&. Bruce Fields <bfields@puzzle\&.fieldses\&.org> 1143418702 \-0500
193 add emphasis
195 .if n \{\
199 The "tree" object here refers to the new state of the tree:
201 .if n \{\
202 .RS 4
205 $ git ls\-tree d0492b36
206 100644 blob a0423896973644771497bdc03eb99d5281615b51    file\&.txt
207 $ git cat\-file blob a0423896
208 hello world!
210 .if n \{\
214 and the "parent" object refers to the previous commit:
216 .if n \{\
217 .RS 4
220 $ git cat\-file commit 54196cc2
221 tree 92b8b694ffb1675e5975148e1121810081dbdffe
222 author J\&. Bruce Fields <bfields@puzzle\&.fieldses\&.org> 1143414668 \-0500
223 committer J\&. Bruce Fields <bfields@puzzle\&.fieldses\&.org> 1143414668 \-0500
225 initial commit
227 .if n \{\
231 The tree object is the tree we examined first, and this commit is unusual in that it lacks any parent\&.
233 Most commits have only one parent, but it is also common for a commit to have multiple parents\&. In that case the commit represents a merge, with the parent references pointing to the heads of the merged branches\&.
235 Besides blobs, trees, and commits, the only remaining type of object is a "tag", which we won\(cqt discuss here; refer to \fBgit-tag\fR(1) for details\&.
237 So now we know how Git uses the object database to represent a project\(cqs history:
239 .RS 4
240 .ie n \{\
241 \h'-04'\(bu\h'+03'\c
243 .el \{\
244 .sp -1
245 .IP \(bu 2.3
247 "commit" objects refer to "tree" objects representing the snapshot of a directory tree at a particular point in the history, and refer to "parent" commits to show how they\(cqre connected into the project history\&.
250 .RS 4
251 .ie n \{\
252 \h'-04'\(bu\h'+03'\c
254 .el \{\
255 .sp -1
256 .IP \(bu 2.3
258 "tree" objects represent the state of a single directory, associating directory names to "blob" objects containing file data and "tree" objects containing subdirectory information\&.
261 .RS 4
262 .ie n \{\
263 \h'-04'\(bu\h'+03'\c
265 .el \{\
266 .sp -1
267 .IP \(bu 2.3
269 "blob" objects contain file data without any other structure\&.
272 .RS 4
273 .ie n \{\
274 \h'-04'\(bu\h'+03'\c
276 .el \{\
277 .sp -1
278 .IP \(bu 2.3
280 References to commit objects at the head of each branch are stored in files under \&.git/refs/heads/\&.
283 .RS 4
284 .ie n \{\
285 \h'-04'\(bu\h'+03'\c
287 .el \{\
288 .sp -1
289 .IP \(bu 2.3
291 The name of the current branch is stored in \&.git/HEAD\&.
294 Note, by the way, that lots of commands take a tree as an argument\&. But as we can see above, a tree can be referred to in many different ways\(em\:by the SHA\-1 name for that tree, by the name of a commit that refers to the tree, by the name of a branch whose head refers to that tree, etc\&.\-\-and most such commands can accept any of these names\&.
296 In command synopses, the word "tree\-ish" is sometimes used to designate such an argument\&.
297 .SH "THE INDEX FILE"
299 The primary tool we\(cqve been using to create commits is \fBgit\-commit \-a\fR, which creates a commit including every change you\(cqve made to your working tree\&. But what if you want to commit changes only to certain files? Or only certain changes to certain files?
301 If we look at the way commits are created under the cover, we\(cqll see that there are more flexible ways creating commits\&.
303 Continuing with our test\-project, let\(cqs modify file\&.txt again:
305 .if n \{\
306 .RS 4
309 $ echo "hello world, again" >>file\&.txt
311 .if n \{\
315 but this time instead of immediately making the commit, let\(cqs take an intermediate step, and ask for diffs along the way to keep track of what\(cqs happening:
317 .if n \{\
318 .RS 4
321 $ git diff
322 \-\-\- a/file\&.txt
323 +++ b/file\&.txt
324 @@ \-1 +1,2 @@
325  hello world!
326 +hello world, again
327 $ git add file\&.txt
328 $ git diff
330 .if n \{\
334 The last diff is empty, but no new commits have been made, and the head still doesn\(cqt contain the new line:
336 .if n \{\
337 .RS 4
340 $ git diff HEAD
341 diff \-\-git a/file\&.txt b/file\&.txt
342 index a042389\&.\&.513feba 100644
343 \-\-\- a/file\&.txt
344 +++ b/file\&.txt
345 @@ \-1 +1,2 @@
346  hello world!
347 +hello world, again
349 .if n \{\
353 So \fIgit diff\fR is comparing against something other than the head\&. The thing that it\(cqs comparing against is actually the index file, which is stored in \&.git/index in a binary format, but whose contents we can examine with ls\-files:
355 .if n \{\
356 .RS 4
359 $ git ls\-files \-\-stage
360 100644 513feba2e53ebbd2532419ded848ba19de88ba00 0       file\&.txt
361 $ git cat\-file \-t 513feba2
362 blob
363 $ git cat\-file blob 513feba2
364 hello world!
365 hello world, again
367 .if n \{\
371 So what our \fIgit add\fR did was store a new blob and then put a reference to it in the index file\&. If we modify the file again, we\(cqll see that the new modifications are reflected in the \fIgit diff\fR output:
373 .if n \{\
374 .RS 4
377 $ echo \*(Aqagain?\*(Aq >>file\&.txt
378 $ git diff
379 index 513feba\&.\&.ba3da7b 100644
380 \-\-\- a/file\&.txt
381 +++ b/file\&.txt
382 @@ \-1,2 +1,3 @@
383  hello world!
384  hello world, again
385 +again?
387 .if n \{\
391 With the right arguments, \fIgit diff\fR can also show us the difference between the working directory and the last commit, or between the index and the last commit:
393 .if n \{\
394 .RS 4
397 $ git diff HEAD
398 diff \-\-git a/file\&.txt b/file\&.txt
399 index a042389\&.\&.ba3da7b 100644
400 \-\-\- a/file\&.txt
401 +++ b/file\&.txt
402 @@ \-1 +1,3 @@
403  hello world!
404 +hello world, again
405 +again?
406 $ git diff \-\-cached
407 diff \-\-git a/file\&.txt b/file\&.txt
408 index a042389\&.\&.513feba 100644
409 \-\-\- a/file\&.txt
410 +++ b/file\&.txt
411 @@ \-1 +1,2 @@
412  hello world!
413 +hello world, again
415 .if n \{\
419 At any time, we can create a new commit using \fIgit commit\fR (without the "\-a" option), and verify that the state committed only includes the changes stored in the index file, not the additional change that is still only in our working tree:
421 .if n \{\
422 .RS 4
425 $ git commit \-m "repeat"
426 $ git diff HEAD
427 diff \-\-git a/file\&.txt b/file\&.txt
428 index 513feba\&.\&.ba3da7b 100644
429 \-\-\- a/file\&.txt
430 +++ b/file\&.txt
431 @@ \-1,2 +1,3 @@
432  hello world!
433  hello world, again
434 +again?
436 .if n \{\
440 So by default \fIgit commit\fR uses the index to create the commit, not the working tree; the "\-a" option to commit tells it to first update the index with all changes in the working tree\&.
442 Finally, it\(cqs worth looking at the effect of \fIgit add\fR on the index file:
444 .if n \{\
445 .RS 4
448 $ echo "goodbye, world" >closing\&.txt
449 $ git add closing\&.txt
451 .if n \{\
455 The effect of the \fIgit add\fR was to add one entry to the index file:
457 .if n \{\
458 .RS 4
461 $ git ls\-files \-\-stage
462 100644 8b9743b20d4b15be3955fc8d5cd2b09cd2336138 0       closing\&.txt
463 100644 513feba2e53ebbd2532419ded848ba19de88ba00 0       file\&.txt
465 .if n \{\
469 And, as you can see with cat\-file, this new entry refers to the current contents of the file:
471 .if n \{\
472 .RS 4
475 $ git cat\-file blob 8b9743b2
476 goodbye, world
478 .if n \{\
482 The "status" command is a useful way to get a quick summary of the situation:
484 .if n \{\
485 .RS 4
488 $ git status
489 On branch master
490 Changes to be committed:
491   (use "git restore \-\-staged <file>\&.\&.\&." to unstage)
493         new file:   closing\&.txt
495 Changes not staged for commit:
496   (use "git add <file>\&.\&.\&." to update what will be committed)
497   (use "git restore <file>\&.\&.\&." to discard changes in working directory)
499         modified:   file\&.txt
501 .if n \{\
505 Since the current state of closing\&.txt is cached in the index file, it is listed as "Changes to be committed"\&. Since file\&.txt has changes in the working directory that aren\(cqt reflected in the index, it is marked "changed but not updated"\&. At this point, running "git commit" would create a commit that added closing\&.txt (with its new contents), but that didn\(cqt modify file\&.txt\&.
507 Also, note that a bare \fBgit diff\fR shows the changes to file\&.txt, but not the addition of closing\&.txt, because the version of closing\&.txt in the index file is identical to the one in the working directory\&.
509 In addition to being the staging area for new commits, the index file is also populated from the object database when checking out a branch, and is used to hold the trees involved in a merge operation\&. See \fBgitcore-tutorial\fR(7) and the relevant man pages for details\&.
510 .SH "WHAT NEXT?"
512 At this point you should know everything necessary to read the man pages for any of the git commands; one good place to start would be with the commands mentioned in \fBgiteveryday\fR(7)\&. You should be able to find any unknown jargon in \fBgitglossary\fR(7)\&.
514 The \m[blue]\fBGit User\(cqs Manual\fR\m[]\&\s-2\u[1]\d\s+2 provides a more comprehensive introduction to Git\&.
516 \fBgitcvs-migration\fR(7) explains how to import a CVS repository into Git, and shows how to use Git in a CVS\-like way\&.
518 For some interesting examples of Git use, see the \m[blue]\fBhowtos\fR\m[]\&\s-2\u[2]\d\s+2\&.
520 For Git developers, \fBgitcore-tutorial\fR(7) goes into detail on the lower\-level Git mechanisms involved in, for example, creating a new commit\&.
521 .SH "SEE ALSO"
523 \fBgittutorial\fR(7), \fBgitcvs-migration\fR(7), \fBgitcore-tutorial\fR(7), \fBgitglossary\fR(7), \fBgit-help\fR(1), \fBgiteveryday\fR(7), \m[blue]\fBThe Git User\(cqs Manual\fR\m[]\&\s-2\u[1]\d\s+2
524 .SH "GIT"
526 Part of the \fBgit\fR(1) suite
527 .SH "NOTES"
528 .IP " 1." 4
529 Git User\(cqs Manual
530 .RS 4
531 \%git-htmldocs/user-manual.html
533 .IP " 2." 4
534 howtos
535 .RS 4
536 \%git-htmldocs/howto-index.html