I try to access my git repository which is hosted on VS Team Services. Works fine in Visual Studio but I need access from the commandline using the standard git client.
When I try to do commands like pull I am asked for my credentials. Now my problem is that my credentials are my MSDN-Account data using my email and a password.
After I entered my email in the git commandline I can see it tries to build a password-url which cannot work because there are two "@"s in the address:
git clone https://myproject.visualstudio.com/DefaultCollection/_git/coderepo
Username for 'https://myproject...': myself@mydomain.com
Password for 'https://myself@mydomain.com@myproject...' :
After entering my password I receive (not surprisingly) a "fatal: Authentication failed"
So: How do I work with emails as username-credentials in git?