Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have added repository and at the time of commit I get error as

error:  abort: no username supplied (see "hg help config") 

I am not getting Mercurial.ini file on my local as well. Does anyone know how I can resolve this error on Fedora?

share|improve this question
2  
The Mercurial.ini file is the user config file on Windows. On Fedora it would probably be ~/.hgrc – hwiechers Mar 20 '10 at 10:02

5 Answers

Either put a hgrc in the .hg directory in your repo or put a .hgrc file in your home dir (then it covers all your projects) In the file you should write

[ui]
username = Your Name <your@mail>
share|improve this answer
4  
it's hgrc in .hg (projectfolder/.hg/hgrc file) – Luka Ramishvili Dec 31 '11 at 9:13
1  
Thanks, fixed that. – cjg Jan 3 '12 at 19:45
Don't do what I just did. I couldn't figure out what was wrong because I named it .hgconfig. (I normally use git...) – Matthew Adams Sep 19 '12 at 2:03

On Windows, these configuration files are read:

- "<repo>\.hg\hgrc"
- "%USERPROFILE%\.hgrc"
- "%USERPROFILE%\Mercurial.ini"
- "%HOME%\.hgrc"
- "%HOME%\Mercurial.ini"
- "C:\Mercurial\Mercurial.ini"
- "HKEY_LOCAL_MACHINE\SOFTWARE\Mercurial"
- "<install-dir>\Mercurial.ini"

On Unix, these files are read:

- "<repo>/.hg/hgrc"
- "$HOME/.hgrc"
- "/etc/mercurial/hgrc"
- "/etc/mercurial/hgrc.d/*.rc"
- "<install-root>/etc/mercurial/hgrc"
- "<install-root>/etc/mercurial/hgrc.d/*.rc"

[ui]
username = Your Name <your@mail>
share|improve this answer
2  
-1: This doesn't answer the question. – Phil Gan May 3 '10 at 14:44
2  
it does, [ui] username = Your Name tells how to specify username. – Luka Ramishvili Jan 4 '12 at 7:13
It really doesn't because it doesn't say which file is supposed to store the username nor does it explain why it doesn't have or hasn't asked to register a username in the first place. – advocate Oct 22 '12 at 2:41
Being pedantic, the above comments are right, this does not answer the question. Nevertheless, it adds useful information, so +1. – Bobble Nov 9 '12 at 15:22

Simple answer - in your .hg folder, create a file named .hgrc in there, add the following content (check hg help config for the exact syntax)

[ui]
username = forename surname <forename.surnamce@email.com>
verbose = True

and save it. Should work now. Note that verbose = True is not required, but I included it since it is listed in the help content

(This is from memory, but hg help config will tell you the correct filename and syntax)

share|improve this answer
why the change to verbose ? – tonfa Mar 19 '10 at 14:54
as I said in the answer, it isn't required, but I put it in since that's what hg help config outputs. Just in the answer for consistency. :) – ZombieSheep Mar 19 '10 at 15:10
1  
It's better to put username in your user-global ~/.hgrc file, not in a per-repo file. – Ry4an Nov 13 '10 at 19:58
if you place the file in projectdir/.hg, then it should be projectdir/.hg/hgrc, not .hgrc – Luka Ramishvili Jan 4 '12 at 7:11
Followed your directions Ry4an and did: touch ~/.hgrc edit ~/.hgrc then past the contents of zombie sheep's anser, mine the verbose bit, into the file. Problem solved :) – advocate Oct 22 '12 at 2:46

put file .hgrc in $HOME or home/user

share|improve this answer

Make sure that the current user owns the hgrc file or otherwise has correct permissions for it.

share|improve this answer

protected by Tim Post Feb 9 '11 at 7:25

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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