1

私は git リポジトリを持っており、Windows マシンと Bash コンソールでそれを正常に複製できます。しかし、Windows コンソールでクローンを作成しようとすると、git は ssh-keys を見つけることができず、パスワードを要求されます。

ここにいくつかの有用な情報があります:

[36]: ssh -v -T xx.xxx.xxx.xxx
OpenSSH_4.6p1, OpenSSL 0.9.8e 23 Feb 2007
debug1: Connecting to xx.xxx.xxx.xxx [xx.xxx.xxx.xxx] port 22.
debug1: Connection established.
debug1: identity file /.ssh/identity type -1
debug1: identity file /.ssh/id_rsa type -1
debug1: identity file /.ssh/id_dsa type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.8
debug1: match: OpenSSH_5.8 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_4.6
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-cbc hmac-md5 none
debug1: kex: client->server aes128-cbc 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: Host '62.105.139.252' is known and matches the RSA host key.
debug1: Found key in /.ssh/known_hosts:3
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey,keyboard-interactive
debug1: Next authentication method: publickey
debug1: Trying private key: /.ssh/identity
debug1: Trying private key: /.ssh/id_rsa
debug1: Trying private key: /.ssh/id_dsa
debug1: Next authentication method: keyboard-interactive
Password:

$HOMW:

[43]: echo $HOME 
C:\Users\myname
4

1 に答える 1

4

その場合cd ~; pwd -W、bash キーはこのフォルダーの .ssh サブディレクトリにあります。pwd -W は、現在の msys ディレクトリの Windows パスを提供します。おそらく、これは、cmd プロンプト シェルの HOME または USERPROFILE または HOMEPATH と同じではありません。HOME 環境変数を使用して、両方が一致することを確認できます。Windows 環境で HOME が設定されていない場合、設定されている場合は %HOMEDRIVE%%HOMEPATH% に設定されるか、%USERPROFILE% に設定されます (NT ドメインにいるかどうかによって異なります)。自分で HOME を設定すると、自動検出が上書きされます。

于 2013-04-05T15:10:15.430 に答える