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 < …
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 …
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

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 …
2
votes

Which is the better commit tool, qct or hgct/gct?

Like Serge, I'm mostly a command line guy... but let me just note that the TortoiseHg tool is cross-platform -- it took me a ver …
3
votes

View all revision numbers that made changes to a particular file in Mercurial

Use the template system in Mercurial. To get the revision number for the file …
1
vote

Examining a changeset in HG

You should also take a look at the parentrevspec extension to enable a more Git-like syntax for specifying revi …
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. …
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 …