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