NOBODY above explained/clarified (to a novice user), where all they get confused by the terms
.hg/hgrc -- his file is used for Repository, at local/workspace location / in actual repository's .hg folder.
~/.hgrc -- this file is different than the below one. this file resides at ~ or home dir.
myremote.xxxx=.....
bb.xxxx=......
This is one of the line under [auth] section/directive, while using mercurial keyring extension. Make sure the server name you put there, matches with what you use while doing "hg clone" otherwise keying will say, user not found. bb or myremote in the line below, are "alias name" that you MUST given while doing "hg clone http:/.../../repo1 bb or myremote" otherwise, it wont work or you have to make sure your local repository's .hg/hgrc file contain the alias what you gave while doing hg clone ..(as last parameter).
PS the following links for clear details, sorry for quickly written grammar.
http://stackoverflow.com/questions/14267873/mercurial-hg-no-changes-found-cant-hg-push-out/14269997#14269997
http://www.linuxquestions.org/questions/showthread.php?p=4867412#post4867412
http://stackoverflow.com/questions/12503421/hg-push-error-and-username-not-specified-in-hg-hgrc-keyring-will-not-be-used/14270602#14270602
http://stackoverflow.com/questions/12468634/opensuse-apache-windows-ldap-group-user-authentication-mercurial/14270648#14270648
ex: If inside ~/.hgrc (iuser's home directory in Linux/Unix) or mercurial.ini in Windows at user's home directory, contains, the following line and if you do "hg clone http://.../.../reponame myremote", then you'll never be prompted for user credentials more than once / http repo link. In ~/.hgrc under [extensions] a line for "mercurial_keyring = " or "hgext.mercurial_keyring = /path/to/your/mercurial_keyring.py" .. one of these lines should be there.
[auth]
myremote.schemes = http https
myremote.prefix = tshusncdurvm99/hg
myremote.username = c123456
I'm trying to find out how to set the PREFIX property so that user can clone or perform any Hg operations without username/password prompts and without worrying about what he mentioned in the http://..../... for servername while using the Hg repo link. It can be IP, servername or serer's FQDN