I'm trying to clone a git repository with an access token following this guide:
git clone https://x-token-auth:{access_token}@bitbucket.org/user/repo.git
But this gives me the next error:
fatal: unable to access 'https://x-token-auth {access_token}@bitbucket.our_own_server.com/scm/rat/repo.git/':
Port number ended with '{'
I've tried many variants, with/out brackets, with/out quotes, admin or username instead of x-token-auth, but without any success.
Is this a configuration problem? Are there any alternatives?
PS: The access token contains '/' and '+'. Can this be the problem?