Cygwin SSH 和 Github

Cygwin SSH 和 Github

我一直在尝试设置 Cygwin 以连接到 github,但遇到了一些问题。我使用的是 Windows 8,我知道 Windows 8 上的 Cygwin 的用户组和其他方面存在问题。不过我很确定我已经解决了这个问题。至少,我现在可以正确地更改任何文件的权限。无论如何,这是我从 Cygwin 获得的输出

ssh -vT [email protected]

OpenSSH_6.2p2, OpenSSL 1.0.1e 11 Feb 2013
debug1: Connecting to github.com [204.232.175.90] port 22.
debug1: Connection established.
debug1: identity file /.ssh/id_rsa type 1
debug1: identity file /.ssh/id_rsa-cert type -1
debug1: identity file /.ssh/id_dsa type -1
debug1: identity file /.ssh/id_dsa-cert type -1
debug1: identity file /.ssh/id_ecdsa type -1
debug1: identity file /.ssh/id_ecdsa-cert type -1
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_6.2
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.5p1 Debian-6+squeeze1+github12
debug1: match: OpenSSH_5.5p1 Debian-6+squeeze1+github12 pat OpenSSH_5*
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
debug1: Server host key: RSA 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48
debug1: Host 'github.com' is known and matches the RSA host key.
debug1: Found key in /.ssh/known_hosts:1
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: Roaming not allowed by server
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Offering RSA public key: /.ssh/id_rsa
debug1: Authentications that can continue: publickey
debug1: Trying private key: /.ssh/id_dsa
debug1: Trying private key: /.ssh/id_ecdsa
debug1: No more authentication methods to try.
Permission denied (publickey).

当我运行这个程序时,有一件有趣的事情:

$ ssh-add -l
Could not open a connection to your authentication agent.

我还要指出的是,我可以在 Powershell 上很好地使用 git。

答案1

您的 ssh-agent 可能是从 PowerShell 启动文件启动的。这可能是它在那里工作的原因。

更简单的解决方法是启动另一个代理。您可以使用PuTTY 的盛会。在此处查看如何配置您的 shell 来设置与 Pageant 的连接,以便 ssh-add 和 ssh 可以使用它: http://pascal.nextrem.ch/2011/03/11/using-cygwin-ssh-with-putty-pageant/

相关内容