我上传了我的~/.ssh/id_rsa。但是Git仍然会在每次操作(比如Git pull)时询问我的密码。我错过什么了吗?

它是一个私有存储库(另一个人的私有存储库的分支),我像这样克隆它:

git clone git@bitbucket.org:Nicolas_Raoul/therepo.git

这是我本地的。git/config:

[core]
        repositoryformatversion = 0
        filemode = true
        bare = false
        logallrefupdates = true
[remote "origin"]
        fetch = +refs/heads/*:refs/remotes/origin/*
        url = https://Nicolas_Raoul@bitbucket.org/Nicolas_Raoul/therepo.git
[branch "master"]
        remote = origin
        merge = refs/heads/master

在相同的环境下,使用相同的公钥,Github上的Git可以正常工作。 . ssh rwx -, . ssh / id_rsa - r -------, . ssh / id_rsa。Pub是-rw-r——r——


当前回答

如果你仍然得到太多的身份验证失败错误:

nano ~/.ssh/config

粘贴:

Host bitbucket_james
    HostName bitbucket.org
    User james
    Port 22
    IdentitiesOnly=yes
    IdentityFile=~/.ssh/id_rsa_bitbucket_james

最重要的是-你应该bitbucket_james的别名而不是bitbucket.org当你设置你的远程URL:

git remote set-url origin git@bitbucket_james:repo_owner_user/repo_name.git

其他回答

这些答案都帮不了我,结果我的问题有点不同。ssh每次都在发送密钥之前询问我的密码。所以我要做的就是把我的密码和这个命令链接起来:

ssh-add -K ~/.ssh/id_rsa

然后它会提示您输入密码并存储密码。这可能是你正在寻找的解决方案,如果每次提示输入密码时,它会说

输入密钥'/Users//.ssh/id_rsa'的密码:

更多信息请点击这里

注意:我在我的mac机器上成功地使用了这个选项,但正如@Rob Kwasowski在下面指出的那样,大写K选项是mac独有的。如果不是在mac上,你将需要使用小写K(这可能也适用于mac,但我还没有测试)。

您确定您使用ssh url克隆了它吗?

url的来源说url = https://Nicolas_Raoul@bitbucket.org/Nicolas_Raoul/therepo.git,所以如果它是使用https,它会要求密码,不管你的ssh密钥。

所以你要做的是:

在当前的repo中打开配置文件。

一个git / problem。

并更改包含url的行

[remote "origin"]
        fetch = +refs/heads/*:refs/remotes/origin/*
        url = https://Nicolas_Raoul@bitbucket.org/Nicolas_Raoul/therepo.git

to

[remote "origin"]
        fetch = +refs/heads/*:refs/remotes/origin/*
        url = git@bitbucket.org:Nicolas_Raoul/therepo.git

在HTTP请求的情况下,也可以直接将凭据(带密码)粘贴到url中:

http://username:password@bitbucket.org/...

这样就省去了每次都要提交你的证书的麻烦。简单地修改你的.git/config (url)。

我登录的时候还有其他奇怪的地方。我遇到了一些看起来很蠢的东西,但对我来说很有用。只需进入MacOS的钥匙链。在侧边栏中找到登录锁图标。单击可退出,再单击可登录。听起来很蠢,但它解决了我的问题。值得一试。

与我,虽然我运行'git克隆ssh://git@stash.xxx.com:7999/projName/projA.git' 我仍然被提示输入我克隆的这个新回购的密码,所以通过比较它的.git/配置文件与其他工作的回购,它原来是[远程“origin”]部分下的url,它被设置为ssh路径上面的新回购,但被设置为https:xxx的工作。