vote up 8 vote down star
1

A similar question has been asked recently, but is not the same.

The Mercurial website has a detailed page listing comparisons for 4 different options for getting Mercurial and Subversion to interoperate.

I am wondering if anyone out there has tried one or more of these, and could relate any really good or really bad experiences. The note on the hgsubversion download says

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.

which is about as inviting to me signs that say "Abandon hope, all ye who enter here" or "Trespassers will be arrested". So I'm just wondering if this or any of the other alternatives are worth trying for someone who doesn't have a lot of extra time to hack around.

flag

56% accept rate
+1 for laziness. With all the warnings, I couldn't bring myself to try any of the options either :-) – wcoenen May 5 at 22:16
I wouldn't call it "lazy", I'd call it being "thrifty". Setting up / managing a source control configuration is (supposed to be) only a small portion of software work which in turn is only a small part of my job. Either that or I have to go pester our IT group and they aren't going to know since they usually work with "Real" software (Windows/IIS/SQLServer etc). So I have to use my time wisely when it comes to "small" tasks like this. When I'm lazy for real, I take pride in it. :) – Jason S May 5 at 22:36

4 Answers

vote up 1 vote down

I've just started working with option 4, hgsvn. Despite what the Mercurial page says, hgsvn 0.1.7 does support pushing back to the svn repo.

My use case is very simple: I really only want the ability to have local branches (at this stage). The workflow listed on the hgsvn page is exactly what I've used and so far it hasn't broken anything.

link|flag
vote up 2 vote down

Yeah, you must use a recent "crew version" of Mercurial, see the CrewRepository page on the Mercurial wiki.

When Mercurial 1.3 is released on July 1st, hgsubversion should begin maintaining a stable branch. At least that's the word on IRC (#hgsubversion on irc.freenode.net).

link|flag
ooh ahh. I look fwd to Jul 1 then. – Jason S May 21 at 15:52
dohhwww, it looks like this is not true for hgsubversion; the "convert" extension is the thing that apparently got added/released – Jason S Aug 10 at 20:12
The convert extension is the one that is shipped with Mercurial (and has been shipped for a long time). I'm sorry that hgsubversion has not yet released a stable version, apparently they got into a bigger rewrite than they thought at the time I answered this question. – Martin Geisler Aug 16 at 9:33
vote up 2 vote down

I think hgsubversions author is being a bit paranoid. If you follow the README - meaning use suitably recent versions of mercurial and subversion - not whatever happens to be installed on or by your distro - then it actually works fairly well. Likewise, the documentation included is up to date; whereas what you find on the web may not be. I've been using it for a couple of weeks with reasonable - but not perfect - results.

It's when you get into the corners of the two systems that you have problems: hgsubversion and other extensions (I have problems with hgtasks) don't seem to like each other; it's not clear how properties are handled, etc.

link|flag
vote up 1 vote down

I've been using Subversion for several years, but I'm interested in trying out this distributed VCS idea. (I would like to use git, but it isn't so good on Windows which rules it out for use at my work. So I next would like to try Mercurial.)

I initially would like to push and pull with a Subversion server. So I tried option 1, hgsubversion. I'm on Ubuntu 9.04 (Jaunty) with hg 1.1.2. I followed the directions given on that web page. It all seemed to install fine. But when I tried the hg svnclone command, I got an "unknown command" error. Further digging showed that now you just do hg clone with the SVN URL prefixed by svn+. e.g.:

hg clone svn+https://server/svn/repo/

But then, I got an error message:

abort: could not import module encoding!

That seems to be a known bug, but after some fiddling around, I couldn't figure out what I'm meant to do to fix it.

Summary: option 1 currently not functional for me. The other options don't fit my desired work-flow.

Update: I tried it again with Mercurial 1.2.1, and got the same result. Someone told me that the in-development mercurial-crew branch should work.

link|flag
1  
you need the latest versions of mercurial and hgsubversion. However - be careful with hgsubversion at the moment. It looks like there is a lot of refactoring going on – Nick R Jun 3 at 16:17
Thanks. I added an update re 1.2.1 and mercurial-crew. – Craig McQueen Jun 4 at 1:44
Yeah, you need Mercurial 1.3 -- the encoding module was added after 1.2.1 was released. – Martin Geisler Jul 12 at 11:35

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.