A Scalable, User-Friendly Source Control System.
Go to file
Augie Fackler 8ec19e30a3 tests: Add an environment variable (HGSUBVERSION_TEST_TEMP) which allows
specification of where temporary repositories (both hg and svn) should be
created. Set it to a RAM disk to make the tests run faster.
2008-12-20 19:13:46 -06:00
notes Add notes on how metadata is stored and recovered. Note that at this point, 2008-12-01 11:13:01 -06:00
svnwrap SubversionRepo: work around ra.get_files() not releasing input buffer 2008-12-02 20:13:13 -06:00
tests tests: Add an environment variable (HGSUBVERSION_TEST_TEMP) which allows 2008-12-20 19:13:46 -06:00
__init__.py Phrasing nits. 2008-12-15 21:36:14 -06:00
.hgignore .hgignore: ignore nose coverage html. 2008-12-11 19:21:05 -06:00
diff_cmd.py diff_cmd: more robust, add tests. 2008-12-11 19:49:36 -06:00
fetch_command.py Improve branch closing in the case of a single-rev replacement of one branch 2008-12-20 19:04:59 -06:00
hg_delta_editor.py Improve branch closing in the case of a single-rev replacement of one branch 2008-12-20 19:04:59 -06:00
push_cmd.py Refactored outgoing_revisions into util where it really belongs. 2008-11-21 16:11:24 -06:00
README README: We now only require hg 1.1, rather than a prerelease version. 2008-12-02 20:10:11 -06:00
svncommand.py tag_repo: remove gentags command, extend repo.tags(), HgChangeEditor now takes either repo or repo_path 2008-12-04 13:10:40 -06:00
tag_repo.py tag_repo: remove gentags command, extend repo.tags(), HgChangeEditor now takes either repo or repo_path 2008-12-04 13:10:40 -06:00
util.py util: Add a command to normalize svn urls and use it in a couple of places. Test that it works and prevents failed assertions. 2008-12-11 20:41:57 -06:00
utility_commands.py Clean up help text, document subcommands. 2008-11-20 22:03:30 -06:00

-*-restructuredtext-*-

About
-----
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.

Installation
------------
You need to have Subversion installed with the SWIG Python bindings from Subversion 1.5 or later.
You need Mercurial 1.1 or later.

.. _mercurial: http://selenic.com/repo/hg
.. _mercurial-stable: http://selenic.com/repo/hg-stable
.. _crew: http://hg.intevation.org/mercurial/crew
.. _crew-stable: http://hg.intevation.org/mercurial/crew-stable

If you are unfamiliar with installing Mercurial extensions, please see the UsingExtensions_ page in the Mercurial wiki. Look at the example for specifying an absolute path near the bottom of the page. You want to give the path to the top level of your clone of this repository.

.. _UsingExtensions: http://www.selenic.com/mercurial/wiki/index.cgi/UsingExtensions

Before using hgsubversion, I *strongly* encourage you to run the automated tests. Just use nose_ if you have it (or ``easy_install nose`` if you want it), or use ``python tests/run.py`` to run the suite with the conventional test runner. Note that because I use nose, there's a lot of stdout spew in the tests right now. The important part is that all the tests pass.

.. _nose: http://code.google.com/p/python-nose/

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

Note, you should pull from the root subversion directory, not specific folders (such as trunk).

Pull new revisions into an already-converted repo::

 $ hg svn pull

For more information, see 'hg help svn' while in a converted repo.