Tagged Questions
The hgrc tag has no wiki summary.
55
votes
4answers
15k views
How to save username and password with Mercurial?
I used mercurial in a personal project, and I have been typing my username and password everytime I want to push something up to the server.
I have tried to add the following in the .hgrc file in my ...
8
votes
1answer
141 views
Can I include sub-config files in my mercurial .hgrc?
I want to keep my main .hgrc in revision control, because I have a fair amount of customization it in, but I want to have different author names depending on which machine I'm using (work, home, ...
7
votes
1answer
179 views
How can we customize the default commit message used by the fetch extension?
The default commit message that fetch uses, "Automated merge with ...." is long, ugly and litters the history with local directory paths. I'd like to replace it with a simple "Automated merge" or just ...
7
votes
3answers
554 views
hg: How do I change the language of my Mercurial(hg) installation? (MacOS)
I re-installed mercurial on my Mac (snow leopard) yesterday. The UI/console language of Mercurial has changed from English to Danish. My machine is set up to US-English and my keyboard layout is ...
7
votes
2answers
594 views
How do I move a private Mercurial repository to a central server?
I’m just getting started with Mercurial, and I’ve read Joel Spolsky’s Hg Init tutorial, which I liked.
I’m wondering: let’s say I have a private repository and I work on it for about a month. Then I ...
7
votes
4answers
761 views
Load multiple .hgrc files - ie, some with machine-specific settings?
I'd like to keep two ~/.hgrc files: ~/.hgrc and ~/.hgrc.local – one with "standard" settings (eg, username), the other with machine-specific settings (eg, setting a graphical merge tool).
How can I ...
6
votes
1answer
186 views
Mercurial: Globally Ignore Files
I know about .hgignore and how I can ignore files on a project-by-project basis. I want to ignore stuff for all mercurial repos.
Is there something I can stick in .hgrc? or put a .hgignore in my ...
6
votes
1answer
2k views
How can I get 'hg pull' to honor trusted-users section in my .hgrc?
I'm sharing a Mercurial repo with a user dias, whom I would trust with my life as well as my data. I therefore added
[trusted]
users = dias, nr
to my ~/.hgrc file. However, when I pull from a ...
3
votes
1answer
108 views
Setting username in Mercurial .hgrc file
I have been browsing SO and Google for a solution to my basic problem, and so far I have had no luck.
I am brand new to Mercurial and have just installed it on my Mac. I am using it for personal ...
3
votes
1answer
123 views
How does one configure mercurial hg to not retain backups by default?
I never use those .orig files, and I hate cleaning them up manually. Is there a way to configure hg revert to use the --no-backups option by default? I can't find it in the Mercurial manual
Using a ...
3
votes
5answers
679 views
Get a 404 Error when clone, pull mercurial repository
I have a repository in here http://repos.joomlaguruteam.com/
I using hgweb.cgi
this is my hgweb.config file
[web]
baseurl =
#allowpull = true
allow_push = *
push_ssl = false
allow_archive = bz2 gz ...
3
votes
2answers
690 views
How to config mercurial to push without asking my password through ssh?
I use mercurial in my project, and every time I push new changesets to the server by ssh, it ask me for a password.
Then how to config the mercurial to push with out asking password?
I works on ...
3
votes
2answers
601 views
Specifying a per-repository hgrc file
I'm setting up a centrally hosted Mercurial repository. I would like to be able to define only a small set of users that are able to access that repository (maybe 3 or 4) - what do I need to write in ...
2
votes
1answer
34 views
Modify the default command of mercurial
by default, just typing hg in the command prompt will show the basic help - what is nice for novice, of course.
But is there a way to modify this, so that for example the current summary is shown?
...
2
votes
1answer
84 views
Make .hgignore in a Mercurial repository available to all subrepos?
I have a Mercurial repository with several subrepos. Is there a possibility to only define a general .hgignore-File (e.g. to ignore object-files) both in the main repository and, optionally a ...
2
votes
1answer
315 views
Repository relative paths in Mercurial .hgrc file
I'm trying to create a shared hgrc file with common extensions for Mercurial, so my coworkers can get a consistent experience and find useful tools. Enabling extensions that don't ship with Mercurial, ...
2
votes
1answer
273 views
Mercurial - how to force a merge for certain files?
I am trying to force a manual merge for certain files per this question but it isn't working. Certain pom files are being auto merged even though I believe I have configured my .hgrc correctly. Any ...
2
votes
1answer
122 views
Mercurial Conditional %include?
I would like parent directories of projects to include an hgrc file that a repo in that folder inherits from, e.g.
~/work/
~/work/hgrc
~/work/project1/
~/work/project2/
~/personal/hgrc
...
2
votes
2answers
181 views
Mercurial deny clone/pull?
I'm currently developing a Python Fabric script that contains some sensitive information. I would like to put this in a repository for a certain few users to access.
I've put this in my hgrc file:
...
2
votes
2answers
286 views
Checking hgrc file into Mercurial
I have a project using mercurial for version control, SCons to build, and google test to write unit tests. The hgrc file hooks pre-commit and runs SCons to build the project and and run unit tests. Is ...
2
votes
2answers
155 views
Can I set Mercurial config options programatically?
I'm looking for a way to set .hgrc configuration items without actually editing the text file. I'm trying to standardize the setup of the hgrc across multiple developers and I would like a command ...
2
votes
1answer
335 views
Mercurial - User Specific Ignore file
I am trying to get mercurial to ignore hidden files for a specific user. I used the directions here:
http://stackoverflow.com/questions/2395179/how-to-make-mercurial-ignore-all-hidden-files
and got ...
2
votes
1answer
74 views
Is the mercurial default glob matching syntax configurable?
To run a command on a single file, I recently realized I can do this:
hg log relglob:UniqueFilename
instead of:
hg log some/really/deep/directory/hierarchy/UniqueFilename
I'd like to take this ...
2
votes
2answers
871 views
Convert Subversion repository to Mercurial
I am trying to convert an SVN repository to Mercurial, but I'm having some troubles. These are the steps I've taken: (I am on Windows)
Turned on "convert" in the extensions
Opened a command ...
2
votes
1answer
614 views
Mercurial - cleverencode - cleverdecode - multiple file patterns - mercurial.ini
How do I specify the CRLF encode/decode option in mercurial.ini in Windows?
The documentation gives the following options:
[extensions]
win32text =
[decode]
** = cleverdecode:
[encode]
** = ...
1
vote
1answer
20 views
Mercurial hook that operates like 'changegroup', but only on push?
We've built a changeset propagation mechanism, but it relies on bundling and unbundling the new changesets. If we were to use the changegroup hook, then it would cause cyclic behaviors, because the ...
1
vote
1answer
41 views
Mercurial: Prevent Untrusted warning from printing out
When performing some action on another user's repo, you will see the message
Not trusting file /home/bob/repo/.hg/hgrc from untrusted user bob, group users
This is fine, and I don't necessarily ...
1
vote
4answers
101 views
How do I set up a hook in HG / Mercurial that gets dictated by the repository?
I have a need for a hook to run after update (this will build the solution they have updated) and I don't want to have to add that hook manually for each person that clones my central repository.
...
1
vote
2answers
217 views
Pulling from Mercurial - certificate error
I was trying to pull from a server, and I get the following error:
C:\Users\User\hg_repo>hg pull
abort: error: _ssl.c:490: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICAT
E:certificate ...
1
vote
3answers
131 views
Cross-platform hgrc solution?
I'm looking for a solution to have one .hgrc for mercurial to work in all my working environments(win/lin/mac), just like one vimrc to rule all.
It comes to a problem when I have to specify the path ...
1
vote
4answers
126 views
How to checkout configuration file and rename it using mercurial?
How do I tell mercurial to copy a file from /home/configs/config.ini into my local clone everytime I run hg clone /home/hg/repo1 without tracking it ?
For example
> ls -l /home/hg/repo1
...
1
vote
1answer
128 views
Git's alternative to .hgrcpath
Does Git have anything like Hg's HGRCPATH, i.e. an enviromental variable which you can modify to change the location where Hg will search for its global configuration file.
In git that can be ...
1
vote
1answer
223 views
In Mercurial, after “hg init” to create a project and pushing onto server, how to make local directory to have “hg path” of the server?
When a project is started with
mkdir proj
cd proj
hg init
[create some files]
hg add file.txt
hg commit
hg push ssh://me@somewhere.somehost.com/proj
now when hg path is issued, nothing will show. ...
1
vote
2answers
292 views
create hgrc file to work on all paths on a machine, and for several repos
I want to create a hgrc file to set the username and password for all paths on some machine, e.g no matter in which directory I am in, hg clone some_path will always work without prompting for a ...
1
vote
2answers
980 views
mercurial .hgrc notify hook
Could someone tell me what is incorrect in my .hgrc configuration? I am trying to use gmail to send a e-mail after each push and/or commit.
.hgrc
[paths]
default = ssh://www.domain.com/repo/hg
[ui]
...
1
vote
1answer
596 views
Cheat sheet for mercurial's hgrc conf file?
I wonder if there are good cheat sheets for all the options you can set in mercurial's hgrc file?
I cant find any.
0
votes
1answer
23 views
How do I reference the repository's hgrc sections from within my custom hook?
I've written a generic changegroup hook function that I would like to customize for each repository by setting some hgrc section variables, like so:
[my_hook_params]
name = whatever
version = 1.0
...
0
votes
2answers
82 views
How to change revision format in Google Code?
I'm REALLY new to DVCS and am trying out Mercurial with Google Code as I'd like to share some extensions that I recently wrote for Google Chrome.
I notice that in Google Code, most projects seem to ...
0
votes
1answer
154 views
Set Mercurial (Hg) Contact (or owner) via command line
Is there a way to set the owner (contact field) via the hg or hgtk command line options? I can bring up the repository configuration via:
>> hgtk repoconfig
What I want to do is something ...
0
votes
1answer
362 views
ACL in Mercurial
I'm trying to get ACL working in Mercurial. Now, I'm not positive that it will work at all because I'm using hg 1.5.1. (I'm working on figuring out who I have to talk to to get someone to upgrade that ...
0
votes
2answers
291 views
How do I write my hgrc so that Mercurial detects my hooks?
've written two functions in a file commit_hooks.py that I want to run before any commit is made persistent, but I can't figure out how to write my hgrc to detect them.
The function headers are:
def ...
0
votes
1answer
93 views
Including mercurial extensions from eggs
Is there some way to import an extension from an .egg file? For example hggit installs itself as hg_git-0.2.4-py2.5.egg, which cannot be listed under [extensions] directly, or it's interpreted as a ...