# HG changeset patch # User Bryan O'Sullivan # Date 1241403811 25200 # Node ID d7d09cda83d27b119f336fd23041487e39a4943e # Parent c8d662d3cb402692416e3e82e0730890ee253caa Add paragraph IDs diff -r c8d662d3cb40 -r d7d09cda83d2 en/ch01-tour-basic.xml --- 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 @@ apt-get install mercurial Fedora: yum install mercurial - OpenSUSE: + OpenSUSE: zypper install mercurial Gentoo: emerge mercurial @@ -601,7 +601,7 @@ <quote>Home directory</quote> on Windows - When we refer to your home directory, on an English + 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 C:\Documents and Settings. You can @@ -712,7 +712,7 @@ A surprise for Subversion users - Like other Mercurial commands, if we don't supply + Like other Mercurial commands, if we don't supply explicit names to commit to the hg commit, 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 hg incoming. - If you only want to pull precisely the changes that were + If you only want to pull precisely the changes that were listed by hg incoming, 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 @@ Default locations - When we clone a repository, Mercurial records the location + When we clone a repository, Mercurial records the location of the repository we cloned in the .hg/hgrc file of the new repository. If we don't supply a location to hg pull from @@ -951,14 +951,14 @@ location as a default. The hg incoming and hg outgoing commands do so too. - If you open a repository's .hg/hgrc + If you open a repository's .hg/hgrc file in a text editor, you will see contents like the following. [paths] default = http://www.selenic.com/repo/hg - It is possible&emdash;and often useful&emdash;to have the + It is possible&emdash;and often useful&emdash;to have the default location for hg push and hg outgoing be different from those for hg pull and hg incoming.