Search Results

1
vote

Pushing updates to a pruned Mercurial branch

The easiest solution would probably be to simply put a clone of 'slave' inside 'master'. The inner clone will be ignored by the outer clone -- so when you commit changes to the secret files you won …
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

How do I suppress keyword expansion in Starteam at the client level to enable local mirroring to DVCS?

If the keywords look like CVS/RCS keywords ($Id$ and so on), then the keyword extension bundled with …
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 …
1
vote

Pushing updates to a pruned Mercurial branch

I think I need more space than what a comment box will give me... :-) Let me try to explain what I mean by an inner repository. We have two normal, separate repositories: 'slave' and 'maste …
3
votes

Transferring legacy code base from cvs to distributed repository (e.g. git or mercurial). Suggestions needed for initial repository design.

As for the Mercurial side, the recommendation is also to refactor large legacy CVS/SVN repositories into smaller components. Common code should be put into its own libraries, and the application co …
6
votes

Mercurial: Remove changeset from remote branch

Mercurial tries very hard to keep your data safe, so you can generally not change history. That being said, there are numerous extensions for Mercurial that allows you to quite easily chang …
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 …
3
votes

How to automatically remove all .orig files in Mercurial working tree?

Personally I go for rm **/*.orig if I get tired of the .orig files. But if you want a built-in solution, then maybe you'll like the …
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 …
4
votes

bitbucket, “hg push” and “hg update”

Bitbucket shows you the repository. As pointed out by Dave Webb, hg update is concerned with updating the working copy. When you do hg push …