2016-04-29 17 views
1

Ich habe git Repo https://github.com/jcubic/jquery.terminal Ich arbeite mit ihm mit Linux-Box (Xubuntu) funktioniert es gut, aber wenn ich versuche, es zu klonen mit Windows 7 Git Bash ich habe dieser Fehler:Git für Windows 7 nicht klonen das Repo von Github

[email protected] MINGW64 /c/docs $ git clone 
https://github.com/jcubic/jquery.terminal.git Cloning into 
'jquery.terminal'... fatal: I don't handle protocol 'https' 

[email protected] MINGW64 /c/docs $ git clone 
[email protected]:jcubic/jquery.terminal.git Cloning into 
'jquery.terminal'... The authenticity of host 'github.com 
(192.30.252.130)' can't be established. RSA key fingerprint is 
SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8. Are you sure you 
want to continue connecting (yes/no)? yes Warning: Permanently added 
'github.com,192.30.252.130' (RSA) to the list of known hosts. 
Permission denied (publickey). fatal: Could not read from remote 
repository. 

Please make sure you have the correct access rights and the repository 
exists. 

[email protected] MINGW64 /c/docs 

gibt es eine Möglichkeit über https klonen möchte ich nicht sSH-Schlüssel von Windows-Box auf GitHub hinzuzufügen.

+0

Ich bin mir ziemlich sicher, dass die letzte Version von Git für Windows damit umgehen könnte. Welche Version verwendest du? – Philippe

+0

@Philippe 2.6.3.windows.1 – jcubic

Antwort

1

In Bezug auf https, überprüfen Sie, ob es keine merkwürdigen Zeichen gibt, as in this question.

ich gerade eingegeben:

git clone https://github.com/jcubic/jquery.terminal 

Es funktionierte gut.

Für ssh müssten Sie in der Tat Ihren öffentlichen Schlüssel zu Ihrem GitHub-Konto hinzufügen und den Wert echo $HOME überprüfen.

Verwandte Themen