2
votes
interoperation between mercurial and subversion
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 …
3
votes
What are the relative strengths and weaknesses of Git, Mercurial, and Bazaar?
Take a look at the comparison made recently by the Python developers: http://wiki.python.org/moin/DvcsComparison. They chose …
1
vote
Using Mercurial Locally Only with Subversion Server
You should really give hgsubversion a try, despite the warning. It is the only two-way bridge between Subversion and Mercuria …
0
votes
How to migrate/convert from SVN to Mercurial (hg) on windows
This is in the TortoiseHg FAQ:
How can I …
0
votes
Migrating complex SVN branch hierarchy to Mercurial
You should really ask such questions on the mercurial mailing list. That is where the Mercurial developers hang out, and there h …
2
votes
How to use an Internet Subversion respository when developing code?
Subversion is inherently a centralized revision control system. From your description, it sounds like you want a distributed revision control system. In such a system people can de …
0
votes
Import TFS History into Mercurial (hg)
I've never heard of TFS (and neither has the Mercurial wiki) so I don't think there is a ready made conversion script. Converting to …
2
votes
Converting a company from SVN to Hg?
Please start by going to the Mercurial wiki. There you'll find a prominent link called Mercurial: The Definitive Guide …
5
votes
How to let Mercurial ignore every thing except *.cs file?
Just add the extensions to your .hgignore file as you come across them:
syntax: glob
*.bin
*.obj
and so on. It's not a lot of work, and it documents t …
1
vote
What version control system is best designed to *prevent* concurrent editing?
You mention Mercurial, and despite being a Mercurial developer, I must agree with the suggestions to use Subversion. Mercurial is all about letting people develop in a distributed fashion. This inc …
0
votes
How many people were involved in a project? Based on Revision Control System
Mercurial has a powerful template language built-in (see hg help templating). So you can get a list of all people in the project without enabling the churn extension:
h …
