I'm trying to connect to bitbucket.org via the command line without a request for a password. I know there have been plenty of posts about this but my question is I think a bit more basic.
I'm running git version 2.7.4 on Ubuntu linux in case that matters.
I've added a public key seemingly correctly, and all my permissions on .ssh are 700. I suspect the problem is that in .git/config, I had
[remote "kss1"]
url = https://bitbucket.org/<myName>/kss1
which several posts have identified as a problem. Based on this post I've modified the url line to
[remote "kss1"]
url = [email protected]:<myName>/kss1
And the response is now
repository access denied.
fatal: Could not read from remote repository
.Googling this error didn't yield anything terribly helpful.
Could anybody advise please?