0
votes
2answers
14 views
How do I export changesets from hg repository to svn repository
Hi,
I know there is hgsubversion extension for mercurial. But before I knew how it works, I maintain two separate repositories, one is SVN repo and one is Hg repo. I made most of my recent changes in …
3
votes
6answers
127 views
How many people were involved in a project? Based on Revision Control System
How do you know how many developers were involved in a project using a Revision Control System? A friend of mine found this way to look up the answer in git log:
git log | grep Author: | sort -u …
2
votes
5answers
75 views
Software Project Management systems
Ok, so I've only recently started getting serious about learning how to program, and I've started using Mercurial to manage my projects. I chose Mercurial over SVN because of it's ability to commit …
2
votes
1answer
68 views
Which merge strategies does mercurial use?
I work in an environment with large scale multi-parallel branching. Looking at GIT I see it has several merge strategies:
already up-to-date
fast-forward
octopus
resolve
recursive
Does Mercurial …
1
vote
3answers
45 views
Backing up a mercurial repository while preserving timestamps
Is there a way to back up a mercurial repository while preserving the files' timestamps?
Right now, I'm using hg clone to copy the repository to a staging directory, and the backup program picks up …
0
votes
2answers
72 views
Moving the .hg folder
Hey, I'm using Mercurial. I just found out that there is a .hg folder in my home directory. I presume it is keeping track of all mercurial repositories I have lying around in my home directory. Is …
1
vote
3answers
37 views
Does VisualHG work with Visual Studio 2010 beta 2?
Since I installed it on my Visual Studio 2010 beta 2 I couldn't make it work. I don't know if it is because it is incompatible or it is because I don't know how to use it.
0
votes
1answer
30 views
Mercurial in Windows doesn’t see .hgignore - why?
Windows fails to pick up my .hgignore file. I'm running Mercurial from the command line, and "hg status" shows lots of files in the ignored directories.
The .hgignore file looks like this (there's no …
0
votes
4answers
56 views
Would like to create some defaults for my .hgignore files in TortoiseHG/Mercurial
I'd like to make it so that every time I create a new repository, certain filters automatically get added to my .hgignore files by default.
For example, for C# projects, I would like these to be …
3
votes
6answers
90 views
Version control integration with eclipse
I'm looking for a version control system just for me on my windows computer to integrate into eclipse. I was thinking to use Mercurial instead of Subversion, but I'm having doubts about the mercurial …
1
vote
2answers
94 views
Mercurial Bookmarks and ‘Git like branching’
I am not having any luck using Bookmarks in Mercurial for Git like branching.
From the article: http://mercurial.selenic.com/wiki/BookmarksExtension, I've set "track.current" to true in my .hgrc …
2
votes
1answer
37 views
Mercurial branching and bookmarks
I read some information about named branches and working with bookmarks. Unfortunately I still don't see a difference between them. Is there any?
Is there any difference between:
hg branch blah
hg …
0
votes
1answer
42 views
How to do partial clone of a mercurial repository [closed]
Possible Duplicate:
Can I clone part of a Mercurial repository?
I am having a mercurial repository with huge volumes, there are lots of folders on root level and every folders have 1000+ …
4
votes
5answers
128 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, and would like to …
1
vote
1answer
25 views
Does hg pull only operate on the current working directory?
I have multiple mercurial repositories and used hg clone to create backups of them on our file server. Now I want to write a batch file that updates them once a day by running hg pull -u on each …
