]> git.cworth.org Git - hgbook-git/blob - tour.mdwn
Port section 2.2 (Getting started) from mercurial to git
[hgbook-git] / tour.mdwn
1 ## Chapter 2  
2 A tour of git: the basics
3
4 ### 2.0 Copyright
5
6 This document is a modified version originally known as "Distributed
7 revision control with Mercurial" and originally authored by Bryan
8 O’Sullivan. The original document was obtained from
9 <http://hgbook.red-bean.com/>.
10
11 Copyright © 2006, 2007 Bryan O’Sullivan.
12
13 This material may be distributed only subject to the terms and
14 conditions set forth in version 1.0 of the Open Publication
15 License. Please refer to Appendix D for the license text.
16
17 As this is a modified version, the name of Bryan O'Sullivan is used
18 only to properly credit him with the original text. The appearance of
19 his name here explicitly does not assert or imply his endorsement of
20 this modified document.
21
22 Portions Copyright © 2007 Carl Worth.
23
24 Changes made by Carl include the following:
25
26   * 2007-09-27:
27     * Convert from HTML to markdown source syntax
28     * Eliminate all content except Chapter 2 and Appendix D
29     * Eliminate line numbers from examples
30     * Modified to describe git instead of mercurial
31
32 ### 2.1  Installing git on your system
33
34 Prebuilt binary packages of git are available for many popular
35 operating systems. These make it easy to start using git on your
36 computer immediately.
37
38 #### 2.1.1  Linux
39
40 Because each Linux distribution has its own packaging tools, policies,
41 and rate of development, it’s difficult to give a comprehensive set of
42 instructions on how to install git binaries. The version of
43 git that you will end up with can vary depending on how active
44 the person is who maintains the package for your distribution.
45
46 To keep things simple, I will focus on installing git from the
47 command line under the most popular Linux distributions. Most of these
48 distributions provide graphical package managers that will let you
49 install git with a single click. The package name to look for is
50 often git, but is sometimes git-core, (due to an unfortunate name
51 with git, meaning GNU Interactive Tools).
52
53   * Debian 
54
55         apt-get install git-core
56
57   * Fedora Core 
58
59         yum install git
60
61   * Gentoo 
62
63         emerge git
64
65   * OpenSUSE 
66
67         yum install git
68
69   * Ubuntu 
70
71         apt-get install git
72
73 #### 2.1.2  Mac OS X
74
75 A git-core package is available through
76 [macports](http://macports.org). Once macports is enabled, the command
77 to install git is:
78
79         port install git-core
80
81 #### 2.1.3  Windows
82
83 Git has long been available as part of cygwin, and works reasonably
84 well in that environment. Some people find cygwin a particularly
85 inelegant approach to running git and would prefer a "native"
86 solution. To this end, the [msysgit
87 project](http://code.google.com/p/msysgit/) is rapidly putting
88 together a solution including various packages with full
89 installers. These include GitMe, a package to install the entire
90 development environment necessary to work on improving the msysgit
91 port of git, and WinGit, a package for installing just git itself
92 without the development environment, (still in Alpha as of September
93 2008).
94
95 ### 2.2  Getting started
96
97 To begin, we’ll use the “git version” command to find out whether git
98 is actually installed properly. Versions 1.5 and newer of git are much
99 more friendly to new users than versions 1.4 and older. If you aren't
100 yet running version 1.5 or newer, it's highly recommended that you
101 upgrade.
102
103         $ git version   
104         git version 1.5.3.2
105
106 #### 2.2.1  Built-in help
107
108 Git provides a built-in help system. This is invaluable for those
109 times when you find yourself stuck trying to remember how to run a
110 command. If you are completely stuck, simply run “git help”; it will
111 print a brief list of commonly-used commands, along with a description
112 of what each does. If you ask for help on a specific command (such as
113 "git help init"), it prints more detailed information. [XXX: Does "git
114 help <foo>" work universally as a built-in or does it expect man to be
115 present and just call out to "man git-<foo>"?]
116
117         [XXX: The original hgbook includes the complete output of "hg
118         help init" at this point. I'm not including the corresponding
119         "git help init" output as it would be excessively long. The
120         description alone is quite reasonable, (other than a
121         not-too-helpful aside about the obsolete git-init-db command),
122         but it only comes after a full screen's worth of options
123         details. Might it make sense to have a more summarized help
124         output for "git help <foo>" than all of the documentation
125         available for git-<foo>? And perhaps alos provide a "git -v
126         help" similar to "hg -v help" for more?]
127
128 ### 2.3  Working with a repository
129
130 In Mercurial, everything happens inside a repository. The repository
131 for a project contains all of the files that “belong to” that project,
132 along with a historical record of the project’s files.
133
134 There’s nothing particularly magical about a repository; it is simply
135 a directory tree in your filesystem that Mercurial treats as
136 special. You can rename or delete a repository any time you like,
137 using either the command line or your file browser.
138
139 #### 2.3.1  Making a local copy of a repository
140
141 Copying a repository is just a little bit special. While you could use
142 a normal file copying command to make a copy of a repository, it’s
143 best to use a built-in command that Mercurial provides. This command
144 is called “hg clone”, because it creates an identical copy of an
145 existing repository.
146
147         $ hg clone http://hg.serpentine.com/tutorial/hello   
148         destination directory: hello   
149         requesting all changes   
150         adding changesets   
151         adding manifests   
152         adding file changes   
153         added 5 changesets with 5 changes to 2 files   
154         2 files updated, 0 files merged, 0 files removed, 0 files unresolved
155
156 If our clone succeeded, we should now have a local directory called
157 hello. This directory will contain some files.
158
159         $ ls -l   
160         total 4   
161         drwxrwxr-x 3 bos bos 4096 Jun 17 18:05 hello   
162         $ ls hello   
163         Makefile  hello.c
164
165 These files have the same contents and history in our repository as
166 they do in the repository we cloned.
167
168 Every Mercurial repository is complete, self-contained, and
169 independent. It contains its own private copy of a project’s files and
170 history. A cloned repository remembers the location of the repository
171 it was cloned from, but it does not communicate with that repository,
172 or any other, unless you tell it to.
173
174 What this means for now is that we’re free to experiment with our
175 repository, safe in the knowledge that it’s a private “sandbox” that
176 won’t affect anyone else.
177
178 #### 2.3.2  What’s in a repository?
179
180 When we take a more detailed look inside a repository, we can see that
181 it contains a directory named .hg. This is where Mercurial keeps all
182 of its metadata for the repository.
183
184         $ cd hello   
185         $ ls -a   
186         .  ..  .hg  Makefile  hello.c
187
188 The contents of the .hg directory and its subdirectories are private
189 to Mercurial. Every other file and directory in the repository is
190 yours to do with as you please.
191
192 To introduce a little terminology, the .hg directory is the “real”
193 repository, and all of the files and directories that coexist with it
194 are said to live in the working directory. An easy way to remember the
195 distinction is that the repository contains the history of your
196 project, while the working directory contains a snapshot of your
197 project at a particular point in history.
198
199 ### 2.4  A tour through history
200
201 One of the first things we might want to do with a new, unfamiliar
202 repository is understand its history. The “hg log” command gives us a
203 view of history.
204
205         $ hg log   
206         changeset:   4:b57f9a090b62   
207         tag:         tip   
208         user:        Bryan O'Sullivan <bos@serpentine.com>   
209         date:        Tue Sep 06 15:43:07 2005 -0700   
210         summary:     Trim comments.   
211         
212         changeset:   3:ff5d7b70a2a9   
213         user:        Bryan O'Sullivan <bos@serpentine.com>   
214         date:        Tue Sep 06 13:15:58 2005 -0700   
215         summary:     Get make to generate the final binary from a .o file.   
216         
217         changeset:   2:057d3c2d823c   
218         user:        Bryan O'Sullivan <bos@serpentine.com>   
219         date:        Tue Sep 06 13:15:43 2005 -0700   
220         summary:     Introduce a typo into hello.c.   
221         
222         changeset:   1:82e55d328c8c   
223         user:        mpm@selenic.com   
224         date:        Fri Aug 26 01:21:28 2005 -0700   
225         summary:     Create a makefile   
226         
227         changeset:   0:0a04b987be5a   
228         user:        mpm@selenic.com   
229         date:        Fri Aug 26 01:20:50 2005 -0700   
230         summary:     Create a standard "hello, world" program   
231         
232
233 By default, this command prints a brief paragraph of output for each
234 change to the project that was recorded. In Mercurial terminology, we
235 call each of these recorded events a changeset, because it can contain
236 a record of changes to several files.
237
238 The fields in a record of output from “hg log” are as follows. 
239
240   * changeset This field has the format of a number, followed by a
241     colon, followed by a hexadecimal string. These are identifiers for
242     the changeset. There are two identifiers because the number is
243     shorter and easier to type than the hex string.
244   * user The identity of the person who created the changeset. This is
245     a free-form field, but it most often contains a person’s name and
246     email address.
247   * date The date and time on which the changeset was created, and the
248     timezone in which it was created. (The date and time are local to
249     that timezone; they display what time and date it was for the
250     person who created the changeset.)
251   * summary The first line of the text message that the creator of the
252     changeset entered to describe the changeset.
253
254 The default output printed by “hg log” is purely a summary; it is
255 missing a lot of detail.
256
257 Figure [2.1][8] provides a graphical representation of the history of
258 the hello repository, to make it a little easier to see which
259 direction history is “flowing” in. We’ll be returning to this figure
260 several times in this chapter and the chapter that follows.
261
262 * * *
263
264 ![PIC][9]   
265
266 Figure 2.1: 
267 Graphical history of the hello repository
268
269 * * *
270
271 #### 2.4.1  Changesets, revisions, and talking to other people
272
273 As English is a notoriously sloppy language, and computer science has
274 a hallowed history of terminological confusion (why use one term when
275 four will do?), revision control has a variety of words and phrases
276 that mean the same thing. If you are talking about Mercurial history
277 with other people, you will find that the word “changeset” is often
278 compressed to “change” or (when written) “cset”, and sometimes a
279 changeset is referred to as a “revision” or a “rev”.
280
281 While it doesn’t matter what word you use to refer to the concept of
282 “a changeset”, the identifier that you use to refer to “a specific
283 changeset” is of great importance. Recall that the changeset field in
284 the output from “hg log” identifies a changeset using both a number
285 and a hexadecimal string.
286
287   * The revision number is only valid in that repository, 
288   * while the hex string is the permanent, unchanging identifier that
289     will always identify that exact changeset in every copy of the
290     repository.
291
292 This distinction is important. If you send someone an email talking
293 about “revision 33”, there’s a high likelihood that their revision 33
294 will not be the same as yours. The reason for this is that a revision
295 number depends on the order in which changes arrived in a repository,
296 and there is no guarantee that the same changes will happen in the
297 same order in different repositories. Three changes a,b,c can easily
298 appear in one repository as 0,1,2, while in another as 1,0,2.
299
300 Mercurial uses revision numbers purely as a convenient shorthand. If
301 you need to discuss a changeset with someone, or make a record of a
302 changeset for some other reason (for example, in a bug report), use
303 the hexadecimal identifier.
304
305 #### 2.4.2  Viewing specific revisions
306
307 To narrow the output of “hg log” down to a single revision, use the -r
308 (or --rev) option. You can use either a revision number or a long-form
309 changeset identifier, and you can provide as many revisions as you
310 want.
311
312         $ hg log -r 3   
313         changeset:   3:ff5d7b70a2a9   
314         user:        Bryan O'Sullivan <bos@serpentine.com>   
315         date:        Tue Sep 06 13:15:58 2005 -0700   
316         summary:     Get make to generate the final binary from a .o file.   
317         
318         $ hg log -r ff5d7b70a2a9   
319         changeset:   3:ff5d7b70a2a9   
320         user:        Bryan O'Sullivan <bos@serpentine.com>   
321         date:        Tue Sep 06 13:15:58 2005 -0700   
322         summary:     Get make to generate the final binary from a .o file.   
323         
324         $ hg log -r 1 -r 4   
325         changeset:   1:82e55d328c8c   
326         user:        mpm@selenic.com   
327         date:        Fri Aug 26 01:21:28 2005 -0700   
328         summary:     Create a makefile   
329         
330         changeset:   4:b57f9a090b62   
331         tag:         tip   
332         user:        Bryan O'Sullivan <bos@serpentine.com>   
333         date:        Tue Sep 06 15:43:07 2005 -0700   
334         summary:     Trim comments.   
335         
336
337 If you want to see the history of several revisions without having to
338 list each one, you can use range notation; this lets you express the
339 idea “I want all revisions between a and b, inclusive”.
340
341         $ hg log -r 2:4   
342         changeset:   2:057d3c2d823c   
343         user:        Bryan O'Sullivan <bos@serpentine.com>   
344         date:        Tue Sep 06 13:15:43 2005 -0700   
345         summary:     Introduce a typo into hello.c.   
346         
347         changeset:   3:ff5d7b70a2a9   
348         user:        Bryan O'Sullivan <bos@serpentine.com>   
349         date:        Tue Sep 06 13:15:58 2005 -0700   
350         summary:     Get make to generate the final binary from a .o file.   
351         
352         changeset:   4:b57f9a090b62   
353         tag:         tip   
354         user:        Bryan O'Sullivan <bos@serpentine.com>   
355         date:        Tue Sep 06 15:43:07 2005 -0700   
356         summary:     Trim comments.   
357         
358
359 Mercurial also honours the order in which you specify revisions, so
360 “hg log -r 2:4” prints 2,3,4 while “hg log -r 4:2” prints 4,3,2.
361
362 #### 2.4.3  More detailed information
363
364 While the summary information printed by “hg log” is useful if you
365 already know what you’re looking for, you may need to see a complete
366 description of the change, or a list of the files changed, if you’re
367 trying to decide whether a changeset is the one you’re looking
368 for. The “hg log” command’s -v (or --verbose) option gives you this
369 extra detail.
370
371         $ hg log -v -r 3   
372         changeset:   3:ff5d7b70a2a9   
373         user:        Bryan O'Sullivan <bos@serpentine.com>   
374         date:        Tue Sep 06 13:15:58 2005 -0700   
375         files:       Makefile   
376         description:   
377         Get make to generate the final binary from a .o file.   
378         
379         
380
381 If you want to see both the description and content of a change, add
382 the -p (or --patch) option. This displays the content of a change as a
383 unified diff (if you’ve never seen a unified diff before, see
384 section [12.4][10] for an overview).
385
386         $ hg log -v -p -r 2   
387         changeset:   2:057d3c2d823c   
388         user:        Bryan O'Sullivan <bos@serpentine.com>   
389         date:        Tue Sep 06 13:15:43 2005 -0700   
390         files:       hello.c   
391         description:   
392         Introduce a typo into hello.c.   
393         
394         
395         diff -r 82e55d328c8c -r 057d3c2d823c hello.c   
396         --- a/hello.c Fri Aug 26 01:21:28 2005 -0700   
397         +++ b/hello.c Tue Sep 06 13:15:43 2005 -0700   
398         @@ -11,6 +11,6 @@   
399         
400         int main(int argc, char ⋆⋆argv)   
401         {   
402         - printf("hello, world!∖n");   
403         + printf("hello, world!∖");   
404         return 0;   
405         }   
406         
407
408 ### 2.5  All about command options
409
410 Let’s take a brief break from exploring Mercurial commands to discuss
411 a pattern in the way that they work; you may find this useful to keep
412 in mind as we continue our tour.
413
414 Mercurial has a consistent and straightforward approach to dealing
415 with the options that you can pass to commands. It follows the
416 conventions for options that are common to modern Linux and Unix
417 systems.
418
419   * Every option has a long name. For example, as we’ve already seen,
420     the “hg log” command accepts a --rev option.
421   * Most options have short names, too. Instead of --rev, we can use
422     -r. (The reason that some options don’t have short names is that
423     the options in question are rarely used.)
424   * Long options start with two dashes (e.g. --rev), while short
425     options start with one (e.g. -r).
426   * Option naming and usage is consistent across commands. For
427     example, every command that lets you specify a changeset ID or
428     revision number accepts both -r and --rev arguments.
429
430 In the examples throughout this book, I use short options instead of
431 long. This just reflects my own preference, so don’t read anything
432 significant into it.
433
434 Most commands that print output of some kind will print more output
435 when passed a -v (or --verbose) option, and less when passed -q (or
436 --quiet).
437
438 ### 2.6  Making and reviewing changes
439
440 Now that we have a grasp of viewing history in Mercurial, let’s take a
441 look at making some changes and examining them.
442
443 The first thing we’ll do is isolate our experiment in a repository of
444 its own. We use the “hg clone” command, but we don’t need to clone a
445 copy of the remote repository. Since we already have a copy of it
446 locally, we can just clone that instead. This is much faster than
447 cloning over the network, and cloning a local repository uses less
448 disk space in most cases, too.
449
450         $ cd ..   
451         $ hg clone hello my-hello   
452         2 files updated, 0 files merged, 0 files removed, 0 files unresolved   
453         $ cd my-hello
454
455 As an aside, it’s often good practice to keep a “pristine” copy of a
456 remote repository around, which you can then make temporary clones of
457 to create sandboxes for each task you want to work on. This lets you
458 work on multiple tasks in parallel, each isolated from the others
459 until it’s complete and you’re ready to integrate it back. Because
460 local clones are so cheap, there’s almost no overhead to cloning and
461 destroying repositories whenever you want.
462
463 In our my-hello repository, we have a file hello.c that contains the
464 classic “hello, world” program. Let’s use the ancient and venerable
465 sed command to edit this file so that it prints a second line of
466 output. (I’m only using sed to do this because it’s easy to write a
467 scripted example this way. Since you’re not under the same constraint,
468 you probably won’t want to use sed; simply use your preferred text
469 editor to do the same thing.)
470
471         $ sed -i '/printf/a∖∖tprintf("hello again!∖∖n");' hello.c
472
473 Mercurial’s “hg status” command will tell us what Mercurial knows
474 about the files in the repository.
475
476         $ ls   
477         Makefile  hello.c   
478         $ hg status   
479         M hello.c
480
481 The “hg status” command prints no output for some files, but a line
482 starting with “M” for hello.c. Unless you tell it to, “hg status” will
483 not print any output for files that have not been modified.
484
485 The “M” indicates that Mercurial has noticed that we modified
486 hello.c. We didn’t need to inform Mercurial that we were going to
487 modify the file before we started, or that we had modified the file
488 after we were done; it was able to figure this out itself.
489
490 It’s a little bit helpful to know that we’ve modified hello.c, but we
491 might prefer to know exactly what changes we’ve made to it. To do
492 this, we use the “hg diff” command.
493
494         $ hg diff   
495         diff -r b57f9a090b62 hello.c   
496         --- a/hello.c Tue Sep 06 15:43:07 2005 -0700   
497         +++ b/hello.c Sun Jun 17 18:05:50 2007 +0000   
498         @@ -8,5 +8,6 @@ int main(int argc, char ⋆⋆argv)   
499         int main(int argc, char ⋆⋆argv)   
500         {   
501         printf("hello, world!∖");   
502         + printf("hello again!∖n");   
503         return 0;   
504         }
505
506 ### 2.7  Recording changes in a new changeset
507
508 We can modify files, build and test our changes, and use “hg status”
509 and “hg diff” to review our changes, until we’re satisfied with what
510 we’ve done and arrive at a natural stopping point where we want to
511 record our work in a new changeset.
512
513 The “hg commit” command lets us create a new changeset; we’ll usually
514 refer to this as “making a commit” or “committing”.
515
516 #### 2.7.1  Setting up a username
517
518 When you try to run “hg commit” for the first time, it is not
519 guaranteed to succeed. Mercurial records your name and address with
520 each change that you commit, so that you and others will later be able
521 to tell who made each change. Mercurial tries to automatically figure
522 out a sensible username to commit the change with. It will attempt
523 each of the following methods, in order:
524
525   1. If you specify a -u option to the “hg commit” command on the
526      command line, followed by a username, this is always given the
527      highest precedence.
528   2. If you have set the HGUSER environment variable, this is checked next. 
529   3. If you create a file in your home directory called .hgrc, with a
530      username entry, that will be used next. To see what the contents
531      of this file should look like, refer to section [2.7.1][11]
532      below.
533   4. If you have set the EMAIL environment variable, this will be used
534      next.
535   5. Mercurial will query your system to find out your local user name
536      and host name, and construct a username from these
537      components. Since this often results in a username that is not
538      very useful, it will print a warning if it has to do this.
539
540 If all of these mechanisms fail, Mercurial will fail, printing an
541 error message. In this case, it will not let you commit until you set
542 up a username.
543
544 You should think of the HGUSER environment variable and the -u option
545 to the “hg commit” command as ways to override Mercurial’s default
546 selection of username. For normal use, the simplest and most robust
547 way to set a username for yourself is by creating a .hgrc file; see
548 below for details.
549
550 ##### Creating a Mercurial configuration file
551
552 To set a user name, use your favourite editor to create a file called
553 .hgrc in your home directory. Mercurial will use this file to look up
554 your personalised configuration settings. The initial contents of your
555 .hgrc should look like this.
556
557         # This is a Mercurial configuration file.   
558         [ui]   
559         username = Firstname Lastname <email.address@domain.net>
560
561 The “[ui]” line begins a section of the config file, so you can read
562 the “username = ...” line as meaning “set the value of the username
563 item in the ui section”. A section continues until a new section
564 begins, or the end of the file. Mercurial ignores empty lines and
565 treats any text from “#” to the end of a line as a comment.
566
567 ##### Choosing a user name
568
569 You can use any text you like as the value of the username config
570 item, since this information is for reading by other people, but for
571 interpreting by Mercurial. The convention that most people follow is
572 to use their name and email address, as in the example above.
573
574 Note: Mercurial’s built-in web server obfuscates email addresses, to
575 make it more difficult for the email harvesting tools that spammers
576 use. This reduces the likelihood that you’ll start receiving more junk
577 email if you publish a Mercurial repository on the web.
578
579 #### 2.7.2  Writing a commit message
580
581 When we commit a change, Mercurial drops us into a text editor, to
582 enter a message that will describe the modifications we’ve made in
583 this changeset. This is called the commit message. It will be a record
584 for readers of what we did and why, and it will be printed by “hg log”
585 after we’ve finished committing.
586
587         $ hg commit
588
589 The editor that the “hg commit” command drops us into will contain an
590 empty line, followed by a number of lines starting with “HG:”.
591
592         empty line   
593         HG: changed hello.c
594
595 Mercurial ignores the lines that start with “HG:”; it uses them only
596 to tell us which files it’s recording changes to. Modifying or
597 deleting these lines has no effect.
598
599 #### 2.7.3  Writing a good commit message
600
601 Since “hg log” only prints the first line of a commit message by
602 default, it’s best to write a commit message whose first line stands
603 alone. Here’s a real example of a commit message that doesn’t follow
604 this guideline, and hence has a summary that is not readable.
605
606         changeset:   73:584af0e231be   
607         user:        Censored Person <censored.person@example.org>   
608         date:        Tue Sep 26 21:37:07 2006 -0700   
609         summary:     include buildmeister/commondefs.   Add an exports and install
610
611 As far as the remainder of the contents of the commit message are
612 concerned, there are no hard-and-fast rules. Mercurial itself doesn’t
613 interpret or care about the contents of the commit message, though
614 your project may have policies that dictate a certain kind of
615 formatting.
616
617 My personal preference is for short, but informative, commit messages
618 that tell me something that I can’t figure out with a quick glance at
619 the output of “hg log --patch”.
620
621 #### 2.7.4  Aborting a commit
622
623 If you decide that you don’t want to commit while in the middle of
624 editing a commit message, simply exit from your editor without saving
625 the file that it’s editing. This will cause nothing to happen to
626 either the repository or the working directory.
627
628 If we run the “hg commit” command without any arguments, it records
629 all of the changes we’ve made, as reported by “hg status” and “hg
630 diff”.
631
632 #### 2.7.5  Admiring our new handiwork
633
634 Once we’ve finished the commit, we can use the “hg tip” command to
635 display the changeset we just created. This command produces output
636 that is identical to “hg log”, but it only displays the newest
637 revision in the repository.
638
639         $ hg tip -vp   
640         changeset:   5:fa1321bf0c80   
641         tag:         tip   
642         user:        Bryan O'Sullivan <bos@serpentine.com>   
643         date:        Sun Jun 17 18:05:50 2007 +0000   
644         files:       hello.c   
645         description:   
646         Added an extra line of output   
647         
648         
649         diff -r b57f9a090b62 -r fa1321bf0c80 hello.c   
650         --- a/hello.c Tue Sep 06 15:43:07 2005 -0700   
651         +++ b/hello.c Sun Jun 17 18:05:50 2007 +0000   
652         @@ -8,5 +8,6 @@ int main(int argc, char ⋆⋆argv)   
653         int main(int argc, char ⋆⋆argv)   
654         {   
655         printf("hello, world!∖");   
656         + printf("hello again!∖n");   
657         return 0;   
658         }   
659         
660
661 We refer to the newest revision in the repository as the tip revision,
662 or simply the tip.
663
664 ### 2.8  Sharing changes
665
666 We mentioned earlier that repositories in Mercurial are
667 self-contained. This means that the changeset we just created exists
668 only in our my-hello repository. Let’s look at a few ways that we can
669 propagate this change into other repositories.
670
671 #### 2.8.1  Pulling changes from another repository
672
673 To get started, let’s clone our original hello repository, which does
674 not contain the change we just committed. We’ll call our temporary
675 repository hello-pull.
676
677         $ cd ..   
678         $ hg clone hello hello-pull   
679         2 files updated, 0 files merged, 0 files removed, 0 files unresolved
680
681 We’ll use the “hg pull” command to bring changes from my-hello into
682 hello-pull. However, blindly pulling unknown changes into a repository
683 is a somewhat scary prospect. Mercurial provides the “hg incoming”
684 command to tell us what changes the “hg pull” command would pull into
685 the repository, without actually pulling the changes in.
686
687         $ cd hello-pull   
688         $ hg incoming ../my-hello   
689         comparing with ../my-hello   
690         searching for changes   
691         changeset:   5:fa1321bf0c80   
692         tag:         tip   
693         user:        Bryan O'Sullivan <bos@serpentine.com>   
694         date:        Sun Jun 17 18:05:50 2007 +0000   
695         summary:     Added an extra line of output   
696         
697
698 (Of course, someone could cause more changesets to appear in the
699 repository that we ran “hg incoming” in, before we get a chance to “hg
700 pull” the changes, so that we could end up pulling changes that we
701 didn’t expect.)
702
703 Bringing changes into a repository is a simple matter of running the
704 “hg pull” command, and telling it which repository to pull from.
705
706         $ hg tip   
707         changeset:   4:b57f9a090b62   
708         tag:         tip   
709         user:        Bryan O'Sullivan <bos@serpentine.com>   
710         date:        Tue Sep 06 15:43:07 2005 -0700   
711         summary:     Trim comments.   
712         
713         $ hg pull ../my-hello   
714         pulling from ../my-hello   
715         searching for changes   
716         adding changesets   
717         adding manifests   
718         adding file changes   
719         added 1 changesets with 1 changes to 1 files   
720         (run 'hg update' to get a working copy)   
721         $ hg tip   
722         changeset:   5:fa1321bf0c80   
723         tag:         tip   
724         user:        Bryan O'Sullivan <bos@serpentine.com>   
725         date:        Sun Jun 17 18:05:50 2007 +0000   
726         summary:     Added an extra line of output   
727         
728
729 As you can see from the before-and-after output of “hg tip”, we have
730 successfully pulled changes into our repository. There remains one
731 step before we can see these changes in the working directory.
732
733 #### 2.8.2  Updating the working directory
734
735 We have so far glossed over the relationship between a repository and
736 its working directory. The “hg pull” command that we ran in
737 section [2.8.1][12] brought changes into the repository, but if we
738 check, there’s no sign of those changes in the working directory. This
739 is because “hg pull” does not (by default) touch the working
740 directory. Instead, we use the “hg update” command to do this.
741
742         $ grep printf hello.c   
743         printf("hello, world!∖");   
744         $ hg update tip   
745         1 files updated, 0 files merged, 0 files removed, 0 files unresolved   
746         $ grep printf hello.c   
747         printf("hello, world!∖");   
748         printf("hello again!∖n");
749
750 It might seem a bit strange that “hg pull” doesn’t update the working
751 directory automatically. There’s actually a good reason for this: you
752 can use “hg update” to update the working directory to the state it
753 was in at any revision in the history of the repository. If you had
754 the working directory updated to an old revision—to hunt down the
755 origin of a bug, say—and ran a “hg pull” which automatically updated
756 the working directory to a new revision, you might not be terribly
757 happy.
758
759 However, since pull-then-update is such a common thing to do,
760 Mercurial lets you combine the two by passing the -u option to “hg
761 pull”.
762
763         hg pull -u
764
765 If you look back at the output of “hg pull” in section [2.8.1][12]
766 when we ran it without -u, you can see that it printed a helpful
767 reminder that we’d have to take an explicit step to update the working
768 directory:
769
770         (run 'hg update' to get a working copy)
771
772 To find out what revision the working directory is at, use the “hg
773 parents” command.
774
775         $ hg parents   
776         changeset:   5:fa1321bf0c80   
777         tag:         tip   
778         user:        Bryan O'Sullivan <bos@serpentine.com>   
779         date:        Sun Jun 17 18:05:50 2007 +0000   
780         summary:     Added an extra line of output   
781         
782
783 If you look back at figure [2.1][8], you’ll see arrows connecting each
784 changeset. The node that the arrow leads from in each case is a
785 parent, and the node that the arrow leads to is its child. The working
786 directory has a parent in just the same way; this is the changeset
787 that the working directory currently contains.
788
789 To update the working directory to a particular revision, give a
790 revision number or changeset ID to the “hg update” command.
791
792         $ hg update 2   
793         2 files updated, 0 files merged, 0 files removed, 0 files unresolved   
794         $ hg parents   
795         changeset:   2:057d3c2d823c   
796         user:        Bryan O'Sullivan <bos@serpentine.com>   
797         date:        Tue Sep 06 13:15:43 2005 -0700   
798         summary:     Introduce a typo into hello.c.   
799         
800         $ hg update   
801         2 files updated, 0 files merged, 0 files removed, 0 files unresolved
802
803 If you omit an explicit revision, “hg update” will update to the tip
804 revision, as shown by the second call to “hg update” in the example
805 above.
806
807 #### 2.8.3  Pushing changes to another repository
808
809 Mercurial lets us push changes to another repository, from the
810 repository we’re currently visiting. As with the example of “hg pull”
811 above, we’ll create a temporary repository to push our changes into.
812
813         $ cd ..   
814         $ hg clone hello hello-push   
815         2 files updated, 0 files merged, 0 files removed, 0 files unresolved
816
817 The “hg outgoing” command tells us what changes would be pushed into
818 another repository.
819
820         $ cd my-hello   
821         $ hg outgoing ../hello-push   
822         comparing with ../hello-push   
823         searching for changes   
824         changeset:   5:fa1321bf0c80   
825         tag:         tip   
826         user:        Bryan O'Sullivan <bos@serpentine.com>   
827         date:        Sun Jun 17 18:05:50 2007 +0000   
828         summary:     Added an extra line of output   
829         
830
831 And the “hg push” command does the actual push. 
832
833         $ hg push ../hello-push   
834         pushing to ../hello-push   
835         searching for changes   
836         adding changesets   
837         adding manifests   
838         adding file changes   
839         added 1 changesets with 1 changes to 1 files
840
841 As with “hg pull”, the “hg push” command does not update the working
842 directory in the repository that it’s pushing changes into. (Unlike
843 “hg pull”, “hg push” does not provide a -u option that updates the
844 other repository’s working directory.)
845
846 What happens if we try to pull or push changes and the receiving
847 repository already has those changes? Nothing too exciting.
848
849         $ hg push ../hello-push   
850         pushing to ../hello-push   
851         searching for changes   
852         no changes found
853
854 #### 2.8.4  Sharing changes over a network
855
856 The commands we have covered in the previous few sections are not
857 limited to working with local repositories. Each works in exactly the
858 same fashion over a network connection; simply pass in a URL instead
859 of a local path.
860
861         $ hg outgoing http://hg.serpentine.com/tutorial/hello   
862         comparing with http://hg.serpentine.com/tutorial/hello   
863         searching for changes   
864         changeset:   5:fa1321bf0c80   
865         tag:         tip   
866         user:        Bryan O'Sullivan <bos@serpentine.com>   
867         date:        Sun Jun 17 18:05:50 2007 +0000   
868         summary:     Added an extra line of output   
869         
870
871 In this example, we can see what changes we could push to the remote
872 repository, but the repository is understandably not set up to let
873 anonymous users push to it.
874
875         $ hg push http://hg.serpentine.com/tutorial/hello   
876         pushing to http://hg.serpentine.com/tutorial/hello   
877         searching for changes   
878         ssl required
879
880    [1]: http://hgbook.red-bean.com/hgbookch3.html
881    [2]: http://hgbook.red-bean.com/hgbookch1.html
882    [3]: http://hgbook.red-bean.com/hgbookch1.html#tailhgbookch1.html
883    [4]: #tailhgbookch2.html
884    [5]: http://hgbook.red-bean.com/hgbook.html#hgbookch2.html
885    [6]: http://mercurial.berkwood.com/
886    [7]: http://hgbook.red-bean.com/hgbookli4.html#Xweb:macpython
887    [8]: #x6-340581
888    [9]: hgbookch2_files/tour-history.png
889    [10]: http://hgbook.red-bean.com/hgbookch12.html#x16-27100012.4
890    [11]: #x6-420002.7.1
891    [12]: #x6-490002.8.1
892    [13]: http://hgbook.red-bean.com/hgbookch2.html
893
894 ## Appendix D  
895 Open Publication License
896
897 Version 1.0, 8 June 1999 
898
899 ### D.1  Requirements on both unmodified and modified versions
900
901 The Open Publication works may be reproduced and distributed in whole
902 or in part, in any medium physical or electronic, provided that the
903 terms of this license are adhered to, and that this license or an
904 incorporation of it by reference (with any options elected by the
905 author(s) and/or publisher) is displayed in the reproduction.
906
907 Proper form for an incorporation by reference is as follows: 
908
909 Copyright (c) year by author’s name or designee. This material may be
910 distributed only subject to the terms and conditions set forth in the
911 Open Publication License, vx.y or later (the latest version is
912 presently available at
913 [http://www.opencontent.org/openpub/][http://www.opencontent.org/openpub/]).
914
915 The reference must be immediately followed with any options elected by
916 the author(s) and/or publisher of the document (see section D.6).
917
918 Commercial redistribution of Open Publication-licensed material is
919 permitted.
920
921 Any publication in standard (paper) book form shall require the
922 citation of the original publisher and author. The publisher and
923 author’s names shall appear on all outer surfaces of the book. On all
924 outer surfaces of the book the original publisher’s name shall be as
925 large as the title of the work and cited as possessive with respect to
926 the title.
927
928 ### D.2  Copyright
929
930 The copyright to each Open Publication is owned by its author(s) or
931 designee.
932
933 ### D.3  Scope of license
934
935 The following license terms apply to all Open Publication works,
936 unless otherwise explicitly stated in the document.
937
938 Mere aggregation of Open Publication works or a portion of an Open
939 Publication work with other works or programs on the same media shall
940 not cause this license to apply to those other works. The aggregate
941 work shall contain a notice specifying the inclusion of the Open
942 Publication material and appropriate copyright notice.
943
944 Severability. If any part of this license is found to be unenforceable
945 in any jurisdiction, the remaining portions of the license remain in
946 force.
947
948 No warranty. Open Publication works are licensed and provided “as is”
949 without warranty of any kind, express or implied, including, but not
950 limited to, the implied warranties of merchantability and fitness for
951 a particular purpose or a warranty of non-infringement.
952
953 ### D.4  Requirements on modified works
954
955 All modified versions of documents covered by this license, including
956 translations, anthologies, compilations and partial documents, must
957 meet the following requirements:
958
959   1. The modified version must be labeled as such. 
960   2. The person making the modifications must be identified and the
961      modifications dated.
962   3. Acknowledgement of the original author and publisher if
963      applicable must be retained according to normal academic citation
964      practices.
965   4. The location of the original unmodified document must be identified. 
966   5. The original author’s (or authors’) name(s) may not be used to
967      assert or imply endorsement of the resulting document without the
968      original author’s (or authors’) permission.
969
970 ### D.5  Good-practice recommendations
971
972 In addition to the requirements of this license, it is requested from
973 and strongly recommended of redistributors that:
974
975   1. If you are distributing Open Publication works on hardcopy or
976      CD-ROM, you provide email notification to the authors of your
977      intent to redistribute at least thirty days before your
978      manuscript or media freeze, to give the authors time to provide
979      updated documents. This notification should describe
980      modifications, if any, made to the document.
981   2. All substantive modifications (including deletions) be either
982      clearly marked up in the document or else described in an
983      attachment to the document.
984   3. Finally, while it is not mandatory under this license, it is
985      considered good form to offer a free copy of any hardcopy and
986      CD-ROM expression of an Open Publication-licensed work to its
987      author(s).
988
989 ### D.6  License options
990
991 The author(s) and/or publisher of an Open Publication-licensed
992 document may elect certain options by appending language to the
993 reference to or copy of the license. These options are considered part
994 of the license instance and must be included with the license (or its
995 incorporation by reference) in derived works.
996
997   1. To prohibit distribution of substantively modified versions
998      without the explicit permission of the author(s). “Substantive
999      modification” is defined as a change to the semantic content of
1000      the document, and excludes mere changes in format or
1001      typographical corrections.
1002
1003      To accomplish this, add the phrase “Distribution of substantively
1004      modified versions of this document is prohibited without the
1005      explicit permission of the copyright holder.” to the license
1006      reference or copy.
1007
1008   2. To prohibit any publication of this work or derivative works in
1009      whole or in part in standard (paper) book form for commercial
1010      purposes is prohibited unless prior permission is obtained from
1011      the copyright holder.
1012
1013      To accomplish this, add the phrase “Distribution of the work or
1014      derivative of the work in any standard (paper) book form is
1015      prohibited unless prior permission is obtained from the copyright
1016      holder.” to the license reference or copy.