I have successfully converted my svn repository into mercurial, however when I clone this repo the default branch is given the project name instead of "default".
examples:
on remote server:
hg branch
default
on local machine:
hg clone http://server/hg/coolProject
hg branch
coolProject
I would expect the hg branch on my local machine to output "default". I wouldn't really care about this, but when I push my changes back into the originating repo a new head is created and I assume this is because of the different branch name.