Mercurial > hgsubversion
changeset 2:89f88df794d3
Cleanup to 80 columns and add a couple of notes on basic use.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Tue, 30 Sep 2008 18:01:35 -0500 |
parents | 50dee64aa677 |
children | 735fdc6c130a |
files | README |
diffstat | 1 files changed, 16 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/README +++ b/README @@ -1,3 +1,17 @@ -hgsubversion is an extension for Mercurial that allows using Mercurial as a Subversion client. +hgsubversion is an extension for Mercurial that allows using Mercurial as a +Subversion client. -Right now it is *not* ready for production use. You should only be using this if you're ready to hack on it, and go diving into the internals of Mercurial and/or Subversion. +Right now it is *not* ready for production use. You should only be using this if +you're ready to hack on it, and go diving into the internals of Mercurial and/or +Subversion. + +== Basic Use == +Get a new clone of an svn server: +$ hg svnclone <svn URI> [destination] +Real example: +hg svnclone http://python-nose.googlecode.com/svn nose-hg + +Pull new revisions into an already-converted repo: +$ hg svn pull + +For more information, see 'hg svn help' while in a converted repo.