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 version control and will not be communicating with a central server (yet).
When I try to commit files, I get abort: no username supplied (see "hg help config"). The common solution to this problem is putting the following in ~/.hgrc
[ui]
username = Firstname Lastname <[email protected]>
which I have done, but the error remains. It just won't read the file. Any suggestions?
cat ~/.hgrc
(copy-paste that to a shell) produces the necessary config data. Update your question with the (appropriately anonimized) output. – Clairehg.exe showconfig | grep ui
? – Woodhousehg commit -u username -m "msg"
works? – Tartangrep
(which is normally not there on Windows), then just dohg showconfig ui
to get the settings from the[ui]
section. – Gulp