Search Results

1
vote

Git interoperability with a Mercurial Repository

Since hg-git is a two-way bridge, it will also allow you to push changesets from Git to Mercurial. I have also not tried the extension, but as far as I know it is the only option for Mercurial < …
7
votes

What is the Difference Between Mercurial and Git?

I work on Mercurial, but fundamentally I believe both systems are equivalent. They both work with the same abstractions: a series of changesets which make up the history. Each changeset knows where …
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 …
1
vote

What is a good Mercurial usage pattern for this setup?

Patches are a simple and versatile solution. For moving around larger groups of changes (especially binary changes and merges), Mercurial offers binary bundles. A bundle is basically the bi …
0
votes

How to migrate/convert from SVN to Mercurial (hg) on windows

This is in the TortoiseHg FAQ: How can I …
7
votes

How would you use a DVCS (mercurial in my case) to develop for different versions of the .NET framework?

Yes, you can use Mercurial for this. Here is how it would work. Let's say that your current clone is called new-dot-net since it support the new .Net version. You make a clone …
1
vote

Mercurial with multiple projects

Like bendin says, you should create multiple repositories, one for each independent project as a start. Mercurial commits are made an a repository-wide level and you cannot checkout just a …
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 …
1
vote

Mercurial: Merging one file between branches in one repo

Nope. Mercurial works on a changeset basis. But you can do a " …
5
votes

How do I “switch” with mercurial

The switch command does two things in Subversion: Update the working copy to mirror a new URL within the repository. This behaviour is similar to 'svn upda …
12
votes

Bazaar, Mercurial or other for single user version control?

If you're just single developer working on small projects, any version control system should be fast enough. I'm a Mercurial developer myself and will of course recommend that :-) I like ho …
6
votes

Mercurial Bookmarks and ‘Git like branching’

Please upgrade to Mercurial 1.4, which was released last week. Then you will be able to switch between heads on a branch without warning. …