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 home dir, but it seems to be ignored at all.

[ui]
username = MY_USER_NAME
password = MY_PASSWORD

Please teach me how to do this in the right way, thanks in advance.

link|improve this question

72% accept rate
feedback

4 Answers

up vote 69 down vote accepted

You can make an auth section in your .hgrc, like so:

[auth]
bb1.prefix = https://bitbucket.org/foo/
bb1.username = foo
bb1.password = foo_passwd

(The ‘bb1’ part is an arbitrary identifier and is used to match prefix with username and password.)

See for more details: http://hgtip.com/tips/advanced/2009-10-01-configuring-user-auth-https/

I would also recommend to take a look at user570626’s answer about the keyring extension. The above is quick and works, but the keyring extension is much more secure as you don’t write down your password in plain text in your settings file. Afaik it is bundled with TortoiseHg on Windows, and there is currently a discussion about distributing it as a bundled extension on all platforms.

link|improve this answer
Thanks, Laurens. This works for me. – Satoru.Logic Apr 7 '10 at 0:28
Why doesn't this work when the server is: ssh://HGSERVER ? the "ssh://username:password@HGSERVER" format doesn't work either.. – Oren Oct 30 '10 at 3:01
@Oren -- look at the below comment -- if you are using SSH, why not use key-based login? – David Eads Dec 3 '10 at 17:06
3  
This is not secured as password is clear and human readable. You should look at mercurial.selenic.com/wiki/KeyringExtension to use OS keyring. – hadrien Jan 11 '11 at 16:06
feedback

There are three ways to do this: use the .hgrc file, use ssh or use the keyring extension


1. The INSECURE way - update your ~/.hgrc file

The format that works for me (in my ~/.hgrc file) is this

[ui]
username=Chris McCauley <chris.mccauley@mydomain.com>

[auth]
repo.prefix = https://server/repo_path
repo.username = username
repo.password = password


You can configure as many repos as you want by adding more triplets of prefix,username, password by prepending a unique tag.

This only works in Mercurial 1.3 and obviously your username and password are in plain text - not good.


2. The secure way - Use SSH to AVOID using passwords

Mercurial fully supports SSH so we can take advantage of SSH's ability to log into a server without a password - you do a once off configuration to provide a self-generated certificate. This is by far the safest way to do what you want.


You can find more information on configuring passwordless login here


3. The keyring Extension

If you want a secure option, but aren't familiar with SSH, why not try this?

From the docs ...

The extension prompts for the HTTP password on the first pull/push to/from given remote repository (just like it is done by default), but saves the password (keyed by the combination of username and remote repository url) in the password database. On the next run it checks for the username in .hg/hgrc, then for suitable password in the password database, and uses those credentials if found.

There is more detailed information here

link|improve this answer
Mine is similar to yours. My repository is on Google Code, I saved the auto-generated password with my username in ~/.hgrc but it doesn't work. – Satoru.Logic Apr 6 '10 at 11:35
1  
Satoru, Chris is not talking about mercurial, but about ssh: ssh can be set up so that you don't have to identify yourself using a password (as described e.g. here: debian-administration.org/articles/152). – Tomislav Nakic-Alfirevic Apr 6 '10 at 11:41
@Chris, you're missing some <> – tonfa Apr 6 '10 at 12:11
@Tomislav - Thanks for the comment it made my realise that I could have been more clear. I'm talking about a pretty standard usage scenario for Mercurial. – Chris McCauley Apr 6 '10 at 13:24
3  
Method 2 is really the only way to handle things securely and maintain user-level permissions on the remote system. – Peter Rowell Jul 24 '10 at 18:56
show 4 more comments
feedback

No one mentioned the keyring extension. It will save the username and password into the system keyring, which is far more secure than storing your passwords in a static file as mentioned above. Perform the steps below and you should be good to go. I had this up and running on Ubuntu in about 2 minutes.

>> sudo apt-get install python-pip
>> sudo pip install keyring
>> sudo pip install mercurial_keyring

**Edit your .hgrc file to include the extension**
[extensions]
mercurial_keyring = 

http://mercurial.selenic.com/wiki/KeyringExtension

link|improve this answer
2  
It works also on Mac Os X. – hadrien Jan 11 '11 at 16:05
1  
This is my favorite solution. ... and just to second what @hadrien said, after the described three actions it works like a charm on Mac OS X. – ngeek Aug 5 '11 at 6:57
I also second @ngeek for seconding me! – hadrien Aug 16 '11 at 15:11
On Windows at least TortoiseHg supports keyring extension: Global Settings -> Extensions -> mercurial_keyring – user272735 Nov 8 '11 at 10:54
Unfortunately currently the keyring extension has a bug on Windows where it can only save one password at a time. See this question. – Laurens Holst Dec 1 '11 at 14:41
show 1 more comment
feedback

A simple hack is to add username and password to the push url in your project's .hg/hgrc file:

[paths]
default = http://username:password@mydomain.com/myproject

(Note that in this way you store the password in plain text)

If you're working on several projects under the same domain, you might want to add a rewrite rule in your ~/.hgrc file, to avoid repeating this for all projects:

[rewrite]
http.//mydomain.com = http://username:password@mydomain.com

Again, since the password is stored in plain text, I usually store just my username.

If you're working under Gnome, I explain how to integrate Mercurial and the Gnome Keyring here:

http://aloiroberto.wordpress.com/2009/09/16/mercurial-gnome-keyring-integration/

link|improve this answer
I have downloaded the extension, however, when I tried to make a push the password prompt refuses to let me pass :( May be I have done it the wrong way. I have never used Gnome Keyring before. Thank you all the same. – Satoru.Logic Apr 6 '10 at 11:57
You might want to use --debug and --verbose options for hg push to see what is going wrong... – Roberto Aloi Apr 6 '10 at 12:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.