The hg tag has no wiki summary.
0
votes
1answer
23 views
How to access file tree in hg (mercurial) web interface?
There is a hg web browser here: http://hg.openjdk.java.net/jdk7/jdk7
How Can I access file and folder tree of this repository (most recent version) without downloading gz/bz2/zip?
I want to view ...
1
vote
1answer
191 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
96 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
17 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
116 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
41 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
100 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" ...
3
votes
2answers
318 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
631 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
333 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
397 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 ...