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