4
votes
5answers
100 views
Which VCS should I use with Google Code?
I am about to start a project and was thinking of using Google Code to host it. It gives the option of using Mercurial or SVN for version control. I have never before used a VCS, a …
1
vote
5answers
79 views
Subversion + Some other VCS (Git, Hg, etc) in the same working copy
Here's the deal:
I just started a new job, and source control here is basically useless.
All of the devs (about 10 guys) test their code in the same dev site, and there's no way to …
0
votes
2answers
57 views
How do I get the current mercurial revision without calling hg?
In Git the current revision hash is stored in
.git/refs/heads/master
Is there an equivalent in Mercurial that doesn't require me making a call to hg log -l1? I know I can get t …
2
votes
4answers
63 views
Can I clone part of a Mercurial repository?
Is it possible to clone part of a Mercurial depot? Let's say the depot is quite large, or contains multiple projects, or multiple branches, can I only clone part of the repo?
E.g. …
1
vote
1answer
29 views
How are git branches imported into mercurial with hg convert?
I have a number of branches in a git repository:
david@Panama ~/app: git branch -r
origin/HEAD -> origin/master
origin/master
origin/newButtons
origin/newFonts
origin/serverV …
2
votes
2answers
28 views
Are Mercurial’s bundled extensions considered part of it’s core feature set and approach to version control?
I'm currently trying to evaluate Mercurial, to get a feel for the philosophy the system tries to promote - but one thing that's got me confused is the presence of the bundled 'exte …
1
vote
2answers
33 views
Moving incomplete code between mercurial checkouts
I checked out the codebase on my desktop computer and worked some on it. Now Im going away and want those changes on my laptop.
One solution is to simply commit the incomplete cod …
1
vote
1answer
58 views
Mercurial over ssh client and server on Windows
I'm trying to configure Mercurial for use with both a windows server (freeSSHd) and client (both command line and TortoiseHG). I'm using the most recent versions of everything... …
0
votes
2answers
31 views
suggestions for using PATH to executables with version control (Mercurial)
So I'm pretty new to version control but I'm trying to use Mercurial on my Mac to keep a large Python data analysis program organized. I typically clone my main repository, tweak …
0
votes
1answer
13 views
how do you make use of AclExtension and mercurial-server/hg-ssh?
mercurial-server manages user database under keys folder. Users and groups are represented by files and folders.
AclExtension relies on linux user group through ssh.
they don't …
6
votes
3answers
177 views
Why Kiln is based on Mercurial, and not other (D)VCS
What were the reason for chosing Mercurial as a basis of FogCreek Kiln, a source control management system with tightly integrated code review, and FogBugz integration?
Why Mercur …
0
votes
1answer
29 views
Sync files in Two Different Repos using HG
Hi All:
I've got a problem when I try to sync files in two different repos. What I want to do is:
I've got 2 repos A and B, and they share some common files, suppose they lie in …
0
votes
1answer
41 views
Can I squash commits in Mercurial?
I have a pair of commits that should really be just one. If I was using git, I would use:
git rebase -i <some-commit-before>
and then squash them.
Can I do that in mercur …
32
votes
8answers
1k views
Git and Mercurial - Compare and Contrast
For a while now I've been using subversion for my personal projects.
More and more I keep hearing great things about Git and Mercurial, and DVCS in general.
I'd like to give the …
1
vote
2answers
38 views
How to notify changes on a certain named branch on Mercurial?
I am aware of Notify extension by Mercurial, but it always notify on any push action. What I want is that a notification only when a certain branch (say, "stable") is updated becau …
