Hi,
I was wondering if there's a way to perform actions on a private repository using the git.exe (windows client) when my user/password contains the '@' character which is considered the host separator.
for instance I'm trying to do the following :
git.exe ls-remote -h -t "https://username:pass@word@bitbucket.org/user/repo.git"
Thanks,
Itay.
for instance I'm trying to do the following :
git.exe ls-remote -h -t "https://username:pass@wo...@bitbucket.org/user/repo.git"

Am 05.05.2016 um 09:45 schrieb Itay Angel:
for instance I'm trying to do the following :
git.exe ls-remote -h -t "https://username:pass@wo...@bitbucket.org/user/repo.git"
You could
- omit the PW and enter it at the prompt
- try to escape the @: \@
- use SSH with a key instead of HTTPS