Windows下配置Git連線上github

denson發表於2016-03-08

此處省去安裝Git和註冊github賬號,預設為PC已經安裝好git和自己擁有github賬號。
1、檢查本機是否有ssh key設定,開啟git bash客戶端:

$ cd ~/.ssh 或cd .ssh

如果沒有則提示: No such file or directory

如果有則進入~/.ssh路徑下(ls檢視當前路徑檔案,rm * 刪除所有檔案)

2、使用Git Bash生成新的ssh key。

$ cd ~  #保證當前路徑在”~”下

$ ssh-keygen -t rsa -C "xxxxxx@yy.com"  #建議填寫自己真實有效的郵箱地址
Generating public/private rsa key pair.

Enter file in which to save the key (/c/Users/xxxx_000/.ssh/id_rsa):   #不填直接回車

Enter passphrase (empty for no passphrase):   #輸入密碼(可以為空)

Enter same passphrase again:   #再次確認密碼(可以為空)

Your identification has been saved in /c/Users/xxxx_000/.ssh/id_rsa.   #生成的id_rsa檔案為金鑰

Your public key has been saved in /c/Users/xxxx_000/.ssh/id_rsa.pub.  #生成的id_rsa.pub公鑰

The key fingerprint is:

e3:51:33:xx:xx:xx:xx:xxx:61:28:83:e2:81 xxxxxx@yy.com

*本機已完成ssh key設定,其存放路徑為:c:/Users/xxxx_000/.ssh/下。

註釋:可生成ssh key自定義名稱的金鑰,預設id_rsa。

$ ssh-keygen -t rsa -C “郵箱地址” -f ~/.ssh/githug_blog_keys #生成ssh key的名稱為githug_blog_keys,慎用容易出現其它異常。

新增ssh key到GItHub

1.登入GitHub賬號;點選右上角賬號頭像的“▼”→Settings→SSH kyes→Add SSH key。

2.複製id_rsa.pub的公鑰內容。

3.進入c:/Users/xxxx_000/.ssh/目錄下,開啟id_rsa.pub檔案,全選複製公鑰內容。

4.Title自定義,將公鑰貼上到GitHub中Add an SSH key的key輸入框,最後“Add Key”。

3.開始配置賬戶

$ git config --global user.name “your_username”  #設定使用者名稱

$ git config --global user.email “your_registered_github_Email”  #設定郵箱地址(建議用註冊giuhub的郵箱)

4.測試ssh keys是否設定成功。

$ ssh -T git@github.com
The authenticity of host `github.com (192.30.252.129)` can`t be established.

RSA key fingerprint is 16:27:xx:xx:xx:xx:xx:4d:eb:df:a6:48.

Are you sure you want to continue connecting (yes/no)? yes #確認你是否繼續聯絡,輸入yes

Warning: Permanently added `github.com,192.30.252.129` (RSA) to the list of known hosts.

Enter passphrase for key `/c/Users/xxxx_000/.ssh/id_rsa`:  #生成ssh kye是密碼為空則無此項,若設定有密碼則有此項且,輸入生成ssh key時設定的密碼即可。

Hi xxx! You`ve successfully authenticated, but GitHub does not provide shell access. #出現詞句話,說明設定成功。

將本地專案通過SSH push到GitHub

本地建立專案

1) 建立目錄


$ mkdir test

$ cd test

2) 初始化

$ git init

3) 建立hello.md檔案

$ echo "這是一次測試test ssh key" > hello.md

4) 提交到本地

若出現如上warning提示則重新提交一次即可。


$ git add .   #提交當前目錄下所以檔案

$ git commit -m "add hello.md"   #提交記錄說明 

5) 提交到github

$ git remote add origin ‘貼上複製test ssh key的ssh路徑’

$ git push -u origin master

Enter passphrase for key `/c/Users/hgpin_000/.ssh/id_rsa`:  #ssh key設定密碼故此需要輸入密碼

Github上如何刪除已有的庫?

1.選中你要刪除的庫名
2.專案的上方有一個Settings.
3.在最下面有個 delete this repository 按鈕
4.點選刪除即可。

相關文章