Git連線Github是遇到的問題

2021-07-22 20:08:52 字數 942 閱讀 5098

ssh -t [email protected] 報錯

warning: permanently added the rsa host key for ip address '192.30.253.113' to the list of known hosts.

這個需要修改,/etc/hosts,加上下面這行:

192.30.253.113 github.com

ssh -t [email protected] 報錯

「permission denied (publickey).」

用這個命令檢視一下,

ssh -t -v [email protected]

最後幾行就是問題所在:

debug1: authentications that can continue: publickey

debug1: next authentication method: publickey

debug1: trying private key: /c/users/xuan/.ssh/id_rsa

debug1: trying private key: /c/users/xuan/.ssh/id_dsa

debug1: trying private key: /c/users/xuan/.ssh/id_ecdsa

debug1: trying private key: /c/users/xuan/.ssh/id_ed25519

debug1: no more authentication methods to try.

permission denied (publickey).

在.ssh資料夾中找不到id_rsa檔案。我的是因為生成在外層資料夾而且檔名也不對。

所以拷貝到.ssh資料夾即可。一共有兩個檔案id_rsa, id_rsa.pub。

還有乙個known_hosts檔案,有用,放那即可。

配置Git連線GitHub

本地建立ssh key ssh keygen t rsa c your email youremail.com 後面的your email youremail.com改為你在github上註冊的郵箱,之後會要求確認路徑和輸入密碼,我們這使用預設的一路回車就行。成功的話會在 下生成.ss 件夾 通過g...

github連線本地git

1.選好本地倉庫的目錄,進去右鍵 git bash,如圖 git init3.為了把本地的倉庫傳到github,還需要配置ssh key,在本地建立ssh key ssh keygen t rsa c your email email.com 回車會讓你輸入存放儲存ssh key的位址,它給了乙個預...

git遠端連線github

1.建立ssh key,檢視 path c 使用者 使用者名稱 ssh 是否有id rsa id rsa.pub檔案,如果沒有需要手動生成。開啟git bash,在控制台中輸入命令 ssh keygen t rsa c your email com 郵箱為github上註冊的郵箱 一路回車 2.路徑...