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 < …
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 …
14
votes
Mercurial: Named Branches vs Multiple Repositories
The biggest difference is how the branch names are recorded in the history. With named branches the branch name is embedded in each changeset and will thus become an immutable part of the …
1
vote
How to search through all commits in the repository?
In Mercurial you use hg log --keyword to search for keywords in the commit messages and hg log --user to search for a particular user. See hg help log for oth …
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 …
0
votes
Mercurial: Revert a single hunk
The record extension is inspired by darcs record. It will allow you to add only spe …
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 …
1
vote
.hgignore for a CakePHP application?
You can add
syntax: glob
app/tmp/**
to your .hgignore file and Mercurial will from that point on ignore all files under app/tmp/ with the …
1
vote
Weird output in tortoisehg log window
The graph looks like this since the revisions are ordered by their revision numbers. The main repository has the revisions ordered and numbered like this:
0 Imported initial repo.
1 …
1
vote
Version-controlled extension configuration in Mercurial
The current development version of Mercurial (to be released as Mercurial 1.3 on July 1st) supports a %include directive in its configuration files.
That means that you can ask …
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
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 …
2
votes
Mercurial - cleverencode - cleverdecode - multiple file patterns - mercurial.ini
Add more lines to the [decode] and [encode] sections:
[extensions]
win32text =
[decode]
**.txt = cleverdecode:
**.java = cleverdecode:
**.xml = cleverdeco …
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 …
