Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
87 views

how to make automatic git mirror for hg repo

I've Vim plugin project on GoogleCode using Mercurial, but users wants to have it on github to ease use it as git subrepo (to keep their ~/.vim/ on github with all plugins inside). Personally I ...
0
votes
1answer
61 views

Equivalent of 'ssh' config option in Hg for Git?

On Windows 7, my .hgrc config file provides a nice an easy way to tell Mercurial about the private SSH key location with the following syntax: [ui] username = John Doe <jdoe@example.com> ssh = ...
0
votes
0answers
15 views

Deleting a name from TortoiseHG settings dropdown

In the "commit" tab of the TortoiseHG settings you can select a Username to associate with commits. This is an editable dropdown allowing you to enter a name, or select from a list of prior names. ...
1
vote
1answer
91 views

Free versioning server

I know services like GitHub and BitBucket, but I need even a little but private space to do versioning (doesn't really matters if it's git, hg or svn). Years ago I subscribed to a service that gave me ...
0
votes
0answers
31 views

hg clone from Bitbucket fails with error 'Killed'

I get the following output when trying to clone from Bitbucket. Fairly large repo. Any ideas? foo@server:/var/www# hg clone ssh://hg@bitbucket.org/xxx/yyy destination directory: yyy requesting all ...
1
vote
0answers
88 views

The “Add Selected Files” command of the Visualhg extension crashes VS2010

I just installed the Mercurial Source Control Plugin (visualhg) for MS Visual Studio 2010 to try out some features of source control management systems. When I clicked on the "Add Selected Files" ...
0
votes
0answers
32 views

Has the conversion from Subversion to Mercurial gotten any better?

I have a number of small projects I'd like to get out of SVN and into Mercurial (to host on Bitbucket, I already have some Hg repos on there). I've done some searching on the conversion process. I'm ...
3
votes
2answers
232 views

How to deal with binary files in Google Code?

How do you deal with binary files in your Google Code Mercurial repository? I have heard something about bfiles extension and such, but I do not know where to begin. If you are going to say I should ...
2
votes
2answers
441 views

Search & replace back slashes to forward slashes in windows

Lately I've been needing to delete new untracked files from my versioning system. Being in linux I use: hg status -un|xargs rm And it works nice, but when doing it in windows, hg status lists paths ...
0
votes
2answers
290 views

Bash command not found (trying to integrate Beyond Compare with Mercurial and using it within Cygwin)

I'm trying to integrate beyond compare with mercurial and I've copy & pasted the necessary lines from the Using Beyond Compare with Version Control Systems page for mercurial into my .hgrc file ...
0
votes
2answers
260 views

Pulling from a Mercurial repository over ssh with non-default ports

I'm trying to pull changes from a server which has sshd on port 2345 and an hg server listening locally on port 5432. I already have certifcate-based authentication for ssh, so there no need for a ...