Stop asking for my password all the time
The easy way to fix this is to add your password
in plain text to your .hgrc file.
The better way is to use SSH. We were currently using RhodeCode to serve up our mercurial repos but its
easy to use SSH instead.
For exiting projects just change the [project]/.hg/hgrc file from:
[paths]
default = https://[hg username]@[server]/hg/[project]
to
[paths]
default = ssh://[ssh username]@[server]/hg/[project]
Notice that your
[hg username]
might be different from your
[ssh username]
.