我想推动我对Bitbucket所做的一些改变。这很好用,直到我做了macOS Sierra更新。
现在,我收到错误(推送SourceTree)
请确保您拥有正确的访问权限和存储库 存在。推送到ssh://git@bitbucket.xxx.xx:xxx / xxx / xxxx.git 权限被拒绝(publickey)。致命:无法从远程读取 库中。
我的钥匙仍然存在。但身份验证是不可能的。
当我在控制台中输入ssh -vT git@bitbucket.com
并说'是'时,它会尝试三个私钥并打印
无需再尝试验证方法。
许可被拒绝(公钥)
知道为什么会发生这种情况以及如何解决这个问题?
更新
输出ssh -vT git@bitbucket.com
:
OpenSSH_7.3p1, LibreSSL 2.4.1
debug1: Reading configuration data /Users/corinna/.ssh/config
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: /etc/ssh/ssh_config line 20: Applying options for *
debug1: Connecting to bitbucket.com [104.192.143.7] port 22.
debug1: Connection established.
debug1: identity file /Users/corinna/.ssh/id_rsa type 1
debug1: key_load_public: No such file or directory
debug1: identity file /Users/corinna/.ssh/id_rsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /Users/corinna/.ssh/id_dsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /Users/corinna/.ssh/id_dsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /Users/corinna/.ssh/id_ecdsa type -1
debug1: key_load_public: No such file or directory
debug1: identity file /Users/corinna/.ssh/id_ecdsa-cert type -1
debug1: key_load_public: No such file or directory
debug1: identity file /Users/corinna/.ssh/id_ed25519 type -1
debug1: key_load_public: No such file or directory
debug1: identity file /Users/corinna/.ssh/id_ed25519-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_7.3
debug1: Remote protocol version 2.0, remote software version conker_1.0.268-723a194 app-127
debug1: no match: conker_1.0.268-723a194 app-127
debug1: Authenticating to bitbucket.com:22 as 'git'
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: algorithm: curve25519-sha256@libssh.org
debug1: kex: host key algorithm: ssh-rsa
debug1: kex: server->client cipher: aes128-ctr MAC: hmac-sha2-256 compression: none
debug1: kex: client->server cipher: aes128-ctr MAC: hmac-sha2-256 compression: none
debug1: expecting SSH2_MSG_KEX_ECDH_REPLY
debug1: Server host key: ssh-rsa [many cryptical characters here]
debug1: Host 'bitbucket.com' is known and matches the RSA host key.
debug1: Found key in /Users/corinna/.ssh/known_hosts:4
debug1: rekey after 4294967296 blocks
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: rekey after 4294967296 blocks
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /Users/corinna/.ssh/id_rsa
debug1: Authentications that can continue: publickey
debug1: Trying private key: /Users/corinna/.ssh/id_dsa
debug1: Trying private key: /Users/corinna/.ssh/id_ecdsa
debug1: Trying private key: /Users/corinna/.ssh/id_ed25519
debug1: No more authentication methods to try.
Permission denied (publickey).
答案 0 :(得分:0)
Sierra为ssh-agent的工作方式带来了一些变化。尝试将其添加到~/.ssh/config
:
AddKeysToAgent yes