Merge refs/heads/master from paulus
[git.git] / Documentation / tutorial.txt
1 A short git tutorial
2 ====================
3 v0.99.5, Aug 2005
4
5 Introduction
6 ------------
7
8 This is trying to be a short tutorial on setting up and using a git
9 repository, mainly because being hands-on and using explicit examples is
10 often the best way of explaining what is going on.
11
12 In normal life, most people wouldn't use the "core" git programs
13 directly, but rather script around them to make them more palatable. 
14 Understanding the core git stuff may help some people get those scripts
15 done, though, and it may also be instructive in helping people
16 understand what it is that the higher-level helper scripts are actually
17 doing. 
18
19 The core git is often called "plumbing", with the prettier user
20 interfaces on top of it called "porcelain". You may not want to use the
21 plumbing directly very often, but it can be good to know what the
22 plumbing does for when the porcelain isn't flushing... 
23
24
25 Creating a git repository
26 -------------------------
27
28 Creating a new git repository couldn't be easier: all git repositories start
29 out empty, and the only thing you need to do is find yourself a
30 subdirectory that you want to use as a working tree - either an empty
31 one for a totally new project, or an existing working tree that you want
32 to import into git. 
33
34 For our first example, we're going to start a totally new repository from
35 scratch, with no pre-existing files, and we'll call it "git-tutorial".
36 To start up, create a subdirectory for it, change into that
37 subdirectory, and initialize the git infrastructure with "git-init-db":
38
39         mkdir git-tutorial
40         cd git-tutorial
41         git-init-db 
42
43 to which git will reply
44
45         defaulting to local storage area
46
47 which is just git's way of saying that you haven't been doing anything
48 strange, and that it will have created a local .git directory setup for
49 your new project. You will now have a ".git" directory, and you can
50 inspect that with "ls". For your new empty project, ls should show you
51 three entries, among other things:
52
53  - a symlink called HEAD, pointing to "refs/heads/master"
54
55    Don't worry about the fact that the file that the HEAD link points to
56    doesn't even exist yet - you haven't created the commit that will
57    start your HEAD development branch yet.
58
59  - a subdirectory called "objects", which will contain all the
60    objects of your project. You should never have any real reason to
61    look at the objects directly, but you might want to know that these
62    objects are what contains all the real _data_ in your repository.
63
64  - a subdirectory called "refs", which contains references to objects.
65
66    In particular, the "refs" subdirectory will contain two other
67    subdirectories, named "heads" and "tags" respectively. They do
68    exactly what their names imply: they contain references to any number
69    of different "heads" of development (aka "branches"), and to any
70    "tags" that you have created to name specific versions in your
71    repository. 
72
73    One note: the special "master" head is the default branch, which is
74    why the .git/HEAD file was created as a symlink to it even if it
75    doesn't yet exist. Basically, the HEAD link is supposed to always
76    point to the branch you are working on right now, and you always
77    start out expecting to work on the "master" branch.
78
79    However, this is only a convention, and you can name your branches
80    anything you want, and don't have to ever even _have_ a "master"
81    branch. A number of the git tools will assume that .git/HEAD is
82    valid, though.
83
84    [ Implementation note: an "object" is identified by its 160-bit SHA1
85    hash, aka "name", and a reference to an object is always the 40-byte
86    hex representation of that SHA1 name. The files in the "refs"
87    subdirectory are expected to contain these hex references (usually
88    with a final '\n' at the end), and you should thus expect to see a
89    number of 41-byte files containing these references in this refs
90    subdirectories when you actually start populating your tree ]
91
92 You have now created your first git repository. Of course, since it's
93 empty, that's not very useful, so let's start populating it with data.
94
95
96 Populating a git repository
97 ---------------------------
98
99 We'll keep this simple and stupid, so we'll start off with populating a
100 few trivial files just to get a feel for it.
101
102 Start off with just creating any random files that you want to maintain
103 in your git repository. We'll start off with a few bad examples, just to
104 get a feel for how this works:
105
106         echo "Hello World" >hello
107         echo "Silly example" >example
108
109 you have now created two files in your working tree (aka "working directory"), but to
110 actually check in your hard work, you will have to go through two steps:
111
112  - fill in the "index" file (aka "cache") with the information about your
113    working tree state.
114
115  - commit that index file as an object.
116
117 The first step is trivial: when you want to tell git about any changes
118 to your working tree, you use the "git-update-cache" program. That
119 program normally just takes a list of filenames you want to update, but
120 to avoid trivial mistakes, it refuses to add new entries to the cache
121 (or remove existing ones) unless you explicitly tell it that you're
122 adding a new entry with the "--add" flag (or removing an entry with the
123 "--remove") flag. 
124
125 So to populate the index with the two files you just created, you can do
126
127         git-update-cache --add hello example
128
129 and you have now told git to track those two files.
130
131 In fact, as you did that, if you now look into your object directory,
132 you'll notice that git will have added two new objects to the object
133 database. If you did exactly the steps above, you should now be able to do
134
135         ls .git/objects/??/*
136
137 and see two files:
138
139         .git/objects/55/7db03de997c86a4a028e1ebd3a1ceb225be238 
140         .git/objects/f2/4c74a2e500f5ee1332c86b94199f52b1d1d962
141
142 which correspond with the objects with names of 557db... and f24c7..
143 respectively.
144
145 If you want to, you can use "git-cat-file" to look at those objects, but
146 you'll have to use the object name, not the filename of the object:
147
148         git-cat-file -t 557db03de997c86a4a028e1ebd3a1ceb225be238
149
150 where the "-t" tells git-cat-file to tell you what the "type" of the
151 object is. Git will tell you that you have a "blob" object (ie just a
152 regular file), and you can see the contents with
153
154         git-cat-file "blob" 557db03
155
156 which will print out "Hello World". The object 557db03 is nothing
157 more than the contents of your file "hello".
158
159 [ Digression: don't confuse that object with the file "hello" itself. The
160   object is literally just those specific _contents_ of the file, and
161   however much you later change the contents in file "hello", the object we
162   just looked at will never change. Objects are immutable. ]
163
164 [ Digression #2: the second example demonstrates that you can
165   abbreviate the object name to only the first several
166   hexadecimal digits in most places. ]
167
168 Anyway, as we mentioned previously, you normally never actually take a
169 look at the objects themselves, and typing long 40-character hex
170 names is not something you'd normally want to do. The above digression
171 was just to show that "git-update-cache" did something magical, and
172 actually saved away the contents of your files into the git object
173 database.
174
175 Updating the cache did something else too: it created a ".git/index"
176 file. This is the index that describes your current working tree, and
177 something you should be very aware of. Again, you normally never worry
178 about the index file itself, but you should be aware of the fact that
179 you have not actually really "checked in" your files into git so far,
180 you've only _told_ git about them.
181
182 However, since git knows about them, you can now start using some of the
183 most basic git commands to manipulate the files or look at their status. 
184
185 In particular, let's not even check in the two files into git yet, we'll
186 start off by adding another line to "hello" first:
187
188         echo "It's a new day for git" >>hello
189
190 and you can now, since you told git about the previous state of "hello", ask
191 git what has changed in the tree compared to your old index, using the
192 "git-diff-files" command:
193
194         git-diff-files 
195
196 Oops. That wasn't very readable. It just spit out its own internal
197 version of a "diff", but that internal version really just tells you
198 that it has noticed that "hello" has been modified, and that the old object
199 contents it had have been replaced with something else.
200
201 To make it readable, we can tell git-diff-files to output the
202 differences as a patch, using the "-p" flag:
203
204         git-diff-files -p
205
206 which will spit out
207
208         diff --git a/hello b/hello
209         --- a/hello
210         +++ b/hello
211         @@ -1 +1,2 @@
212          Hello World
213         +It's a new day for git
214
215 ie the diff of the change we caused by adding another line to "hello".
216
217 In other words, git-diff-files always shows us the difference between
218 what is recorded in the index, and what is currently in the working
219 tree. That's very useful.
220
221 A common shorthand for "git-diff-files -p" is to just write
222
223         git diff
224
225 which will do the same thing. 
226
227
228 Committing git state
229 --------------------
230
231 Now, we want to go to the next stage in git, which is to take the files
232 that git knows about in the index, and commit them as a real tree. We do
233 that in two phases: creating a "tree" object, and committing that "tree"
234 object as a "commit" object together with an explanation of what the
235 tree was all about, along with information of how we came to that state.
236
237 Creating a tree object is trivial, and is done with "git-write-tree". 
238 There are no options or other input: git-write-tree will take the
239 current index state, and write an object that describes that whole
240 index. In other words, we're now tying together all the different
241 filenames with their contents (and their permissions), and we're
242 creating the equivalent of a git "directory" object:
243
244         git-write-tree
245
246 and this will just output the name of the resulting tree, in this case
247 (if you have done exactly as I've described) it should be
248
249         8988da15d077d4829fc51d8544c097def6644dbb
250
251 which is another incomprehensible object name. Again, if you want to,
252 you can use "git-cat-file -t 8988d.." to see that this time the object
253 is not a "blob" object, but a "tree" object (you can also use
254 git-cat-file to actually output the raw object contents, but you'll see
255 mainly a binary mess, so that's less interesting).
256
257 However - normally you'd never use "git-write-tree" on its own, because
258 normally you always commit a tree into a commit object using the
259 "git-commit-tree" command. In fact, it's easier to not actually use
260 git-write-tree on its own at all, but to just pass its result in as an
261 argument to "git-commit-tree".
262
263 "git-commit-tree" normally takes several arguments - it wants to know
264 what the _parent_ of a commit was, but since this is the first commit
265 ever in this new repository, and it has no parents, we only need to pass in
266 the object name of the tree. However, git-commit-tree also wants to get a commit message
267 on its standard input, and it will write out the resulting object name for the
268 commit to its standard output.
269
270 And this is where we start using the .git/HEAD file. The HEAD file is
271 supposed to contain the reference to the top-of-tree, and since that's
272 exactly what git-commit-tree spits out, we can do this all with a simple
273 shell pipeline:
274
275         echo "Initial commit" | git-commit-tree $(git-write-tree) > .git/HEAD
276
277 which will say:
278
279         Committing initial tree 8988da15d077d4829fc51d8544c097def6644dbb
280
281 just to warn you about the fact that it created a totally new commit
282 that is not related to anything else. Normally you do this only _once_
283 for a project ever, and all later commits will be parented on top of an
284 earlier commit, and you'll never see this "Committing initial tree"
285 message ever again.
286
287 Again, normally you'd never actually do this by hand. There is a
288 helpful script called "git commit" that will do all of this for you. So
289 you could have just written
290
291         git commit
292
293 instead, and it would have done the above magic scripting for you.
294
295
296 Making a change
297 ---------------
298
299 Remember how we did the "git-update-cache" on file "hello" and then we
300 changed "hello" afterward, and could compare the new state of "hello" with the
301 state we saved in the index file? 
302
303 Further, remember how I said that "git-write-tree" writes the contents
304 of the _index_ file to the tree, and thus what we just committed was in
305 fact the _original_ contents of the file "hello", not the new ones. We did
306 that on purpose, to show the difference between the index state, and the
307 state in the working tree, and how they don't have to match, even
308 when we commit things.
309
310 As before, if we do "git-diff-files -p" in our git-tutorial project,
311 we'll still see the same difference we saw last time: the index file
312 hasn't changed by the act of committing anything. However, now that we
313 have committed something, we can also learn to use a new command:
314 "git-diff-cache".
315
316 Unlike "git-diff-files", which showed the difference between the index
317 file and the working tree, "git-diff-cache" shows the differences
318 between a committed _tree_ and either the index file or the working
319 tree. In other words, git-diff-cache wants a tree to be diffed
320 against, and before we did the commit, we couldn't do that, because we
321 didn't have anything to diff against. 
322
323 But now we can do 
324
325         git-diff-cache -p HEAD
326
327 (where "-p" has the same meaning as it did in git-diff-files), and it
328 will show us the same difference, but for a totally different reason. 
329 Now we're comparing the working tree not against the index file,
330 but against the tree we just wrote. It just so happens that those two
331 are obviously the same, so we get the same result.
332
333 Again, because this is a common operation, you can also just shorthand
334 it with
335
336         git diff HEAD
337
338 which ends up doing the above for you.
339
340 In other words, "git-diff-cache" normally compares a tree against the
341 working tree, but when given the "--cached" flag, it is told to
342 instead compare against just the index cache contents, and ignore the
343 current working tree state entirely. Since we just wrote the index
344 file to HEAD, doing "git-diff-cache --cached -p HEAD" should thus return
345 an empty set of differences, and that's exactly what it does. 
346
347 [ Digression: "git-diff-cache" really always uses the index for its
348   comparisons, and saying that it compares a tree against the working
349   tree is thus not strictly accurate. In particular, the list of
350   files to compare (the "meta-data") _always_ comes from the index file,
351   regardless of whether the --cached flag is used or not. The --cached
352   flag really only determines whether the file _contents_ to be compared
353   come from the working tree or not.
354
355   This is not hard to understand, as soon as you realize that git simply
356   never knows (or cares) about files that it is not told about
357   explicitly. Git will never go _looking_ for files to compare, it
358   expects you to tell it what the files are, and that's what the index
359   is there for. ]
360
361 However, our next step is to commit the _change_ we did, and again, to
362 understand what's going on, keep in mind the difference between "working
363 tree contents", "index file" and "committed tree". We have changes
364 in the working tree that we want to commit, and we always have to
365 work through the index file, so the first thing we need to do is to
366 update the index cache:
367
368         git-update-cache hello
369
370 (note how we didn't need the "--add" flag this time, since git knew
371 about the file already).
372
373 Note what happens to the different git-diff-xxx versions here. After
374 we've updated "hello" in the index, "git-diff-files -p" now shows no
375 differences, but "git-diff-cache -p HEAD" still _does_ show that the
376 current state is different from the state we committed. In fact, now
377 "git-diff-cache" shows the same difference whether we use the "--cached"
378 flag or not, since now the index is coherent with the working tree.
379
380 Now, since we've updated "hello" in the index, we can commit the new
381 version. We could do it by writing the tree by hand again, and
382 committing the tree (this time we'd have to use the "-p HEAD" flag to
383 tell commit that the HEAD was the _parent_ of the new commit, and that
384 this wasn't an initial commit any more), but you've done that once
385 already, so let's just use the helpful script this time:
386
387         git commit
388
389 which starts an editor for you to write the commit message and tells you
390 a bit about what you have done.
391
392 Write whatever message you want, and all the lines that start with '#'
393 will be pruned out, and the rest will be used as the commit message for
394 the change. If you decide you don't want to commit anything after all at
395 this point (you can continue to edit things and update the cache), you
396 can just leave an empty message. Otherwise git-commit-script will commit
397 the change for you.
398
399 You've now made your first real git commit. And if you're interested in
400 looking at what git-commit-script really does, feel free to investigate:
401 it's a few very simple shell scripts to generate the helpful (?) commit
402 message headers, and a few one-liners that actually do the commit itself.
403
404
405 Checking it out
406 ---------------
407
408 While creating changes is useful, it's even more useful if you can tell
409 later what changed. The most useful command for this is another of the
410 "diff" family, namely "git-diff-tree". 
411
412 git-diff-tree can be given two arbitrary trees, and it will tell you the
413 differences between them. Perhaps even more commonly, though, you can
414 give it just a single commit object, and it will figure out the parent
415 of that commit itself, and show the difference directly. Thus, to get
416 the same diff that we've already seen several times, we can now do
417
418         git-diff-tree -p HEAD
419
420 (again, "-p" means to show the difference as a human-readable patch),
421 and it will show what the last commit (in HEAD) actually changed.
422
423 More interestingly, you can also give git-diff-tree the "-v" flag, which
424 tells it to also show the commit message and author and date of the
425 commit, and you can tell it to show a whole series of diffs.
426 Alternatively, you can tell it to be "silent", and not show the diffs at
427 all, but just show the actual commit message.
428
429 In fact, together with the "git-rev-list" program (which generates a
430 list of revisions), git-diff-tree ends up being a veritable fount of
431 changes. A trivial (but very useful) script called "git-whatchanged" is
432 included with git which does exactly this, and shows a log of recent
433 activities.
434
435 To see the whole history of our pitiful little git-tutorial project, you
436 can do
437
438         git log
439
440 which shows just the log messages, or if we want to see the log together
441 with the associated patches use the more complex (and much more
442 powerful)
443
444         git-whatchanged -p --root
445
446 and you will see exactly what has changed in the repository over its
447 short history. 
448
449 [ Side note: the "--root" flag is a flag to git-diff-tree to tell it to
450   show the initial aka "root" commit too. Normally you'd probably not
451   want to see the initial import diff, but since the tutorial project
452   was started from scratch and is so small, we use it to make the result
453   a bit more interesting. ]
454
455 With that, you should now be having some inkling of what git does, and
456 can explore on your own.
457
458 [ Side note: most likely, you are not directly using the core
459   git Plumbing commands, but using Porcelain like Cogito on top
460   of it. Cogito works a bit differently and you usually do not
461   have to run "git-update-cache" yourself for changed files (you
462   do tell underlying git about additions and removals via
463   "cg-add" and "cg-rm" commands). Just before you make a commit
464   with "cg-commit", Cogito figures out which files you modified,
465   and runs "git-update-cache" on them for you. ]
466
467
468 Tagging a version
469 -----------------
470
471 In git, there are two kinds of tags, a "light" one, and an "annotated tag".
472
473 A "light" tag is technically nothing more than a branch, except we put
474 it in the ".git/refs/tags/" subdirectory instead of calling it a "head".
475 So the simplest form of tag involves nothing more than
476
477         git tag my-first-tag
478
479 which just writes the current HEAD into the .git/refs/tags/my-first-tag
480 file, after which point you can then use this symbolic name for that
481 particular state. You can, for example, do
482
483         git diff my-first-tag
484
485 to diff your current state against that tag (which at this point will
486 obviously be an empty diff, but if you continue to develop and commit
487 stuff, you can use your tag as an "anchor-point" to see what has changed
488 since you tagged it.
489
490 An "annotated tag" is actually a real git object, and contains not only a
491 pointer to the state you want to tag, but also a small tag name and
492 message, along with optionally a PGP signature that says that yes, you really did
493 that tag. You create these signed tags with either the "-a" or "-s" flag to "git tag":
494
495         git tag -s <tagname>
496
497 which will sign the current HEAD (but you can also give it another
498 argument that specifies the thing to tag, ie you could have tagged the
499 current "mybranch" point by using "git tag <tagname> mybranch").
500
501 You normally only do signed tags for major releases or things
502 like that, while the light-weight tags are useful for any marking you
503 want to do - any time you decide that you want to remember a certain
504 point, just create a private tag for it, and you have a nice symbolic
505 name for the state at that point.
506
507
508 Copying repositories
509 --------------------
510
511 Git repositories are normally totally self-sufficient, and it's worth noting
512 that unlike CVS, for example, there is no separate notion of
513 "repository" and "working tree". A git repository normally _is_ the
514 working tree, with the local git information hidden in the ".git"
515 subdirectory. There is nothing else. What you see is what you got.
516
517 [ Side note: you can tell git to split the git internal information from
518   the directory that it tracks, but we'll ignore that for now: it's not
519   how normal projects work, and it's really only meant for special uses.
520   So the mental model of "the git information is always tied directly to
521   the working tree that it describes" may not be technically 100%
522   accurate, but it's a good model for all normal use ]
523
524 This has two implications: 
525
526  - if you grow bored with the tutorial repository you created (or you've
527    made a mistake and want to start all over), you can just do simple
528
529         rm -rf git-tutorial
530
531    and it will be gone. There's no external repository, and there's no
532    history outside the project you created.
533
534  - if you want to move or duplicate a git repository, you can do so. There
535    is "git clone" command, but if all you want to do is just to
536    create a copy of your repository (with all the full history that
537    went along with it), you can do so with a regular
538    "cp -a git-tutorial new-git-tutorial".
539
540    Note that when you've moved or copied a git repository, your git index
541    file (which caches various information, notably some of the "stat"
542    information for the files involved) will likely need to be refreshed.
543    So after you do a "cp -a" to create a new copy, you'll want to do
544
545         git-update-cache --refresh
546
547    in the new repository to make sure that the index file is up-to-date.
548
549 Note that the second point is true even across machines. You can
550 duplicate a remote git repository with _any_ regular copy mechanism, be it
551 "scp", "rsync" or "wget". 
552
553 When copying a remote repository, you'll want to at a minimum update the
554 index cache when you do this, and especially with other peoples'
555 repositories you often want to make sure that the index cache is in some
556 known state (you don't know _what_ they've done and not yet checked in),
557 so usually you'll precede the "git-update-cache" with a
558
559         git-read-tree --reset HEAD
560         git-update-cache --refresh
561
562 which will force a total index re-build from the tree pointed to by HEAD.
563 It resets the index contents to HEAD, and then the git-update-cache
564 makes sure to match up all index entries with the checked-out files.
565 If the original repository had uncommitted changes in its
566 working tree, "git-update-cache --refresh" notices them and
567 tells you they need to be updated.
568
569 The above can also be written as simply
570
571         git reset
572
573 and in fact a lot of the common git command combinations can be scripted
574 with the "git xyz" interfaces, and you can learn things by just looking
575 at what the git-*-script scripts do ("git reset" is the above two lines
576 implemented in "git-reset-script", but some things like "git status" and
577 "git commit" are slightly more complex scripts around the basic git
578 commands). 
579
580 Many (most?) public remote repositories will not contain any of
581 the checked out files or even an index file, and will _only_ contain the
582 actual core git files. Such a repository usually doesn't even have the
583 ".git" subdirectory, but has all the git files directly in the
584 repository. 
585
586 To create your own local live copy of such a "raw" git repository, you'd
587 first create your own subdirectory for the project, and then copy the
588 raw repository contents into the ".git" directory. For example, to
589 create your own copy of the git repository, you'd do the following
590
591         mkdir my-git
592         cd my-git
593         rsync -rL rsync://rsync.kernel.org/pub/scm/git/git.git/ .git
594
595 followed by 
596
597         git-read-tree HEAD
598
599 to populate the index. However, now you have populated the index, and
600 you have all the git internal files, but you will notice that you don't
601 actually have any of the working tree files to work on. To get
602 those, you'd check them out with
603
604         git-checkout-cache -u -a
605
606 where the "-u" flag means that you want the checkout to keep the index
607 up-to-date (so that you don't have to refresh it afterward), and the
608 "-a" flag means "check out all files" (if you have a stale copy or an
609 older version of a checked out tree you may also need to add the "-f"
610 flag first, to tell git-checkout-cache to _force_ overwriting of any old
611 files). 
612
613 Again, this can all be simplified with
614
615         git clone rsync://rsync.kernel.org/pub/scm/git/git.git/ my-git
616         cd my-git
617         git checkout
618
619 which will end up doing all of the above for you.
620
621 You have now successfully copied somebody else's (mine) remote
622 repository, and checked it out. 
623
624
625 Creating a new branch
626 ---------------------
627
628 Branches in git are really nothing more than pointers into the git
629 object database from within the ".git/refs/" subdirectory, and as we
630 already discussed, the HEAD branch is nothing but a symlink to one of
631 these object pointers. 
632
633 You can at any time create a new branch by just picking an arbitrary
634 point in the project history, and just writing the SHA1 name of that
635 object into a file under .git/refs/heads/. You can use any filename you
636 want (and indeed, subdirectories), but the convention is that the
637 "normal" branch is called "master". That's just a convention, though,
638 and nothing enforces it. 
639
640 To show that as an example, let's go back to the git-tutorial repository we
641 used earlier, and create a branch in it. You do that by simply just
642 saying that you want to check out a new branch:
643
644         git checkout -b mybranch
645
646 will create a new branch based at the current HEAD position, and switch
647 to it. 
648
649 [ Side note: if you make the decision to start your new branch at some
650   other point in the history than the current HEAD, you can do so by
651   just telling "git checkout" what the base of the checkout would be. 
652   In other words, if you have an earlier tag or branch, you'd just do
653
654         git checkout -b mybranch earlier-commit
655
656   and it would create the new branch "mybranch" at the earlier commit,
657   and check out the state at that time. ]
658
659 You can always just jump back to your original "master" branch by doing
660
661         git checkout master
662
663 (or any other branch-name, for that matter) and if you forget which
664 branch you happen to be on, a simple
665
666         ls -l .git/HEAD
667
668 will tell you where it's pointing. To get the list of branches
669 you have, you can say
670
671         git branch
672
673 which is nothing more than a simple script around "ls .git/refs/heads".
674 There will be asterisk in front of the branch you are currently on.
675
676 Sometimes you may wish to create a new branch _without_ actually
677 checking it out and switching to it. If so, just use the command
678
679         git branch <branchname> [startingpoint]
680
681 which will simply _create_ the branch, but will not do anything further. 
682 You can then later - once you decide that you want to actually develop
683 on that branch - switch to that branch with a regular "git checkout"
684 with the branchname as the argument.
685
686
687 Merging two branches
688 --------------------
689
690 One of the ideas of having a branch is that you do some (possibly
691 experimental) work in it, and eventually merge it back to the main
692 branch. So assuming you created the above "mybranch" that started out
693 being the same as the original "master" branch, let's make sure we're in
694 that branch, and do some work there.
695
696         git checkout mybranch
697         echo "Work, work, work" >>hello
698         git commit -m 'Some work.' hello
699
700 Here, we just added another line to "hello", and we used a shorthand for
701 both going a "git-update-cache hello" and "git commit" by just giving the
702 filename directly to "git commit". The '-m' flag is to give the
703 commit log message from the command line.
704
705 Now, to make it a bit more interesting, let's assume that somebody else
706 does some work in the original branch, and simulate that by going back
707 to the master branch, and editing the same file differently there:
708
709         git checkout master
710
711 Here, take a moment to look at the contents of "hello", and notice how they
712 don't contain the work we just did in "mybranch" - because that work
713 hasn't happened in the "master" branch at all. Then do
714
715         echo "Play, play, play" >>hello
716         echo "Lots of fun" >>example
717         git commit -m 'Some fun.' hello example
718
719 since the master branch is obviously in a much better mood.
720
721 Now, you've got two branches, and you decide that you want to merge the
722 work done. Before we do that, let's introduce a cool graphical tool that
723 helps you view what's going on:
724
725         gitk --all
726
727 will show you graphically both of your branches (that's what the "--all"
728 means: normally it will just show you your current HEAD) and their
729 histories. You can also see exactly how they came to be from a common
730 source. 
731
732 Anyway, let's exit gitk (^Q or the File menu), and decide that we want
733 to merge the work we did on the "mybranch" branch into the "master"
734 branch (which is currently our HEAD too). To do that, there's a nice
735 script called "git resolve", which wants to know which branches you want
736 to resolve and what the merge is all about:
737
738         git resolve HEAD mybranch "Merge work in mybranch"
739
740 where the third argument is going to be used as the commit message if
741 the merge can be resolved automatically.
742
743 Now, in this case we've intentionally created a situation where the
744 merge will need to be fixed up by hand, though, so git will do as much
745 of it as it can automatically (which in this case is just merge the "example"
746 file, which had no differences in the "mybranch" branch), and say:
747
748         Simple merge failed, trying Automatic merge
749         Auto-merging hello.
750         merge: warning: conflicts during merge
751         ERROR: Merge conflict in hello.
752         fatal: merge program failed
753         Automatic merge failed, fix up by hand
754
755 which is way too verbose, but it basically tells you that it failed the
756 really trivial merge ("Simple merge") and did an "Automatic merge"
757 instead, but that too failed due to conflicts in "hello".
758
759 Not to worry. It left the (trivial) conflict in "hello" in the same form you
760 should already be well used to if you've ever used CVS, so let's just
761 open "hello" in our editor (whatever that may be), and fix it up somehow.
762 I'd suggest just making it so that "hello" contains all four lines:
763
764         Hello World
765         It's a new day for git
766         Play, play, play
767         Work, work, work
768
769 and once you're happy with your manual merge, just do a
770
771         git commit hello
772
773 which will very loudly warn you that you're now committing a merge
774 (which is correct, so never mind), and you can write a small merge
775 message about your adventures in git-merge-land. 
776
777 After you're done, start up "gitk --all" to see graphically what the
778 history looks like. Notice that "mybranch" still exists, and you can
779 switch to it, and continue to work with it if you want to. The
780 "mybranch" branch will not contain the merge, but next time you merge it
781 from the "master" branch, git will know how you merged it, so you'll not
782 have to do _that_ merge again.
783
784 Another useful tool, especially if you do not work in X-Window
785 environment all the time, is "git show-branch".
786
787 ------------------------------------------------
788 $ git show-branch master mybranch
789 * [master] Merged "mybranch" changes.
790  ! [mybranch] Some work.
791 --
792 +  [master] Merged "mybranch" changes.
793 +  [master~1] Some fun.
794 ++ [mybranch] Some work.
795 ------------------------------------------------
796
797 The first two lines indicate that it is showing the two branches
798 and the first line of the commit log message from their
799 top-of-the-tree commits, you are currently on "master" branch
800 (notice the asterisk "*" character), and the first column for
801 the later output lines is used to show commits contained in the
802 "master" branch, and the second column for the "mybranch"
803 branch. Three commits are shown along with their log messages.
804 All of them have plus '+' characters in the first column, which
805 means they are now part of the "master" branch. Only the "Some
806 work" commit has the plus '+' character in the second column,
807 because "mybranch" has not been merged to incorporate these
808 commits from the master branch.
809
810 Now, let's pretend you are the one who did all the work in
811 mybranch, and the fruit of your hard work has finally been merged
812 to the master branch. Let's go back to "mybranch", and run
813 resolve to get the "upstream changes" back to your branch.
814
815         git checkout mybranch
816         git resolve HEAD master "Merge upstream changes."
817
818 This outputs something like this (the actual commit object names
819 would be different)
820
821         Updating from ae3a2da... to a80b4aa....
822          example |    1 +
823          hello   |    1 +
824          2 files changed, 2 insertions(+), 0 deletions(-)
825
826 Because your branch did not contain anything more than what are
827 already merged into the master branch, the resolve operation did
828 not actually do a merge. Instead, it just updated the top of
829 the tree of your branch to that of the "master" branch. This is
830 often called "fast forward" merge.
831
832 You can run "gitk --all" again to see how the commit ancestry
833 looks like, or run "show-branch", which tells you this.
834
835 ------------------------------------------------
836 $ git show-branch master mybranch
837 ! [master] Merged "mybranch" changes.
838  * [mybranch] Merged "mybranch" changes.
839 --
840 ++ [master] Merged "mybranch" changes.
841 ------------------------------------------------
842
843
844 Merging external work
845 ---------------------
846
847 It's usually much more common that you merge with somebody else than
848 merging with your own branches, so it's worth pointing out that git
849 makes that very easy too, and in fact, it's not that different from
850 doing a "git resolve". In fact, a remote merge ends up being nothing
851 more than "fetch the work from a remote repository into a temporary tag"
852 followed by a "git resolve". 
853
854 It's such a common thing to do that it's called "git pull", and you can
855 simply do
856
857         git pull <remote-repository>
858
859 and optionally give a branch-name for the remote end as a second
860 argument.
861
862 The "remote" repository can even be on the same machine. One of
863 the following notations can be used to name the repository to
864 pull from:
865
866         Rsync URL
867                 rsync://remote.machine/path/to/repo.git/
868
869         HTTP(s) URL
870                 http://remote.machine/path/to/repo.git/
871
872         GIT URL
873                 git://remote.machine/path/to/repo.git/
874
875         SSH URL
876                 remote.machine:/path/to/repo.git/
877
878         Local directory
879                 /path/to/repo.git/
880
881 [ Digression: you could do without using any branches at all, by
882   keeping as many local repositories as you would like to have
883   branches, and merging between them with "git pull", just like
884   you merge between branches. The advantage of this approach is
885   that it lets you keep set of files for each "branch" checked
886   out and you may find it easier to switch back and forth if you
887   juggle multiple lines of development simultaneously. Of
888   course, you will pay the price of more disk usage to hold
889   multiple working trees, but disk space is cheap these days. ]
890
891 [ Digression #2: you could even pull from your own repository by
892   giving '.' as <remote-repository> parameter to "git pull". ]
893
894 It is likely that you will be pulling from the same remote
895 repository from time to time. As a short hand, you can store
896 the remote repository URL in a file under .git/remotes/
897 directory, like this:
898
899 ------------------------------------------------
900 mkdir -p .git/remotes/
901 cat >.git/remotes/linus <<\EOF
902 URL: http://www.kernel.org/pub/scm/git/git.git/
903 EOF
904 ------------------------------------------------
905
906 and use the filename to "git pull" instead of the full URL.
907 The URL specified in such file can even be a prefix
908 of a full URL, like this:
909
910 ------------------------------------------------
911 cat >.git/remotes/jgarzik <<\EOF
912 URL: http://www.kernel.org/pub/scm/linux/git/jgarzik/
913 EOF
914 ------------------------------------------------
915
916
917 Examples.
918
919         (1) git pull linus
920         (2) git pull linus tag v0.99.1
921         (3) git pull jgarzik/netdev-2.6.git/ e100
922
923 the above are equivalent to:
924
925         (1) git pull http://www.kernel.org/pub/scm/git/git.git/ HEAD
926         (2) git pull http://www.kernel.org/pub/scm/git/git.git/ tag v0.99.1
927         (3) git pull http://www.kernel.org/pub/.../jgarzik/netdev-2.6.git e100
928
929
930 Publishing your work
931 --------------------
932
933 So we can use somebody else's work from a remote repository; but
934 how can _you_ prepare a repository to let other people pull from
935 it?
936
937 Your do your real work in your working tree that has your
938 primary repository hanging under it as its ".git" subdirectory.
939 You _could_ make that repository accessible remotely and ask
940 people to pull from it, but in practice that is not the way
941 things are usually done. A recommended way is to have a public
942 repository, make it reachable by other people, and when the
943 changes you made in your primary working tree are in good shape,
944 update the public repository from it. This is often called
945 "pushing".
946
947 [ Side note: this public repository could further be mirrored,
948   and that is how kernel.org git repositories are done. ]
949
950 Publishing the changes from your local (private) repository to
951 your remote (public) repository requires a write privilege on
952 the remote machine. You need to have an SSH account there to
953 run a single command, "git-receive-pack".
954
955 First, you need to create an empty repository on the remote
956 machine that will house your public repository. This empty
957 repository will be populated and be kept up-to-date by pushing
958 into it later. Obviously, this repository creation needs to be
959 done only once.
960
961 [ Digression: "git push" uses a pair of programs,
962   "git-send-pack" on your local machine, and "git-receive-pack"
963   on the remote machine. The communication between the two over
964   the network internally uses an SSH connection. ]
965
966 Your private repository's GIT directory is usually .git, but
967 your public repository is often named after the project name,
968 i.e. "<project>.git". Let's create such a public repository for
969 project "my-git". After logging into the remote machine, create
970 an empty directory:
971
972         mkdir my-git.git
973
974 Then, make that directory into a GIT repository by running
975 git-init-db, but this time, since its name is not the usual
976 ".git", we do things slightly differently:
977
978         GIT_DIR=my-git.git git-init-db
979
980 Make sure this directory is available for others you want your
981 changes to be pulled by via the transport of your choice. Also
982 you need to make sure that you have the "git-receive-pack"
983 program on the $PATH.
984
985 [ Side note: many installations of sshd do not invoke your shell
986   as the login shell when you directly run programs; what this
987   means is that if your login shell is bash, only .bashrc is
988   read and not .bash_profile. As a workaround, make sure
989   .bashrc sets up $PATH so that you can run 'git-receive-pack'
990   program. ]
991
992 Your "public repository" is now ready to accept your changes.
993 Come back to the machine you have your private repository. From
994 there, run this command:
995
996         git push <public-host>:/path/to/my-git.git master
997
998 This synchronizes your public repository to match the named
999 branch head (i.e. "master" in this case) and objects reachable
1000 from them in your current repository.
1001
1002 As a real example, this is how I update my public git
1003 repository. Kernel.org mirror network takes care of the
1004 propagation to other publicly visible machines:
1005
1006         git push master.kernel.org:/pub/scm/git/git.git/ 
1007
1008
1009 Packing your repository
1010 -----------------------
1011
1012 Earlier, we saw that one file under .git/objects/??/ directory
1013 is stored for each git object you create. This representation
1014 is convenient and efficient to create atomically and safely, but
1015 not so convenient to transport over the network. Since git objects are
1016 immutable once they are created, there is a way to optimize the
1017 storage by "packing them together". The command
1018
1019         git repack
1020
1021 will do it for you. If you followed the tutorial examples, you
1022 would have accumulated about 17 objects in .git/objects/??/
1023 directories by now. "git repack" tells you how many objects it
1024 packed, and stores the packed file in .git/objects/pack
1025 directory.
1026
1027 [ Side Note: you will see two files, pack-*.pack and pack-*.idx,
1028   in .git/objects/pack directory. They are closely related to
1029   each other, and if you ever copy them by hand to a different
1030   repository for whatever reason, you should make sure you copy
1031   them together. The former holds all the data from the objects
1032   in the pack, and the latter holds the index for random
1033   access. ]
1034
1035 If you are paranoid, running "git-verify-pack" command would
1036 detect if you have a corrupt pack, but do not worry too much.
1037 Our programs are always perfect ;-).
1038
1039 Once you have packed objects, you do not need to leave the
1040 unpacked objects that are contained in the pack file anymore.
1041
1042         git prune-packed
1043
1044 would remove them for you.
1045
1046 You can try running "find .git/objects -type f" before and after
1047 you run "git prune-packed" if you are curious.
1048
1049 [ Side Note: "git pull" is slightly cumbersome for HTTP transport,
1050   as a packed repository may contain relatively few objects in a
1051   relatively large pack. If you expect many HTTP pulls from your
1052   public repository you might want to repack & prune often, or
1053   never. ]
1054
1055 If you run "git repack" again at this point, it will say
1056 "Nothing to pack". Once you continue your development and
1057 accumulate the changes, running "git repack" again will create a
1058 new pack, that contains objects created since you packed your
1059 repository the last time. We recommend that you pack your project
1060 soon after the initial import (unless you are starting your
1061 project from scratch), and then run "git repack" every once in a
1062 while, depending on how active your project is.
1063
1064 When a repository is synchronized via "git push" and "git pull",
1065 objects packed in the source repository are usually stored
1066 unpacked in the destination, unless rsync transport is used.
1067
1068
1069 Working with Others
1070 -------------------
1071
1072 Although git is a truly distributed system, it is often
1073 convenient to organize your project with an informal hierarchy
1074 of developers. Linux kernel development is run this way. There
1075 is a nice illustration (page 17, "Merges to Mainline") in Randy
1076 Dunlap's presentation (http://tinyurl.com/a2jdg).
1077
1078 It should be stressed that this hierarchy is purely "informal".
1079 There is nothing fundamental in git that enforces the "chain of
1080 patch flow" this hierarchy implies. You do not have to pull
1081 from only one remote repository.
1082
1083
1084 A recommended workflow for a "project lead" goes like this:
1085
1086  (1) Prepare your primary repository on your local machine. Your
1087      work is done there.
1088
1089  (2) Prepare a public repository accessible to others.
1090
1091  (3) Push into the public repository from your primary
1092      repository.
1093
1094  (4) "git repack" the public repository. This establishes a big
1095      pack that contains the initial set of objects as the
1096      baseline, and possibly "git prune-packed" if the transport
1097      used for pulling from your repository supports packed
1098      repositories.
1099
1100  (5) Keep working in your primary repository. Your changes
1101      include modifications of your own, patches you receive via
1102      e-mails, and merges resulting from pulling the "public"
1103      repositories of your "subsystem maintainers".
1104
1105      You can repack this private repository whenever you feel
1106      like.
1107
1108  (6) Push your changes to the public repository, and announce it
1109      to the public.
1110
1111  (7) Every once in a while, "git repack" the public repository.
1112      Go back to step (5) and continue working.
1113
1114
1115 A recommended work cycle for a "subsystem maintainer" who works
1116 on that project and has an own "public repository" goes like this:
1117
1118  (1) Prepare your work repository, by "git clone" the public
1119      repository of the "project lead". The URL used for the
1120      initial cloning is stored in .git/branches/origin.
1121
1122  (2) Prepare a public repository accessible to others.
1123
1124  (3) Copy over the packed files from "project lead" public
1125      repository to your public repository by hand; preferrably
1126      use rsync for that task.
1127
1128  (4) Push into the public repository from your primary
1129      repository. Run "git repack", and possibly "git
1130      prune-packed" if the transport used for pulling from your
1131      repository supports packed repositories.
1132
1133  (5) Keep working in your primary repository. Your changes
1134      include modifications of your own, patches you receive via
1135      e-mails, and merges resulting from pulling the "public"
1136      repositories of your "project lead" and possibly your
1137      "sub-subsystem maintainers".
1138
1139      You can repack this private repository whenever you feel
1140      like.
1141
1142  (6) Push your changes to your public repository, and ask your
1143      "project lead" and possibly your "sub-subsystem
1144      maintainers" to pull from it.
1145
1146  (7) Every once in a while, "git repack" the public repository.
1147      Go back to step (5) and continue working.
1148
1149
1150 A recommended work cycle for an "individual developer" who does
1151 not have a "public" repository is somewhat different. It goes
1152 like this:
1153
1154  (1) Prepare your work repository, by "git clone" the public
1155      repository of the "project lead" (or a "subsystem
1156      maintainer", if you work on a subsystem). The URL used for
1157      the initial cloning is stored in .git/branches/origin.
1158
1159  (2) Do your work there. Make commits.
1160
1161  (3) Run "git fetch origin" from the public repository of your
1162      upstream every once in a while. This does only the first
1163      half of "git pull" but does not merge. The head of the
1164      public repository is stored in .git/refs/heads/origin.
1165
1166  (4) Use "git cherry origin" to see which ones of your patches
1167      were accepted, and/or use "git rebase origin" to port your
1168      unmerged changes forward to the updated upstream.
1169
1170  (5) Use "git format-patch origin" to prepare patches for e-mail
1171      submission to your upstream and send it out. Go back to
1172      step (2) and continue.
1173
1174
1175 Working with Others, Shared Repository Style
1176 --------------------------------------------
1177
1178 If you are coming from CVS background, the style of cooperation
1179 suggested in the previous section may be new to you. You do not
1180 have to worry. git supports "shared public repository" style of
1181 cooperation you are probably more familiar with as well.
1182
1183 For this, set up a public repository on a machine that is
1184 reachable via SSH by people with "commit privileges".  Put the
1185 committers in the same user group and make the repository
1186 writable by that group.
1187
1188 Each committer would then:
1189
1190         - clone the shared repository to a local repository,
1191
1192 ------------------------------------------------
1193 $ git clone repo.shared.xz:/pub/scm/project.git/ my-project
1194 $ cd my-project
1195 $ hack away
1196 ------------------------------------------------
1197
1198         - merge the work others might have done while you were
1199           hacking away.
1200
1201 ------------------------------------------------
1202 $ git pull origin
1203 $ test the merge result
1204 ------------------------------------------------
1205
1206         - push your work as the new head of the shared
1207           repository.
1208
1209 ------------------------------------------------
1210 $ git push origin master
1211 ------------------------------------------------
1212
1213 If somebody else pushed into the same shared repository while
1214 you were working locally, the last step "git push" would
1215 complain, telling you that the remote "master" head does not
1216 fast forward.  You need to pull and merge those other changes
1217 back before you push your work when it happens.
1218
1219
1220 [ to be continued.. cvsimports ]