]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/gitcore-tutorial.txt
The name of the hash function is "SHA-1", not "SHA1"
[thirdparty/git.git] / Documentation / gitcore-tutorial.txt
CommitLineData
497c8331
CC
1gitcore-tutorial(7)
2===================
927a503c 3
497c8331
CC
4NAME
5----
2de9b711 6gitcore-tutorial - A Git core tutorial for developers
497c8331
CC
7
8SYNOPSIS
9--------
10git *
11
12DESCRIPTION
13-----------
927a503c 14
2de9b711
TA
15This tutorial explains how to use the "core" Git commands to set up and
16work with a Git repository.
927a503c 17
2de9b711 18If you just need to use Git as a revision control system you may prefer
48a8c26c
TA
19to start with "A Tutorial Introduction to Git" (linkgit:gittutorial[7]) or
20link:user-manual.html[the Git User Manual].
a85fecaf
BF
21
22However, an understanding of these low-level tools can be helpful if
2de9b711 23you want to understand Git's internals.
927a503c 24
2de9b711 25The core Git is often called "plumbing", with the prettier user
927a503c
BF
26interfaces on top of it called "porcelain". You may not want to use the
27plumbing directly very often, but it can be good to know what the
28plumbing does for when the porcelain isn't flushing.
29
52eb5173
RR
30Back when this document was originally written, many porcelain
31commands were shell scripts. For simplicity, it still uses them as
32examples to illustrate how plumbing is fit together to form the
33porcelain commands. The source tree includes some of these scripts in
34contrib/examples/ for reference. Although these are not implemented as
35shell scripts anymore, the description of what the plumbing layer
36commands do is still valid.
37
927a503c 38[NOTE]
a85fecaf
BF
39Deeper technical details are often marked as Notes, which you can
40skip on your first reading.
927a503c
BF
41
42
2de9b711 43Creating a Git repository
927a503c
BF
44-------------------------
45
2de9b711 46Creating a new Git repository couldn't be easier: all Git repositories start
927a503c
BF
47out empty, and the only thing you need to do is find yourself a
48subdirectory that you want to use as a working tree - either an empty
49one for a totally new project, or an existing working tree that you want
2de9b711 50to import into Git.
927a503c
BF
51
52For our first example, we're going to start a totally new repository from
ba020ef5 53scratch, with no pre-existing files, and we'll call it 'git-tutorial'.
927a503c 54To start up, create a subdirectory for it, change into that
2de9b711 55subdirectory, and initialize the Git infrastructure with 'git init':
927a503c
BF
56
57------------------------------------------------
58$ mkdir git-tutorial
59$ cd git-tutorial
b1889c36 60$ git init
927a503c
BF
61------------------------------------------------
62
2de9b711 63to which Git will reply
927a503c
BF
64
65----------------
ef0a89a6 66Initialized empty Git repository in .git/
927a503c
BF
67----------------
68
2de9b711 69which is just Git's way of saying that you haven't been doing anything
927a503c
BF
70strange, and that it will have created a local `.git` directory setup for
71your new project. You will now have a `.git` directory, and you can
2fd02c92 72inspect that with 'ls'. For your new empty project, it should show you
927a503c
BF
73three entries, among other things:
74
960c7021
JH
75 - a file called `HEAD`, that has `ref: refs/heads/master` in it.
76 This is similar to a symbolic link and points at
77 `refs/heads/master` relative to the `HEAD` file.
927a503c
BF
78+
79Don't worry about the fact that the file that the `HEAD` link points to
80doesn't even exist yet -- you haven't created the commit that will
81start your `HEAD` development branch yet.
82
83 - a subdirectory called `objects`, which will contain all the
84 objects of your project. You should never have any real reason to
85 look at the objects directly, but you might want to know that these
86 objects are what contains all the real 'data' in your repository.
87
88 - a subdirectory called `refs`, which contains references to objects.
89
90In particular, the `refs` subdirectory will contain two other
91subdirectories, named `heads` and `tags` respectively. They do
92exactly what their names imply: they contain references to any number
93of different 'heads' of development (aka 'branches'), and to any
94'tags' that you have created to name specific versions in your
95repository.
96
97One note: the special `master` head is the default branch, which is
960c7021 98why the `.git/HEAD` file was created points to it even if it
927a503c
BF
99doesn't yet exist. Basically, the `HEAD` link is supposed to always
100point to the branch you are working on right now, and you always
101start out expecting to work on the `master` branch.
102
103However, this is only a convention, and you can name your branches
104anything you want, and don't have to ever even 'have' a `master`
2de9b711 105branch. A number of the Git tools will assume that `.git/HEAD` is
927a503c
BF
106valid, though.
107
108[NOTE]
d5fa1f1a 109An 'object' is identified by its 160-bit SHA-1 hash, aka 'object name',
927a503c 110and a reference to an object is always the 40-byte hex
d5fa1f1a 111representation of that SHA-1 name. The files in the `refs`
927a503c 112subdirectory are expected to contain these hex references
70676e69 113(usually with a final `\n` at the end), and you should thus
927a503c
BF
114expect to see a number of 41-byte files containing these
115references in these `refs` subdirectories when you actually start
116populating your tree.
117
118[NOTE]
6998e4db 119An advanced user may want to take a look at linkgit:gitrepository-layout[5]
927a503c
BF
120after finishing this tutorial.
121
2de9b711 122You have now created your first Git repository. Of course, since it's
927a503c
BF
123empty, that's not very useful, so let's start populating it with data.
124
125
2de9b711 126Populating a Git repository
927a503c
BF
127---------------------------
128
129We'll keep this simple and stupid, so we'll start off with populating a
130few trivial files just to get a feel for it.
131
132Start off with just creating any random files that you want to maintain
2de9b711 133in your Git repository. We'll start off with a few bad examples, just to
927a503c
BF
134get a feel for how this works:
135
136------------------------------------------------
137$ echo "Hello World" >hello
138$ echo "Silly example" >example
139------------------------------------------------
140
960c7021
JH
141you have now created two files in your working tree (aka 'working directory'),
142but to actually check in your hard work, you will have to go through two steps:
927a503c
BF
143
144 - fill in the 'index' file (aka 'cache') with the information about your
145 working tree state.
146
147 - commit that index file as an object.
148
2de9b711 149The first step is trivial: when you want to tell Git about any changes
0b444cdb 150to your working tree, you use the 'git update-index' program. That
927a503c
BF
151program normally just takes a list of filenames you want to update, but
152to avoid trivial mistakes, it refuses to add new entries to the index
153(or remove existing ones) unless you explicitly tell it that you're
6cf378f0
JK
154adding a new entry with the `--add` flag (or removing an entry with the
155`--remove`) flag.
927a503c
BF
156
157So to populate the index with the two files you just created, you can do
158
159------------------------------------------------
b1889c36 160$ git update-index --add hello example
927a503c
BF
161------------------------------------------------
162
2de9b711 163and you have now told Git to track those two files.
927a503c
BF
164
165In fact, as you did that, if you now look into your object directory,
2de9b711 166you'll notice that Git will have added two new objects to the object
927a503c
BF
167database. If you did exactly the steps above, you should now be able to do
168
169
170----------------
171$ ls .git/objects/??/*
172----------------
173
174and see two files:
175
176----------------
a6080a0a 177.git/objects/55/7db03de997c86a4a028e1ebd3a1ceb225be238
927a503c
BF
178.git/objects/f2/4c74a2e500f5ee1332c86b94199f52b1d1d962
179----------------
180
960c7021
JH
181which correspond with the objects with names of `557db...` and
182`f24c7...` respectively.
927a503c 183
0b444cdb 184If you want to, you can use 'git cat-file' to look at those objects, but
927a503c
BF
185you'll have to use the object name, not the filename of the object:
186
187----------------
b1889c36 188$ git cat-file -t 557db03de997c86a4a028e1ebd3a1ceb225be238
927a503c
BF
189----------------
190
0b444cdb 191where the `-t` tells 'git cat-file' to tell you what the "type" of the
2de9b711 192object is. Git will tell you that you have a "blob" object (i.e., just a
927a503c
BF
193regular file), and you can see the contents with
194
195----------------
7c5858a6 196$ git cat-file blob 557db03
927a503c
BF
197----------------
198
960c7021 199which will print out "Hello World". The object `557db03` is nothing
927a503c
BF
200more than the contents of your file `hello`.
201
202[NOTE]
203Don't confuse that object with the file `hello` itself. The
204object is literally just those specific *contents* of the file, and
205however much you later change the contents in file `hello`, the object
206we just looked at will never change. Objects are immutable.
207
208[NOTE]
209The second example demonstrates that you can
210abbreviate the object name to only the first several
211hexadecimal digits in most places.
212
213Anyway, as we mentioned previously, you normally never actually take a
214look at the objects themselves, and typing long 40-character hex
215names is not something you'd normally want to do. The above digression
0b444cdb 216was just to show that 'git update-index' did something magical, and
2de9b711 217actually saved away the contents of your files into the Git object
927a503c
BF
218database.
219
220Updating the index did something else too: it created a `.git/index`
221file. This is the index that describes your current working tree, and
222something you should be very aware of. Again, you normally never worry
223about the index file itself, but you should be aware of the fact that
2de9b711
TA
224you have not actually really "checked in" your files into Git so far,
225you've only *told* Git about them.
927a503c 226
2de9b711
TA
227However, since Git knows about them, you can now start using some of the
228most basic Git commands to manipulate the files or look at their status.
927a503c 229
2de9b711 230In particular, let's not even check in the two files into Git yet, we'll
927a503c
BF
231start off by adding another line to `hello` first:
232
233------------------------------------------------
234$ echo "It's a new day for git" >>hello
235------------------------------------------------
236
2de9b711
TA
237and you can now, since you told Git about the previous state of `hello`, ask
238Git what has changed in the tree compared to your old index, using the
0b444cdb 239'git diff-files' command:
927a503c
BF
240
241------------
b1889c36 242$ git diff-files
927a503c
BF
243------------
244
245Oops. That wasn't very readable. It just spit out its own internal
5833d730 246version of a 'diff', but that internal version really just tells you
927a503c
BF
247that it has noticed that "hello" has been modified, and that the old object
248contents it had have been replaced with something else.
249
0b444cdb 250To make it readable, we can tell 'git diff-files' to output the
927a503c
BF
251differences as a patch, using the `-p` flag:
252
253------------
b1889c36 254$ git diff-files -p
927a503c
BF
255diff --git a/hello b/hello
256index 557db03..263414f 100644
257--- a/hello
258+++ b/hello
259@@ -1 +1,2 @@
260 Hello World
261+It's a new day for git
262----
263
264i.e. the diff of the change we caused by adding another line to `hello`.
265
0b444cdb 266In other words, 'git diff-files' always shows us the difference between
927a503c
BF
267what is recorded in the index, and what is currently in the working
268tree. That's very useful.
269
b1889c36 270A common shorthand for `git diff-files -p` is to just write `git
927a503c
BF
271diff`, which will do the same thing.
272
273------------
274$ git diff
275diff --git a/hello b/hello
276index 557db03..263414f 100644
277--- a/hello
278+++ b/hello
279@@ -1 +1,2 @@
280 Hello World
281+It's a new day for git
282------------
283
284
2de9b711 285Committing Git state
927a503c
BF
286--------------------
287
2de9b711
TA
288Now, we want to go to the next stage in Git, which is to take the files
289that Git knows about in the index, and commit them as a real tree. We do
927a503c
BF
290that in two phases: creating a 'tree' object, and committing that 'tree'
291object as a 'commit' object together with an explanation of what the
292tree was all about, along with information of how we came to that state.
293
0b444cdb 294Creating a tree object is trivial, and is done with 'git write-tree'.
483bc4f0 295There are no options or other input: `git write-tree` will take the
927a503c
BF
296current index state, and write an object that describes that whole
297index. In other words, we're now tying together all the different
298filenames with their contents (and their permissions), and we're
2de9b711 299creating the equivalent of a Git "directory" object:
927a503c
BF
300
301------------------------------------------------
b1889c36 302$ git write-tree
927a503c
BF
303------------------------------------------------
304
305and this will just output the name of the resulting tree, in this case
306(if you have done exactly as I've described) it should be
307
308----------------
3098988da15d077d4829fc51d8544c097def6644dbb
310----------------
311
312which is another incomprehensible object name. Again, if you want to,
70676e69 313you can use `git cat-file -t 8988d...` to see that this time the object
927a503c 314is not a "blob" object, but a "tree" object (you can also use
b1889c36 315`git cat-file` to actually output the raw object contents, but you'll see
927a503c
BF
316mainly a binary mess, so that's less interesting).
317
0b444cdb 318However -- normally you'd never use 'git write-tree' on its own, because
927a503c 319normally you always commit a tree into a commit object using the
0b444cdb
TR
320'git commit-tree' command. In fact, it's easier to not actually use
321'git write-tree' on its own at all, but to just pass its result in as an
322argument to 'git commit-tree'.
927a503c 323
0b444cdb 324'git commit-tree' normally takes several arguments -- it wants to know
927a503c
BF
325what the 'parent' of a commit was, but since this is the first commit
326ever in this new repository, and it has no parents, we only need to pass in
0b444cdb 327the object name of the tree. However, 'git commit-tree' also wants to get a
79dbbedd
LFC
328commit message on its standard input, and it will write out the resulting
329object name for the commit to its standard output.
927a503c
BF
330
331And this is where we create the `.git/refs/heads/master` file
332which is pointed at by `HEAD`. This file is supposed to contain
333the reference to the top-of-tree of the master branch, and since
0b444cdb 334that's exactly what 'git commit-tree' spits out, we can do this
927a503c
BF
335all with a sequence of simple shell commands:
336
337------------------------------------------------
b1889c36
JN
338$ tree=$(git write-tree)
339$ commit=$(echo 'Initial commit' | git commit-tree $tree)
340$ git update-ref HEAD $commit
927a503c
BF
341------------------------------------------------
342
ebd124c6
NP
343In this case this creates a totally new commit that is not related to
344anything else. Normally you do this only *once* for a project ever, and
345all later commits will be parented on top of an earlier commit.
927a503c
BF
346
347Again, normally you'd never actually do this by hand. There is a
348helpful script called `git commit` that will do all of this for you. So
349you could have just written `git commit`
350instead, and it would have done the above magic scripting for you.
351
352
353Making a change
354---------------
355
0b444cdb 356Remember how we did the 'git update-index' on file `hello` and then we
927a503c 357changed `hello` afterward, and could compare the new state of `hello` with the
a6080a0a 358state we saved in the index file?
927a503c 359
0b444cdb 360Further, remember how I said that 'git write-tree' writes the contents
927a503c
BF
361of the *index* file to the tree, and thus what we just committed was in
362fact the *original* contents of the file `hello`, not the new ones. We did
363that on purpose, to show the difference between the index state, and the
364state in the working tree, and how they don't have to match, even
365when we commit things.
366
b1889c36 367As before, if we do `git diff-files -p` in our git-tutorial project,
927a503c
BF
368we'll still see the same difference we saw last time: the index file
369hasn't changed by the act of committing anything. However, now that we
370have committed something, we can also learn to use a new command:
0b444cdb 371'git diff-index'.
927a503c 372
0b444cdb
TR
373Unlike 'git diff-files', which showed the difference between the index
374file and the working tree, 'git diff-index' shows the differences
927a503c 375between a committed *tree* and either the index file or the working
0b444cdb 376tree. In other words, 'git diff-index' wants a tree to be diffed
927a503c 377against, and before we did the commit, we couldn't do that, because we
a6080a0a 378didn't have anything to diff against.
927a503c
BF
379
380But now we can do
381
382----------------
b1889c36 383$ git diff-index -p HEAD
927a503c
BF
384----------------
385
0b444cdb 386(where `-p` has the same meaning as it did in 'git diff-files'), and it
a6080a0a 387will show us the same difference, but for a totally different reason.
927a503c
BF
388Now we're comparing the working tree not against the index file,
389but against the tree we just wrote. It just so happens that those two
390are obviously the same, so we get the same result.
391
392Again, because this is a common operation, you can also just shorthand
393it with
394
395----------------
396$ git diff HEAD
397----------------
398
399which ends up doing the above for you.
400
0b444cdb 401In other words, 'git diff-index' normally compares a tree against the
6cf378f0 402working tree, but when given the `--cached` flag, it is told to
927a503c
BF
403instead compare against just the index cache contents, and ignore the
404current working tree state entirely. Since we just wrote the index
6cf378f0 405file to HEAD, doing `git diff-index --cached -p HEAD` should thus return
a6080a0a 406an empty set of differences, and that's exactly what it does.
927a503c
BF
407
408[NOTE]
409================
0b444cdb 410'git diff-index' really always uses the index for its
927a503c
BF
411comparisons, and saying that it compares a tree against the working
412tree is thus not strictly accurate. In particular, the list of
413files to compare (the "meta-data") *always* comes from the index file,
6cf378f0 414regardless of whether the `--cached` flag is used or not. The `--cached`
927a503c
BF
415flag really only determines whether the file *contents* to be compared
416come from the working tree or not.
417
2de9b711 418This is not hard to understand, as soon as you realize that Git simply
927a503c 419never knows (or cares) about files that it is not told about
2de9b711 420explicitly. Git will never go *looking* for files to compare, it
927a503c
BF
421expects you to tell it what the files are, and that's what the index
422is there for.
423================
424
425However, our next step is to commit the *change* we did, and again, to
426understand what's going on, keep in mind the difference between "working
427tree contents", "index file" and "committed tree". We have changes
428in the working tree that we want to commit, and we always have to
429work through the index file, so the first thing we need to do is to
430update the index cache:
431
432------------------------------------------------
b1889c36 433$ git update-index hello
927a503c
BF
434------------------------------------------------
435
2de9b711 436(note how we didn't need the `--add` flag this time, since Git knew
927a503c
BF
437about the file already).
438
70676e69
JN
439Note what happens to the different 'git diff-{asterisk}' versions here.
440After we've updated `hello` in the index, `git diff-files -p` now shows no
b1889c36 441differences, but `git diff-index -p HEAD` still *does* show that the
927a503c 442current state is different from the state we committed. In fact, now
0b444cdb 443'git diff-index' shows the same difference whether we use the `--cached`
927a503c
BF
444flag or not, since now the index is coherent with the working tree.
445
446Now, since we've updated `hello` in the index, we can commit the new
447version. We could do it by writing the tree by hand again, and
448committing the tree (this time we'd have to use the `-p HEAD` flag to
449tell commit that the HEAD was the *parent* of the new commit, and that
450this wasn't an initial commit any more), but you've done that once
451already, so let's just use the helpful script this time:
452
453------------------------------------------------
454$ git commit
455------------------------------------------------
456
457which starts an editor for you to write the commit message and tells you
458a bit about what you have done.
459
460Write whatever message you want, and all the lines that start with '#'
461will be pruned out, and the rest will be used as the commit message for
462the change. If you decide you don't want to commit anything after all at
463this point (you can continue to edit things and update the index), you
464can just leave an empty message. Otherwise `git commit` will commit
465the change for you.
466
2de9b711 467You've now made your first real Git commit. And if you're interested in
927a503c
BF
468looking at what `git commit` really does, feel free to investigate:
469it's a few very simple shell scripts to generate the helpful (?) commit
470message headers, and a few one-liners that actually do the
0b444cdb 471commit itself ('git commit').
927a503c
BF
472
473
474Inspecting Changes
475------------------
476
477While creating changes is useful, it's even more useful if you can tell
478later what changed. The most useful command for this is another of the
0b444cdb 479'diff' family, namely 'git diff-tree'.
927a503c 480
0b444cdb 481'git diff-tree' can be given two arbitrary trees, and it will tell you the
927a503c
BF
482differences between them. Perhaps even more commonly, though, you can
483give it just a single commit object, and it will figure out the parent
484of that commit itself, and show the difference directly. Thus, to get
485the same diff that we've already seen several times, we can now do
486
487----------------
b1889c36 488$ git diff-tree -p HEAD
927a503c
BF
489----------------
490
491(again, `-p` means to show the difference as a human-readable patch),
492and it will show what the last commit (in `HEAD`) actually changed.
493
494[NOTE]
495============
496Here is an ASCII art by Jon Loeliger that illustrates how
70676e69 497various 'diff-{asterisk}' commands compare things.
927a503c
BF
498
499 diff-tree
500 +----+
501 | |
502 | |
503 V V
504 +-----------+
505 | Object DB |
506 | Backing |
507 | Store |
508 +-----------+
509 ^ ^
510 | |
511 | | diff-index --cached
512 | |
513 diff-index | V
514 | +-----------+
515 | | Index |
516 | | "cache" |
517 | +-----------+
518 | ^
519 | |
520 | | diff-files
521 | |
522 V V
523 +-----------+
524 | Working |
525 | Directory |
526 +-----------+
527============
528
0b444cdb 529More interestingly, you can also give 'git diff-tree' the `--pretty` flag,
960c7021 530which tells it to also show the commit message and author and date of the
927a503c
BF
531commit, and you can tell it to show a whole series of diffs.
532Alternatively, you can tell it to be "silent", and not show the diffs at
533all, but just show the actual commit message.
534
0b444cdb
TR
535In fact, together with the 'git rev-list' program (which generates a
536list of revisions), 'git diff-tree' ends up being a veritable fount of
537changes. A trivial (but very useful) script called 'git whatchanged' is
2de9b711 538included with Git which does exactly this, and shows a log of recent
927a503c
BF
539activities.
540
541To see the whole history of our pitiful little git-tutorial project, you
542can do
543
544----------------
545$ git log
546----------------
547
548which shows just the log messages, or if we want to see the log together
549with the associated patches use the more complex (and much more
550powerful)
551
552----------------
b1889c36 553$ git whatchanged -p
927a503c
BF
554----------------
555
556and you will see exactly what has changed in the repository over its
a6080a0a 557short history.
927a503c
BF
558
559[NOTE]
abea85d1
CR
560When using the above two commands, the initial commit will be shown.
561If this is a problem because it is huge, you can hide it by setting
562the log.showroot configuration variable to false. Having this, you
6cf378f0 563can still show it for each command just adding the `--root` option,
0b444cdb 564which is a flag for 'git diff-tree' accepted by both commands.
927a503c 565
2de9b711 566With that, you should now be having some inkling of what Git does, and
927a503c
BF
567can explore on your own.
568
569[NOTE]
570Most likely, you are not directly using the core
2de9b711 571Git Plumbing commands, but using Porcelain such as 'git add', `git-rm'
3b27428b 572and `git-commit'.
927a503c
BF
573
574
575Tagging a version
576-----------------
577
2de9b711 578In Git, there are two kinds of tags, a "light" one, and an "annotated tag".
927a503c
BF
579
580A "light" tag is technically nothing more than a branch, except we put
581it in the `.git/refs/tags/` subdirectory instead of calling it a `head`.
582So the simplest form of tag involves nothing more than
583
584------------------------------------------------
585$ git tag my-first-tag
586------------------------------------------------
587
588which just writes the current `HEAD` into the `.git/refs/tags/my-first-tag`
589file, after which point you can then use this symbolic name for that
590particular state. You can, for example, do
591
592----------------
593$ git diff my-first-tag
594----------------
595
5221ecbc 596to diff your current state against that tag which at this point will
927a503c
BF
597obviously be an empty diff, but if you continue to develop and commit
598stuff, you can use your tag as an "anchor-point" to see what has changed
599since you tagged it.
600
2de9b711 601An "annotated tag" is actually a real Git object, and contains not only a
927a503c
BF
602pointer to the state you want to tag, but also a small tag name and
603message, along with optionally a PGP signature that says that yes,
604you really did
605that tag. You create these annotated tags with either the `-a` or
0b444cdb 606`-s` flag to 'git tag':
927a503c
BF
607
608----------------
609$ git tag -s <tagname>
610----------------
611
612which will sign the current `HEAD` (but you can also give it another
3c652d16 613argument that specifies the thing to tag, e.g., you could have tagged the
927a503c
BF
614current `mybranch` point by using `git tag <tagname> mybranch`).
615
616You normally only do signed tags for major releases or things
617like that, while the light-weight tags are useful for any marking you
618want to do -- any time you decide that you want to remember a certain
619point, just create a private tag for it, and you have a nice symbolic
620name for the state at that point.
621
622
623Copying repositories
624--------------------
625
2de9b711 626Git repositories are normally totally self-sufficient and relocatable.
927a503c 627Unlike CVS, for example, there is no separate notion of
2de9b711
TA
628"repository" and "working tree". A Git repository normally *is* the
629working tree, with the local Git information hidden in the `.git`
927a503c
BF
630subdirectory. There is nothing else. What you see is what you got.
631
632[NOTE]
2de9b711 633You can tell Git to split the Git internal information from
927a503c
BF
634the directory that it tracks, but we'll ignore that for now: it's not
635how normal projects work, and it's really only meant for special uses.
2de9b711 636So the mental model of "the Git information is always tied directly to
927a503c
BF
637the working tree that it describes" may not be technically 100%
638accurate, but it's a good model for all normal use.
639
a6080a0a 640This has two implications:
927a503c
BF
641
642 - if you grow bored with the tutorial repository you created (or you've
643 made a mistake and want to start all over), you can just do simple
644+
645----------------
646$ rm -rf git-tutorial
647----------------
648+
649and it will be gone. There's no external repository, and there's no
650history outside the project you created.
651
2de9b711 652 - if you want to move or duplicate a Git repository, you can do so. There
0b444cdb 653 is 'git clone' command, but if all you want to do is just to
927a503c
BF
654 create a copy of your repository (with all the full history that
655 went along with it), you can do so with a regular
656 `cp -a git-tutorial new-git-tutorial`.
657+
2de9b711 658Note that when you've moved or copied a Git repository, your Git index
927a503c
BF
659file (which caches various information, notably some of the "stat"
660information for the files involved) will likely need to be refreshed.
661So after you do a `cp -a` to create a new copy, you'll want to do
662+
663----------------
b1889c36 664$ git update-index --refresh
927a503c
BF
665----------------
666+
667in the new repository to make sure that the index file is up-to-date.
668
669Note that the second point is true even across machines. You can
2de9b711 670duplicate a remote Git repository with *any* regular copy mechanism, be it
2fd02c92 671'scp', 'rsync' or 'wget'.
927a503c
BF
672
673When copying a remote repository, you'll want to at a minimum update the
674index cache when you do this, and especially with other peoples'
675repositories you often want to make sure that the index cache is in some
676known state (you don't know *what* they've done and not yet checked in),
0b444cdb 677so usually you'll precede the 'git update-index' with a
927a503c
BF
678
679----------------
b1889c36
JN
680$ git read-tree --reset HEAD
681$ git update-index --refresh
927a503c
BF
682----------------
683
684which will force a total index re-build from the tree pointed to by `HEAD`.
0b444cdb 685It resets the index contents to `HEAD`, and then the 'git update-index'
927a503c
BF
686makes sure to match up all index entries with the checked-out files.
687If the original repository had uncommitted changes in its
b1889c36 688working tree, `git update-index --refresh` notices them and
927a503c
BF
689tells you they need to be updated.
690
691The above can also be written as simply
692
693----------------
694$ git reset
695----------------
696
2de9b711 697and in fact a lot of the common Git command combinations can be scripted
927a503c 698with the `git xyz` interfaces. You can learn things by just looking
3b27428b 699at what the various git scripts do. For example, `git reset` used to be
0b444cdb
TR
700the above two lines implemented in 'git reset', but some things like
701'git status' and 'git commit' are slightly more complex scripts around
2de9b711 702the basic Git commands.
927a503c
BF
703
704Many (most?) public remote repositories will not contain any of
705the checked out files or even an index file, and will *only* contain the
2de9b711
TA
706actual core Git files. Such a repository usually doesn't even have the
707`.git` subdirectory, but has all the Git files directly in the
a6080a0a 708repository.
927a503c 709
2de9b711 710To create your own local live copy of such a "raw" Git repository, you'd
927a503c
BF
711first create your own subdirectory for the project, and then copy the
712raw repository contents into the `.git` directory. For example, to
2de9b711 713create your own copy of the Git repository, you'd do the following
927a503c
BF
714
715----------------
716$ mkdir my-git
717$ cd my-git
718$ rsync -rL rsync://rsync.kernel.org/pub/scm/git/git.git/ .git
719----------------
720
a6080a0a 721followed by
927a503c
BF
722
723----------------
b1889c36 724$ git read-tree HEAD
927a503c
BF
725----------------
726
727to populate the index. However, now you have populated the index, and
2de9b711 728you have all the Git internal files, but you will notice that you don't
927a503c
BF
729actually have any of the working tree files to work on. To get
730those, you'd check them out with
731
732----------------
b1889c36 733$ git checkout-index -u -a
927a503c
BF
734----------------
735
736where the `-u` flag means that you want the checkout to keep the index
737up-to-date (so that you don't have to refresh it afterward), and the
738`-a` flag means "check out all files" (if you have a stale copy or an
739older version of a checked out tree you may also need to add the `-f`
0b444cdb 740flag first, to tell 'git checkout-index' to *force* overwriting of any old
a6080a0a 741files).
927a503c
BF
742
743Again, this can all be simplified with
744
745----------------
746$ git clone rsync://rsync.kernel.org/pub/scm/git/git.git/ my-git
747$ cd my-git
748$ git checkout
749----------------
750
751which will end up doing all of the above for you.
752
753You have now successfully copied somebody else's (mine) remote
a6080a0a 754repository, and checked it out.
927a503c
BF
755
756
757Creating a new branch
758---------------------
759
2de9b711 760Branches in Git are really nothing more than pointers into the Git
927a503c
BF
761object database from within the `.git/refs/` subdirectory, and as we
762already discussed, the `HEAD` branch is nothing but a symlink to one of
a6080a0a 763these object pointers.
927a503c
BF
764
765You can at any time create a new branch by just picking an arbitrary
d5fa1f1a 766point in the project history, and just writing the SHA-1 name of that
927a503c
BF
767object into a file under `.git/refs/heads/`. You can use any filename you
768want (and indeed, subdirectories), but the convention is that the
769"normal" branch is called `master`. That's just a convention, though,
a6080a0a 770and nothing enforces it.
927a503c
BF
771
772To show that as an example, let's go back to the git-tutorial repository we
773used earlier, and create a branch in it. You do that by simply just
774saying that you want to check out a new branch:
775
776------------
777$ git checkout -b mybranch
778------------
779
780will create a new branch based at the current `HEAD` position, and switch
a6080a0a 781to it.
927a503c
BF
782
783[NOTE]
784================================================
785If you make the decision to start your new branch at some
786other point in the history than the current `HEAD`, you can do so by
0b444cdb 787just telling 'git checkout' what the base of the checkout would be.
927a503c
BF
788In other words, if you have an earlier tag or branch, you'd just do
789
790------------
791$ git checkout -b mybranch earlier-commit
792------------
793
794and it would create the new branch `mybranch` at the earlier commit,
795and check out the state at that time.
796================================================
797
798You can always just jump back to your original `master` branch by doing
799
800------------
801$ git checkout master
802------------
803
804(or any other branch-name, for that matter) and if you forget which
805branch you happen to be on, a simple
806
927a503c
BF
807------------
808$ cat .git/HEAD
809------------
810
960c7021
JH
811will tell you where it's pointing. To get the list of branches
812you have, you can say
927a503c
BF
813
814------------
815$ git branch
816------------
817
3b27428b
BS
818which used to be nothing more than a simple script around `ls .git/refs/heads`.
819There will be an asterisk in front of the branch you are currently on.
927a503c
BF
820
821Sometimes you may wish to create a new branch _without_ actually
822checking it out and switching to it. If so, just use the command
823
824------------
825$ git branch <branchname> [startingpoint]
826------------
827
a6080a0a 828which will simply _create_ the branch, but will not do anything further.
927a503c 829You can then later -- once you decide that you want to actually develop
0b444cdb 830on that branch -- switch to that branch with a regular 'git checkout'
927a503c
BF
831with the branchname as the argument.
832
833
834Merging two branches
835--------------------
836
837One of the ideas of having a branch is that you do some (possibly
838experimental) work in it, and eventually merge it back to the main
839branch. So assuming you created the above `mybranch` that started out
840being the same as the original `master` branch, let's make sure we're in
841that branch, and do some work there.
842
843------------------------------------------------
844$ git checkout mybranch
845$ echo "Work, work, work" >>hello
d336fc09 846$ git commit -m "Some work." -i hello
927a503c
BF
847------------------------------------------------
848
849Here, we just added another line to `hello`, and we used a shorthand for
b1889c36 850doing both `git update-index hello` and `git commit` by just giving the
960c7021 851filename directly to `git commit`, with an `-i` flag (it tells
2de9b711 852Git to 'include' that file in addition to what you have done to
960c7021 853the index file so far when making the commit). The `-m` flag is to give the
927a503c
BF
854commit log message from the command line.
855
856Now, to make it a bit more interesting, let's assume that somebody else
857does some work in the original branch, and simulate that by going back
858to the master branch, and editing the same file differently there:
859
860------------
861$ git checkout master
862------------
863
864Here, take a moment to look at the contents of `hello`, and notice how they
865don't contain the work we just did in `mybranch` -- because that work
866hasn't happened in the `master` branch at all. Then do
867
868------------
869$ echo "Play, play, play" >>hello
870$ echo "Lots of fun" >>example
d336fc09 871$ git commit -m "Some fun." -i hello example
927a503c
BF
872------------
873
874since the master branch is obviously in a much better mood.
875
876Now, you've got two branches, and you decide that you want to merge the
877work done. Before we do that, let's introduce a cool graphical tool that
878helps you view what's going on:
879
880----------------
881$ gitk --all
882----------------
883
6cf378f0 884will show you graphically both of your branches (that's what the `--all`
927a503c
BF
885means: normally it will just show you your current `HEAD`) and their
886histories. You can also see exactly how they came to be from a common
a6080a0a 887source.
927a503c 888
42d36bb8 889Anyway, let's exit 'gitk' (`^Q` or the File menu), and decide that we want
927a503c
BF
890to merge the work we did on the `mybranch` branch into the `master`
891branch (which is currently our `HEAD` too). To do that, there's a nice
0b444cdb 892script called 'git merge', which wants to know which branches you want
927a503c
BF
893to resolve and what the merge is all about:
894
895------------
ba17892d 896$ git merge -m "Merge work in mybranch" mybranch
927a503c
BF
897------------
898
899where the first argument is going to be used as the commit message if
900the merge can be resolved automatically.
901
902Now, in this case we've intentionally created a situation where the
2de9b711 903merge will need to be fixed up by hand, though, so Git will do as much
927a503c
BF
904of it as it can automatically (which in this case is just merge the `example`
905file, which had no differences in the `mybranch` branch), and say:
906
907----------------
a6080a0a
JH
908 Auto-merging hello
909 CONFLICT (content): Merge conflict in hello
ec9f0ea3 910 Automatic merge failed; fix conflicts and then commit the result.
927a503c
BF
911----------------
912
5fe3acc4
JH
913It tells you that it did an "Automatic merge", which
914failed due to conflicts in `hello`.
927a503c
BF
915
916Not to worry. It left the (trivial) conflict in `hello` in the same form you
917should already be well used to if you've ever used CVS, so let's just
918open `hello` in our editor (whatever that may be), and fix it up somehow.
919I'd suggest just making it so that `hello` contains all four lines:
920
921------------
922Hello World
923It's a new day for git
924Play, play, play
925Work, work, work
926------------
927
928and once you're happy with your manual merge, just do a
929
930------------
130fcca6 931$ git commit -i hello
927a503c
BF
932------------
933
934which will very loudly warn you that you're now committing a merge
935(which is correct, so never mind), and you can write a small merge
0b444cdb 936message about your adventures in 'git merge'-land.
927a503c 937
6cf378f0 938After you're done, start up `gitk --all` to see graphically what the
927a503c
BF
939history looks like. Notice that `mybranch` still exists, and you can
940switch to it, and continue to work with it if you want to. The
941`mybranch` branch will not contain the merge, but next time you merge it
2de9b711 942from the `master` branch, Git will know how you merged it, so you'll not
927a503c
BF
943have to do _that_ merge again.
944
945Another useful tool, especially if you do not always work in X-Window
946environment, is `git show-branch`.
947
948------------------------------------------------
b1889c36 949$ git show-branch --topo-order --more=1 master mybranch
927a503c
BF
950* [master] Merge work in mybranch
951 ! [mybranch] Some work.
952--
953- [master] Merge work in mybranch
954*+ [mybranch] Some work.
2782c935 955* [master^] Some fun.
927a503c
BF
956------------------------------------------------
957
958The first two lines indicate that it is showing the two branches
52ffe995
JW
959with the titles of their top-of-the-tree commits, you are currently on
960`master` branch (notice the asterisk `*` character), and the first
961column for the later output lines is used to show commits contained in the
927a503c 962`master` branch, and the second column for the `mybranch`
52ffe995 963branch. Three commits are shown along with their titles.
6cf378f0 964All of them have non blank characters in the first column (`*`
3b27428b 965shows an ordinary commit on the current branch, `-` is a merge commit), which
927a503c
BF
966means they are now part of the `master` branch. Only the "Some
967work" commit has the plus `+` character in the second column,
968because `mybranch` has not been merged to incorporate these
969commits from the master branch. The string inside brackets
970before the commit log message is a short name you can use to
971name the commit. In the above example, 'master' and 'mybranch'
2782c935 972are branch heads. 'master^' is the first parent of 'master'
9d83e382 973branch head. Please see linkgit:gitrevisions[7] if you want to
927a503c
BF
974see more complex cases.
975
2782c935 976[NOTE]
0b444cdb 977Without the '--more=1' option, 'git show-branch' would not output the
2782c935 978'[master^]' commit, as '[mybranch]' commit is a common ancestor of
483bc4f0
JN
979both 'master' and 'mybranch' tips. Please see linkgit:git-show-branch[1]
980for details.
2782c935
SO
981
982[NOTE]
983If there were more commits on the 'master' branch after the merge, the
0b444cdb 984merge commit itself would not be shown by 'git show-branch' by
2782c935
SO
985default. You would need to provide '--sparse' option to make the
986merge commit visible in this case.
987
927a503c
BF
988Now, let's pretend you are the one who did all the work in
989`mybranch`, and the fruit of your hard work has finally been merged
990to the `master` branch. Let's go back to `mybranch`, and run
0b444cdb 991'git merge' to get the "upstream changes" back to your branch.
927a503c
BF
992
993------------
994$ git checkout mybranch
ba17892d 995$ git merge -m "Merge upstream changes." master
927a503c
BF
996------------
997
998This outputs something like this (the actual commit object names
999would be different)
1000
1001----------------
1002Updating from ae3a2da... to a80b4aa....
a75d7b54 1003Fast-forward (no commit created; -m option ignored)
dc801e71
ZJS
1004 example | 1 +
1005 hello | 1 +
7f814632 1006 2 files changed, 2 insertions(+)
927a503c
BF
1007----------------
1008
04c8ce9c
MH
1009Because your branch did not contain anything more than what had
1010already been merged into the `master` branch, the merge operation did
927a503c
BF
1011not actually do a merge. Instead, it just updated the top of
1012the tree of your branch to that of the `master` branch. This is
a75d7b54 1013often called 'fast-forward' merge.
927a503c 1014
6cf378f0 1015You can run `gitk --all` again to see how the commit ancestry
5833d730 1016looks like, or run 'show-branch', which tells you this.
927a503c
BF
1017
1018------------------------------------------------
1019$ git show-branch master mybranch
1020! [master] Merge work in mybranch
1021 * [mybranch] Merge work in mybranch
1022--
1023-- [master] Merge work in mybranch
1024------------------------------------------------
1025
1026
1027Merging external work
1028---------------------
1029
1030It's usually much more common that you merge with somebody else than
2de9b711 1031merging with your own branches, so it's worth pointing out that Git
927a503c 1032makes that very easy too, and in fact, it's not that different from
0b444cdb 1033doing a 'git merge'. In fact, a remote merge ends up being nothing
927a503c 1034more than "fetch the work from a remote repository into a temporary tag"
0b444cdb 1035followed by a 'git merge'.
927a503c
BF
1036
1037Fetching from a remote repository is done by, unsurprisingly,
0b444cdb 1038'git fetch':
927a503c
BF
1039
1040----------------
1041$ git fetch <remote-repository>
1042----------------
1043
1044One of the following transports can be used to name the
1045repository to download from:
1046
1047Rsync::
1048 `rsync://remote.machine/path/to/repo.git/`
1049+
1050Rsync transport is usable for both uploading and downloading,
1051but is completely unaware of what git does, and can produce
1052unexpected results when you download from the public repository
1053while the repository owner is uploading into it via `rsync`
1054transport. Most notably, it could update the files under
1055`refs/` which holds the object name of the topmost commits
1056before uploading the files in `objects/` -- the downloader would
1057obtain head commit object name while that object itself is still
1058not available in the repository. For this reason, it is
1059considered deprecated.
1060
1061SSH::
1062 `remote.machine:/path/to/repo.git/` or
1063+
1064`ssh://remote.machine/path/to/repo.git/`
1065+
1066This transport can be used for both uploading and downloading,
1067and requires you to have a log-in privilege over `ssh` to the
1068remote machine. It finds out the set of objects the other side
1069lacks by exchanging the head commits both ends have and
1070transfers (close to) minimum set of objects. It is by far the
2de9b711 1071most efficient way to exchange Git objects between repositories.
927a503c
BF
1072
1073Local directory::
1074 `/path/to/repo.git/`
1075+
2fd02c92 1076This transport is the same as SSH transport but uses 'sh' to run
927a503c 1077both ends on the local machine instead of running other end on
2fd02c92 1078the remote machine via 'ssh'.
927a503c 1079
2de9b711 1080Git Native::
927a503c
BF
1081 `git://remote.machine/path/to/repo.git/`
1082+
1083This transport was designed for anonymous downloading. Like SSH
1084transport, it finds out the set of objects the downstream side
1085lacks and transfers (close to) minimum set of objects.
1086
1087HTTP(S)::
1088 `http://remote.machine/path/to/repo.git/`
1089+
1090Downloader from http and https URL
1091first obtains the topmost commit object name from the remote site
1092by looking at the specified refname under `repo.git/refs/` directory,
1093and then tries to obtain the
70676e69 1094commit object by downloading from `repo.git/objects/xx/xxx...`
927a503c
BF
1095using the object name of that commit object. Then it reads the
1096commit object to find out its parent commits and the associate
1097tree object; it repeats this process until it gets all the
abda1ef5 1098necessary objects. Because of this behavior, they are
927a503c
BF
1099sometimes also called 'commit walkers'.
1100+
1101The 'commit walkers' are sometimes also called 'dumb
2de9b711
TA
1102transports', because they do not require any Git aware smart
1103server like Git Native transport does. Any stock HTTP server
927a503c 1104that does not even support directory index would suffice. But
0b444cdb 1105you must prepare your repository with 'git update-server-info'
927a503c 1106to help dumb transport downloaders.
927a503c 1107
207dfa07 1108Once you fetch from the remote repository, you `merge` that
927a503c
BF
1109with your current branch.
1110
1111However -- it's such a common thing to `fetch` and then
207dfa07 1112immediately `merge`, that it's called `git pull`, and you can
927a503c
BF
1113simply do
1114
1115----------------
1116$ git pull <remote-repository>
1117----------------
1118
1119and optionally give a branch-name for the remote end as a second
1120argument.
1121
1122[NOTE]
1123You could do without using any branches at all, by
1124keeping as many local repositories as you would like to have
0b444cdb 1125branches, and merging between them with 'git pull', just like
927a503c 1126you merge between branches. The advantage of this approach is
aacd404e 1127that it lets you keep a set of files for each `branch` checked
927a503c
BF
1128out and you may find it easier to switch back and forth if you
1129juggle multiple lines of development simultaneously. Of
1130course, you will pay the price of more disk usage to hold
1131multiple working trees, but disk space is cheap these days.
1132
927a503c
BF
1133It is likely that you will be pulling from the same remote
1134repository from time to time. As a short hand, you can store
c14261ea
NP
1135the remote repository URL in the local repository's config file
1136like this:
927a503c
BF
1137
1138------------------------------------------------
e0d10e1c 1139$ git config remote.linus.url http://www.kernel.org/pub/scm/git/git.git/
927a503c
BF
1140------------------------------------------------
1141
0b444cdb 1142and use the "linus" keyword with 'git pull' instead of the full URL.
927a503c
BF
1143
1144Examples.
1145
1146. `git pull linus`
1147. `git pull linus tag v0.99.1`
927a503c
BF
1148
1149the above are equivalent to:
1150
1151. `git pull http://www.kernel.org/pub/scm/git/git.git/ HEAD`
1152. `git pull http://www.kernel.org/pub/scm/git/git.git/ tag v0.99.1`
927a503c
BF
1153
1154
1155How does the merge work?
1156------------------------
1157
1158We said this tutorial shows what plumbing does to help you cope
1159with the porcelain that isn't flushing, but we so far did not
1160talk about how the merge really works. If you are following
1161this tutorial the first time, I'd suggest to skip to "Publishing
1162your work" section and come back here later.
1163
1164OK, still with me? To give us an example to look at, let's go
1165back to the earlier repository with "hello" and "example" file,
1166and bring ourselves back to the pre-merge state:
1167
1168------------
065c5ac1 1169$ git show-branch --more=2 master mybranch
927a503c
BF
1170! [master] Merge work in mybranch
1171 * [mybranch] Merge work in mybranch
1172--
1173-- [master] Merge work in mybranch
1174+* [master^2] Some work.
1175+* [master^] Some fun.
1176------------
1177
0b444cdb 1178Remember, before running 'git merge', our `master` head was at
927a503c
BF
1179"Some fun." commit, while our `mybranch` head was at "Some
1180work." commit.
1181
1182------------
1183$ git checkout mybranch
1184$ git reset --hard master^2
1185$ git checkout master
1186$ git reset --hard master^
1187------------
1188
1189After rewinding, the commit structure should look like this:
1190
1191------------
1192$ git show-branch
1193* [master] Some fun.
1194 ! [mybranch] Some work.
1195--
927a503c 1196* [master] Some fun.
5d166ccb
NS
1197 + [mybranch] Some work.
1198*+ [master^] Initial commit
927a503c
BF
1199------------
1200
1201Now we are ready to experiment with the merge by hand.
1202
1203`git merge` command, when merging two branches, uses 3-way merge
1204algorithm. First, it finds the common ancestor between them.
0b444cdb 1205The command it uses is 'git merge-base':
927a503c
BF
1206
1207------------
b1889c36 1208$ mb=$(git merge-base HEAD mybranch)
927a503c
BF
1209------------
1210
1211The command writes the commit object name of the common ancestor
1212to the standard output, so we captured its output to a variable,
3b27428b 1213because we will be using it in the next step. By the way, the common
7c5858a6 1214ancestor commit is the "Initial commit" commit in this case. You can
927a503c
BF
1215tell it by:
1216
1217------------
7c5858a6 1218$ git name-rev --name-only --tags $mb
927a503c
BF
1219my-first-tag
1220------------
1221
1222After finding out a common ancestor commit, the second step is
1223this:
1224
1225------------
b1889c36 1226$ git read-tree -m -u $mb HEAD mybranch
927a503c
BF
1227------------
1228
0b444cdb 1229This is the same 'git read-tree' command we have already seen,
927a503c
BF
1230but it takes three trees, unlike previous examples. This reads
1231the contents of each tree into different 'stage' in the index
065c5ac1 1232file (the first tree goes to stage 1, the second to stage 2,
927a503c
BF
1233etc.). After reading three trees into three stages, the paths
1234that are the same in all three stages are 'collapsed' into stage
12350. Also paths that are the same in two of three stages are
d5fa1f1a 1236collapsed into stage 0, taking the SHA-1 from either stage 2 or
927a503c
BF
1237stage 3, whichever is different from stage 1 (i.e. only one side
1238changed from the common ancestor).
1239
1240After 'collapsing' operation, paths that are different in three
1241trees are left in non-zero stages. At this point, you can
1242inspect the index file with this command:
1243
1244------------
b1889c36 1245$ git ls-files --stage
927a503c 1246100644 7f8b141b65fdcee47321e399a2598a235a032422 0 example
7c5858a6
SB
1247100644 557db03de997c86a4a028e1ebd3a1ceb225be238 1 hello
1248100644 ba42a2a96e3027f3333e13ede4ccf4498c3ae942 2 hello
927a503c
BF
1249100644 cc44c73eb783565da5831b4d820c962954019b69 3 hello
1250------------
1251
1252In our example of only two files, we did not have unchanged
323b9db8
JL
1253files so only 'example' resulted in collapsing. But in real-life
1254large projects, when only a small number of files change in one commit,
1255this 'collapsing' tends to trivially merge most of the paths
1256fairly quickly, leaving only a handful of real changes in non-zero
927a503c
BF
1257stages.
1258
6cf378f0 1259To look at only non-zero stages, use `--unmerged` flag:
927a503c
BF
1260
1261------------
b1889c36 1262$ git ls-files --unmerged
7c5858a6
SB
1263100644 557db03de997c86a4a028e1ebd3a1ceb225be238 1 hello
1264100644 ba42a2a96e3027f3333e13ede4ccf4498c3ae942 2 hello
927a503c
BF
1265100644 cc44c73eb783565da5831b4d820c962954019b69 3 hello
1266------------
1267
1268The next step of merging is to merge these three versions of the
1269file, using 3-way merge. This is done by giving
0b444cdb
TR
1270'git merge-one-file' command as one of the arguments to
1271'git merge-index' command:
927a503c
BF
1272
1273------------
b1889c36 1274$ git merge-index git-merge-one-file hello
ec9f0ea3
MH
1275Auto-merging hello
1276ERROR: Merge conflict in hello
927a503c
BF
1277fatal: merge program failed
1278------------
1279
0b444cdb 1280'git merge-one-file' script is called with parameters to
927a503c
BF
1281describe those three versions, and is responsible to leave the
1282merge results in the working tree.
1283It is a fairly straightforward shell script, and
2fd02c92
JN
1284eventually calls 'merge' program from RCS suite to perform a
1285file-level 3-way merge. In this case, 'merge' detects
927a503c
BF
1286conflicts, and the merge result with conflict marks is left in
1287the working tree.. This can be seen if you run `ls-files
1288--stage` again at this point:
1289
1290------------
b1889c36 1291$ git ls-files --stage
927a503c 1292100644 7f8b141b65fdcee47321e399a2598a235a032422 0 example
7c5858a6
SB
1293100644 557db03de997c86a4a028e1ebd3a1ceb225be238 1 hello
1294100644 ba42a2a96e3027f3333e13ede4ccf4498c3ae942 2 hello
927a503c
BF
1295100644 cc44c73eb783565da5831b4d820c962954019b69 3 hello
1296------------
1297
1298This is the state of the index file and the working file after
0b444cdb 1299'git merge' returns control back to you, leaving the conflicting
927a503c 1300merge for you to resolve. Notice that the path `hello` is still
0b444cdb 1301unmerged, and what you see with 'git diff' at this point is
927a503c
BF
1302differences since stage 2 (i.e. your version).
1303
1304
1305Publishing your work
1306--------------------
1307
aacd404e 1308So, we can use somebody else's work from a remote repository, but
927a503c
BF
1309how can *you* prepare a repository to let other people pull from
1310it?
1311
79dbbedd 1312You do your real work in your working tree that has your
927a503c
BF
1313primary repository hanging under it as its `.git` subdirectory.
1314You *could* make that repository accessible remotely and ask
1315people to pull from it, but in practice that is not the way
1316things are usually done. A recommended way is to have a public
1317repository, make it reachable by other people, and when the
1318changes you made in your primary working tree are in good shape,
1319update the public repository from it. This is often called
1320'pushing'.
1321
1322[NOTE]
1323This public repository could further be mirrored, and that is
2de9b711 1324how Git repositories at `kernel.org` are managed.
927a503c
BF
1325
1326Publishing the changes from your local (private) repository to
1327your remote (public) repository requires a write privilege on
1328the remote machine. You need to have an SSH account there to
ba020ef5 1329run a single command, 'git-receive-pack'.
927a503c
BF
1330
1331First, you need to create an empty repository on the remote
1332machine that will house your public repository. This empty
1333repository will be populated and be kept up-to-date by pushing
1334into it later. Obviously, this repository creation needs to be
1335done only once.
1336
1337[NOTE]
0b444cdb
TR
1338'git push' uses a pair of commands,
1339'git send-pack' on your local machine, and 'git-receive-pack'
927a503c
BF
1340on the remote machine. The communication between the two over
1341the network internally uses an SSH connection.
1342
2de9b711 1343Your private repository's Git directory is usually `.git`, but
927a503c
BF
1344your public repository is often named after the project name,
1345i.e. `<project>.git`. Let's create such a public repository for
1346project `my-git`. After logging into the remote machine, create
1347an empty directory:
1348
1349------------
1350$ mkdir my-git.git
1351------------
1352
2de9b711 1353Then, make that directory into a Git repository by running
0b444cdb 1354'git init', but this time, since its name is not the usual
927a503c
BF
1355`.git`, we do things slightly differently:
1356
1357------------
b1889c36 1358$ GIT_DIR=my-git.git git init
927a503c
BF
1359------------
1360
1361Make sure this directory is available for others you want your
04c8ce9c 1362changes to be pulled via the transport of your choice. Also
ba020ef5 1363you need to make sure that you have the 'git-receive-pack'
927a503c
BF
1364program on the `$PATH`.
1365
1366[NOTE]
1367Many installations of sshd do not invoke your shell as the login
1368shell when you directly run programs; what this means is that if
2fd02c92 1369your login shell is 'bash', only `.bashrc` is read and not
927a503c 1370`.bash_profile`. As a workaround, make sure `.bashrc` sets up
ba020ef5 1371`$PATH` so that you can run 'git-receive-pack' program.
927a503c
BF
1372
1373[NOTE]
1374If you plan to publish this repository to be accessed over http,
7dce9918
PB
1375you should do `mv my-git.git/hooks/post-update.sample
1376my-git.git/hooks/post-update` at this point.
1377This makes sure that every time you push into this
b1889c36 1378repository, `git update-server-info` is run.
927a503c
BF
1379
1380Your "public repository" is now ready to accept your changes.
1381Come back to the machine you have your private repository. From
1382there, run this command:
1383
1384------------
1385$ git push <public-host>:/path/to/my-git.git master
1386------------
1387
1388This synchronizes your public repository to match the named
1389branch head (i.e. `master` in this case) and objects reachable
1390from them in your current repository.
1391
2de9b711 1392As a real example, this is how I update my public Git
927a503c
BF
1393repository. Kernel.org mirror network takes care of the
1394propagation to other publicly visible machines:
1395
1396------------
a6080a0a 1397$ git push master.kernel.org:/pub/scm/git/git.git/
927a503c
BF
1398------------
1399
1400
1401Packing your repository
1402-----------------------
1403
1404Earlier, we saw that one file under `.git/objects/??/` directory
2de9b711 1405is stored for each Git object you create. This representation
927a503c 1406is efficient to create atomically and safely, but
2de9b711 1407not so convenient to transport over the network. Since Git objects are
927a503c
BF
1408immutable once they are created, there is a way to optimize the
1409storage by "packing them together". The command
1410
1411------------
1412$ git repack
1413------------
1414
1415will do it for you. If you followed the tutorial examples, you
1416would have accumulated about 17 objects in `.git/objects/??/`
0b444cdb 1417directories by now. 'git repack' tells you how many objects it
927a503c
BF
1418packed, and stores the packed file in `.git/objects/pack`
1419directory.
1420
1421[NOTE]
6cf378f0 1422You will see two files, `pack-*.pack` and `pack-*.idx`,
927a503c
BF
1423in `.git/objects/pack` directory. They are closely related to
1424each other, and if you ever copy them by hand to a different
1425repository for whatever reason, you should make sure you copy
1426them together. The former holds all the data from the objects
1427in the pack, and the latter holds the index for random
1428access.
1429
0b444cdb 1430If you are paranoid, running 'git verify-pack' command would
927a503c
BF
1431detect if you have a corrupt pack, but do not worry too much.
1432Our programs are always perfect ;-).
1433
1434Once you have packed objects, you do not need to leave the
1435unpacked objects that are contained in the pack file anymore.
1436
1437------------
1438$ git prune-packed
1439------------
1440
1441would remove them for you.
1442
1443You can try running `find .git/objects -type f` before and after
1444you run `git prune-packed` if you are curious. Also `git
1445count-objects` would tell you how many unpacked objects are in
1446your repository and how much space they are consuming.
1447
1448[NOTE]
1449`git pull` is slightly cumbersome for HTTP transport, as a
1450packed repository may contain relatively few objects in a
1451relatively large pack. If you expect many HTTP pulls from your
1452public repository you might want to repack & prune often, or
1453never.
1454
1455If you run `git repack` again at this point, it will say
ec9f0ea3 1456"Nothing new to pack.". Once you continue your development and
927a503c
BF
1457accumulate the changes, running `git repack` again will create a
1458new pack, that contains objects created since you packed your
1459repository the last time. We recommend that you pack your project
1460soon after the initial import (unless you are starting your
1461project from scratch), and then run `git repack` every once in a
1462while, depending on how active your project is.
1463
1464When a repository is synchronized via `git push` and `git pull`
1465objects packed in the source repository are usually stored
1466unpacked in the destination, unless rsync transport is used.
1467While this allows you to use different packing strategies on
1468both ends, it also means you may need to repack both
1469repositories every once in a while.
1470
1471
1472Working with Others
1473-------------------
1474
2de9b711 1475Although Git is a truly distributed system, it is often
927a503c
BF
1476convenient to organize your project with an informal hierarchy
1477of developers. Linux kernel development is run this way. There
505739f6 1478is a nice illustration (page 17, "Merges to Mainline") in
3b27428b 1479link:http://www.xenotime.net/linux/mentor/linux-mentoring-2006.pdf[Randy Dunlap's presentation].
927a503c
BF
1480
1481It should be stressed that this hierarchy is purely *informal*.
2de9b711 1482There is nothing fundamental in Git that enforces the "chain of
927a503c
BF
1483patch flow" this hierarchy implies. You do not have to pull
1484from only one remote repository.
1485
1486A recommended workflow for a "project lead" goes like this:
1487
14881. Prepare your primary repository on your local machine. Your
1489 work is done there.
1490
14912. Prepare a public repository accessible to others.
1492+
1493If other people are pulling from your repository over dumb
1494transport protocols (HTTP), you need to keep this repository
5c94f87e 1495'dumb transport friendly'. After `git init`,
7dce9918 1496`$GIT_DIR/hooks/post-update.sample` copied from the standard templates
0b444cdb 1497would contain a call to 'git update-server-info'
7dce9918
PB
1498but you need to manually enable the hook with
1499`mv post-update.sample post-update`. This makes sure
0b444cdb 1500'git update-server-info' keeps the necessary files up-to-date.
927a503c
BF
1501
15023. Push into the public repository from your primary
1503 repository.
1504
0b444cdb 15054. 'git repack' the public repository. This establishes a big
927a503c 1506 pack that contains the initial set of objects as the
0b444cdb 1507 baseline, and possibly 'git prune' if the transport
927a503c
BF
1508 used for pulling from your repository supports packed
1509 repositories.
1510
15115. Keep working in your primary repository. Your changes
1512 include modifications of your own, patches you receive via
1513 e-mails, and merges resulting from pulling the "public"
1514 repositories of your "subsystem maintainers".
1515+
1516You can repack this private repository whenever you feel like.
1517
15186. Push your changes to the public repository, and announce it
1519 to the public.
1520
0b444cdb 15217. Every once in a while, 'git repack' the public repository.
927a503c
BF
1522 Go back to step 5. and continue working.
1523
1524
1525A recommended work cycle for a "subsystem maintainer" who works
1526on that project and has an own "public repository" goes like this:
1527
0b444cdb 15281. Prepare your work repository, by 'git clone' the public
927a503c 1529 repository of the "project lead". The URL used for the
c14261ea
NP
1530 initial cloning is stored in the remote.origin.url
1531 configuration variable.
927a503c
BF
1532
15332. Prepare a public repository accessible to others, just like
1534 the "project lead" person does.
1535
15363. Copy over the packed files from "project lead" public
1537 repository to your public repository, unless the "project
1538 lead" repository lives on the same machine as yours. In the
1539 latter case, you can use `objects/info/alternates` file to
1540 point at the repository you are borrowing from.
1541
15424. Push into the public repository from your primary
0b444cdb 1543 repository. Run 'git repack', and possibly 'git prune' if the
927a503c
BF
1544 transport used for pulling from your repository supports
1545 packed repositories.
1546
15475. Keep working in your primary repository. Your changes
1548 include modifications of your own, patches you receive via
1549 e-mails, and merges resulting from pulling the "public"
1550 repositories of your "project lead" and possibly your
1551 "sub-subsystem maintainers".
1552+
1553You can repack this private repository whenever you feel
1554like.
1555
15566. Push your changes to your public repository, and ask your
1557 "project lead" and possibly your "sub-subsystem
1558 maintainers" to pull from it.
1559
0b444cdb 15607. Every once in a while, 'git repack' the public repository.
927a503c
BF
1561 Go back to step 5. and continue working.
1562
1563
1564A recommended work cycle for an "individual developer" who does
1565not have a "public" repository is somewhat different. It goes
1566like this:
1567
0b444cdb 15681. Prepare your work repository, by 'git clone' the public
927a503c
BF
1569 repository of the "project lead" (or a "subsystem
1570 maintainer", if you work on a subsystem). The URL used for
c14261ea
NP
1571 the initial cloning is stored in the remote.origin.url
1572 configuration variable.
927a503c
BF
1573
15742. Do your work in your repository on 'master' branch.
1575
15763. Run `git fetch origin` from the public repository of your
1577 upstream every once in a while. This does only the first
1578 half of `git pull` but does not merge. The head of the
c14261ea 1579 public repository is stored in `.git/refs/remotes/origin/master`.
927a503c
BF
1580
15814. Use `git cherry origin` to see which ones of your patches
1582 were accepted, and/or use `git rebase origin` to port your
1583 unmerged changes forward to the updated upstream.
1584
15855. Use `git format-patch origin` to prepare patches for e-mail
1586 submission to your upstream and send it out. Go back to
1587 step 2. and continue.
1588
1589
1590Working with Others, Shared Repository Style
1591--------------------------------------------
1592
1593If you are coming from CVS background, the style of cooperation
1594suggested in the previous section may be new to you. You do not
2de9b711 1595have to worry. Git supports "shared public repository" style of
927a503c
BF
1596cooperation you are probably more familiar with as well.
1597
6998e4db 1598See linkgit:gitcvs-migration[7] for the details.
927a503c
BF
1599
1600Bundling your work together
1601---------------------------
1602
1603It is likely that you will be working on more than one thing at
1604a time. It is easy to manage those more-or-less independent tasks
2de9b711 1605using branches with Git.
927a503c
BF
1606
1607We have already seen how branches work previously,
1608with "fun and work" example using two branches. The idea is the
1609same if there are more than two branches. Let's say you started
1610out from "master" head, and have some new code in the "master"
1611branch, and two independent fixes in the "commit-fix" and
1612"diff-fix" branches:
1613
1614------------
1615$ git show-branch
1616! [commit-fix] Fix commit message normalization.
1617 ! [diff-fix] Fix rename detection.
1618 * [master] Release candidate #1
1619---
1620 + [diff-fix] Fix rename detection.
1621 + [diff-fix~1] Better common substring algorithm.
1622+ [commit-fix] Fix commit message normalization.
1623 * [master] Release candidate #1
1624++* [diff-fix~2] Pretty-print messages.
1625------------
1626
1627Both fixes are tested well, and at this point, you want to merge
1628in both of them. You could merge in 'diff-fix' first and then
1629'commit-fix' next, like this:
1630
1631------------
d336fc09
SO
1632$ git merge -m "Merge fix in diff-fix" diff-fix
1633$ git merge -m "Merge fix in commit-fix" commit-fix
927a503c
BF
1634------------
1635
1636Which would result in:
1637
1638------------
1639$ git show-branch
1640! [commit-fix] Fix commit message normalization.
1641 ! [diff-fix] Fix rename detection.
1642 * [master] Merge fix in commit-fix
1643---
1644 - [master] Merge fix in commit-fix
1645+ * [commit-fix] Fix commit message normalization.
1646 - [master~1] Merge fix in diff-fix
1647 +* [diff-fix] Fix rename detection.
1648 +* [diff-fix~1] Better common substring algorithm.
1649 * [master~2] Release candidate #1
1650++* [master~3] Pretty-print messages.
1651------------
1652
1653However, there is no particular reason to merge in one branch
1654first and the other next, when what you have are a set of truly
1655independent changes (if the order mattered, then they are not
1656independent by definition). You could instead merge those two
1657branches into the current branch at once. First let's undo what
1658we just did and start over. We would want to get the master
1659branch before these two merges by resetting it to 'master~2':
1660
1661------------
1662$ git reset --hard master~2
1663------------
1664
db5d6666 1665You can make sure `git show-branch` matches the state before
0b444cdb
TR
1666those two 'git merge' you just did. Then, instead of running
1667two 'git merge' commands in a row, you would merge these two
927a503c
BF
1668branch heads (this is known as 'making an Octopus'):
1669
1670------------
c14261ea 1671$ git merge commit-fix diff-fix
927a503c
BF
1672$ git show-branch
1673! [commit-fix] Fix commit message normalization.
1674 ! [diff-fix] Fix rename detection.
1675 * [master] Octopus merge of branches 'diff-fix' and 'commit-fix'
1676---
1677 - [master] Octopus merge of branches 'diff-fix' and 'commit-fix'
1678+ * [commit-fix] Fix commit message normalization.
1679 +* [diff-fix] Fix rename detection.
1680 +* [diff-fix~1] Better common substring algorithm.
1681 * [master~1] Release candidate #1
1682++* [master~2] Pretty-print messages.
1683------------
1684
1685Note that you should not do Octopus because you can. An octopus
1686is a valid thing to do and often makes it easier to view the
c14261ea 1687commit history if you are merging more than two independent
927a503c
BF
1688changes at the same time. However, if you have merge conflicts
1689with any of the branches you are merging in and need to hand
1690resolve, that is an indication that the development happened in
1691those branches were not independent after all, and you should
1692merge two at a time, documenting how you resolved the conflicts,
1693and the reason why you preferred changes made in one side over
1694the other. Otherwise it would make the project history harder
1695to follow, not easier.
497c8331
CC
1696
1697SEE ALSO
1698--------
de07767f
CC
1699linkgit:gittutorial[7],
1700linkgit:gittutorial-2[7],
1701linkgit:gitcvs-migration[7],
6e702c24 1702linkgit:git-help[1],
de07767f 1703link:everyday.html[Everyday git],
497c8331
CC
1704link:user-manual.html[The Git User's Manual]
1705
1706GIT
1707---
9e1f0a85 1708Part of the linkgit:git[1] suite.