This error comes up every time I try clone any repo from Bitbucket using terminal:
$ git clone https://me@bitbucket.org/me/myrepo.git
Cloning into 'blog'...
fatal: unable to access 'https://me@bitbucket.org/me/myrepo.git': Could not
resolve host: bitbucket.org; nodename nor servname provided, or not known
I had the same problem with GitHub resolved by replacing 'http' with 'git' protocol which was great! But when I tried that on Bitbucket I got this:
git clone git://me@bitbucket.org/me/myrepo.git
Cloning into 'blog'...
fatal: Unable to look up me@bitbucket.org (port 9418) (nodename nor servname
provided, or not known)
So I removed 'me@', making it the same as the actual webpage, and the operation just times out. Help?