views:

16

answers:

1

As MacHg (MacOS mercurial client) requests a password but not a username, the only way I have to include the login information for MacHg to connect to a mercurial repository server is to add it in the URL, as the help states.
The problem is that I'm using a repository at Kiln.net where usernames are emails.
So the @ of the email breaks the syntax, example:
https://[email protected]:[email protected]/repo

So can I escape it in some way? urlencoding the @ to a %40 (or whatever it corresponds) didn't work. \@ didn't either.

I was able to clone the repo from the command line, but I'd like to use MacHg.

A: 

Worked, just had to keep trying.

Petruza