我上传了我的~/.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——


当前回答

你好,来自未来的谷歌人。

在MacOS >= High Sierra操作系统下,由于某些原因SSH密钥不再保存到KeyChain中。

使用ssh-add -K也不能在重启后存活。

这里有3种可能的解决方案。

我已经成功地使用了第一种方法。我在~/.ssh中创建了一个名为config的文件:

Host *
  AddKeysToAgent yes
  UseKeychain yes
  IdentityFile ~/.ssh/id_rsa

其他回答

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

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

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

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

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

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

步骤1:安装git-credential-winstore https://confluence.atlassian.com/bitbucketserver/permanently-authenticating-with-git-repositories-776639846.html 步骤2:git配置——global credential。Helper '缓存超时3600' 这将存储您的密码1小时 步骤3:执行git命令 这将提示您输入密码,并提示凭据 并保存密码

这里的关键字是'ssh://'而不是https://':-)

在你的。git/config中

请注意!如果你已经克隆了存储库,在你将你的公钥添加到BitBucket后,这些存储库可以重新克隆。这可能比侵入你的配置文件更干净;-)