Mercurial > hgbook
changeset 825:d7d09cda83d2
Add paragraph IDs
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Sun, 03 May 2009 19:23:31 -0700 |
parents | c8d662d3cb40 |
children | a17d6390a480 |
files | en/ch01-tour-basic.xml |
diffstat | 1 files changed, 7 insertions(+), 7 deletions(-) [+] |
line wrap: on
line diff
--- a/en/ch01-tour-basic.xml Sun May 03 19:23:08 2009 -0700 +++ b/en/ch01-tour-basic.xml Sun May 03 19:23:31 2009 -0700 @@ -53,7 +53,7 @@ <programlisting>apt-get install mercurial</programlisting></listitem> <listitem><para id="x_5">Fedora:</para> <programlisting>yum install mercurial</programlisting></listitem> - <listitem><para>OpenSUSE:</para> + <listitem><para id="x_715">OpenSUSE:</para> <programlisting>zypper install mercurial</programlisting></listitem> <listitem><para id="x_6">Gentoo:</para> <programlisting>emerge mercurial</programlisting></listitem> @@ -601,7 +601,7 @@ <tip> <title><quote>Home directory</quote> on Windows</title> - <para>When we refer to your home directory, on an English + <para id="x_716">When we refer to your home directory, on an English language installation of Windows this will usually be a folder named after your user name in <filename>C:\Documents and Settings</filename>. You can @@ -712,7 +712,7 @@ <note> <title>A surprise for Subversion users</title> - <para>Like other Mercurial commands, if we don't supply + <para id="x_717">Like other Mercurial commands, if we don't supply explicit names to commit to the <command role="hg-cmd">hg commit</command>, it will operate across a repository's entire working directory. Be wary of this if you're coming @@ -821,7 +821,7 @@ possible to pull more changes than you saw when using <command role="hg-cmd">hg incoming</command>.</para> - <para>If you only want to pull precisely the changes that were + <para id="x_718">If you only want to pull precisely the changes that were listed by <command role="hg-cmd">hg incoming</command>, or you have some other reason to pull a subset of changes, simply identify the change that you want to pull by its @@ -943,7 +943,7 @@ <sect2> <title>Default locations</title> - <para>When we clone a repository, Mercurial records the location + <para id="x_719">When we clone a repository, Mercurial records the location of the repository we cloned in the <filename>.hg/hgrc</filename> file of the new repository. If we don't supply a location to <command>hg pull</command> from @@ -951,14 +951,14 @@ location as a default. The <command>hg incoming</command> and <command>hg outgoing</command> commands do so too.</para> - <para>If you open a repository's <filename>.hg/hgrc</filename> + <para id="x_71a">If you open a repository's <filename>.hg/hgrc</filename> file in a text editor, you will see contents like the following.</para> <programlisting>[paths] default = http://www.selenic.com/repo/hg</programlisting> - <para>It is possible&emdash;and often useful&emdash;to have the + <para id="x_71b">It is possible&emdash;and often useful&emdash;to have the default location for <command>hg push</command> and <command>hg outgoing</command> be different from those for <command>hg pull</command> and <command>hg incoming</command>.