comparison README @ 258:4ab27ddbae51

Updated readme a little bit for the new UI.
author Augie Fackler <durin42@gmail.com>
date Fri, 10 Apr 2009 22:41:33 -0500
parents 246ca614f04e
children 4a327bfc69c6
comparison
equal deleted inserted replaced
257:ffccf0080e54 258:4ab27ddbae51
40 40
41 Basic Use 41 Basic Use
42 ----------- 42 -----------
43 Get a new clone of an svn server:: 43 Get a new clone of an svn server::
44 44
45 $ hg svnclone <svn URI> [destination] 45 $ hg clone <svn URI> [destination]
46 46
47 Real example:: 47 Real example::
48 48
49 $ hg svnclone http://python-nose.googlecode.com/svn nose-hg 49 $ hg clone svn+http://python-nose.googlecode.com/svn nose-hg
50 50
51 Note, you should pull from the root subversion directory, not specific 51 Note, you should pull from the root subversion directory, not specific
52 folders (such as trunk). 52 folders (such as trunk). Also, you only need to modify http:// urls as shown.
53 This is a side effect of Mercurial and Subversion both claiming the http
54 protocol, so svn+http is used to work around that.
53 55
54 Pull new revisions into an already-converted repo:: 56 Pull new revisions into an already-converted repo::
55 57
56 $ hg svn pull 58 $ hg pull
57 59
58 For more information, see ``hg help svn`` while in a converted repo. 60 For more information, see ``hg help svn`` while in a converted repo.
59 61
60 Support for ``svn:externals`` 62 Support for ``svn:externals``
61 ----------------------------- 63 -----------------------------