hgbook

diff en/ch01-tour-basic.xml @ 701:477d6a3e5023

Many final changes.
author Bryan O'Sullivan <bos@serpentine.com>
date Mon May 04 23:52:38 2009 -0700 (2009-05-04)
parents a17d6390a480
children
line diff
     1.1 --- a/en/ch01-tour-basic.xml	Sun May 03 20:27:09 2009 -0700
     1.2 +++ b/en/ch01-tour-basic.xml	Mon May 04 23:52:38 2009 -0700
     1.3 @@ -992,35 +992,35 @@
     1.4    <sect1>
     1.5      <title>Starting a new project</title>
     1.6  
     1.7 -    <para>It is just as easy to begin a new project as to work on one
     1.8 +    <para id="x_71c">It is just as easy to begin a new project as to work on one
     1.9        that already exists.  The <command>hg init</command> command
    1.10        creates a new, empty Mercurial repository.</para>
    1.11  
    1.12      &interaction.ch01-new.init;
    1.13  
    1.14 -    <para>This simply creates a repository named
    1.15 +    <para id="x_71d">This simply creates a repository named
    1.16        <filename>myproject</filename> in the current directory.</para>
    1.17  
    1.18      &interaction.ch01-new.ls;
    1.19  
    1.20 -    <para>We can tell that <filename>myproject</filename> is a
    1.21 +    <para id="x_71e">We can tell that <filename>myproject</filename> is a
    1.22        Mercurial repository, because it contains a
    1.23        <filename>.hg</filename> directory.</para>
    1.24  
    1.25      &interaction.ch01-new.ls2;
    1.26  
    1.27 -    <para>If we want to add some pre-existing files to the repository,
    1.28 +    <para id="x_71f">If we want to add some pre-existing files to the repository,
    1.29        we copy them into place, and tell Mercurial to start tracking
    1.30        them using the <command>hg add</command> command.</para>
    1.31  
    1.32      &interaction.ch01-new.add;
    1.33  
    1.34 -    <para>Once we are satisfied that our project looks right, we
    1.35 +    <para id="x_720">Once we are satisfied that our project looks right, we
    1.36        commit our changes.</para>
    1.37  
    1.38      &interaction.ch01-new.commit;
    1.39  
    1.40 -    <para>It takes just a few moments to start using Mercurial on a
    1.41 +    <para id="x_721">It takes just a few moments to start using Mercurial on a
    1.42        new project, which is part of its appeal. Revision control is
    1.43        now so easy to work with, we can use it on the smallest of
    1.44        projects that we might not have considered with a more