關聯 github 拉取專案

pdog發表於2017-12-14

好久沒有拉取過專案了 ,都快忘了怎麼用了 今天用gitbash拉取分支的時候遇到了 fatal: Could not read from remote repository.

因為新公司的電腦上沒有裝ssh, 搞一下,感謝http://blog.csdn.net/i_peter/article/details/62418911

  1. Windows下開啟Git Bash,建立SSH Key,按提示輸入密碼: $ ssh-keygen -t rsa -C "註冊郵箱"

  2. 我沒有密碼就直接過了,三次都是直接回車過。

  3. 獲取key,開啟.ssh下的id_rsa.pub檔案,裡面的內容就是key的內容 $ start ~/.ssh/id_rsa.pub

  4. github上新增生成的SSH keys

  5. 測試ssh key是否成功,使用命令$ssh -T git@github.com 如果出現You’ve successfully authenticated, but GitHub does not provide shell access 。這就表示已成功連上github

  6. 該幹嘛幹嘛 $ git clone yourtargeturl

相關文章