GitHub註冊與Git安裝
阿新 • • 發佈:2019-01-10
註冊GitHub
GitHub官網 ☞☞☞☞【戳我】
一、開啟,如下圖所示, 按照要求進行註冊。
安裝Git
Git官網下載☞☞☞☞ 【戳我】
一、開啟,根據自己的電腦系統選擇不同的版本,這裡主要是以Windows介紹:
二、下載安裝完成後,點選Windows圖示,可以看下這些安裝的程式
Linux 各版本安裝Git方法:
Debian/Ubuntu $ apt-get install git-core Fedora $ yum install git Gentoo $ emerge--ask --verbose dev-vcs/git Arch Linux $ pacman -S git
建立連結
連結條件:
-
使用GitHub前先建立自己的SSH Key,目的是使用SSH Key認證方式保證通訊安全。
1)進入SSH目錄
[email protected] MINGW32 ~ (master) $ cd~/ .ssh bash: cd~/: No such file or directory [email protected]-J MINGW32 ~ (master) $ pwd/c/Users/solo
其中如果不是顯示“bash: cd~/: No such file or directory”,則表示你的電腦已經增加過祕鑰
2)生成SSH祕鑰
如果你已經有了一個祕鑰,預設祕鑰位置~/.ssh/id_rsa檔案存在。
[email protected] MINGW32 ~ (master)
$ ssh-keygen -t rsa -C '[email protected]' ~~~回車
Generating public/private rsa key pair.
Enter file in which to save the key (/c/Users/solo/.ssh/id_rsa): ~~~回車
Created directory '/c/Users/solo/.ssh'.
Enter passphrase (empty for no passphrase): ~~~回車
Enter same passphrase again: ~~~回車
Your identification has been saved in /c/Users/solo/.ssh/id_rsa.
Your public key has been saved in /c/Users/solo/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:RvAvnZKUOerKUE+4D7suNPWBwcKQDlt7NXsqgRMDZTM [email protected]126.com
The key's randomart image is:
+---[RSA 2048]----+
|o*E. . |
|o.*oo oo o |
|oo * + oB |
|..+ =.o+.= . |
| +ooo+S + |
| o..=o. o |
| ...o.o |
| .o = |
| o*.. |
+----[SHA256]-----+
檢視目錄下(C:\~~~\.ssh)有兩個檔案
id_rsa是私鑰,一定要儲存好,萬不可以洩露給其他人。id_rsa.pub是公鑰。
3)新增SSH到GitHub
使用Notpad++或其他文字檔案開啟id_rsa.pub,複製裡面的內容。
登入GitHub,單擊右上角個人頭像→Settings→SSH Keys→Add SSH Keys ,在 Title 文字框中輸入任意字元,在 Key文字框貼上剛才複製的公鑰字串,單擊“Add key”按鈕完成操作,如下圖所示。
4)連線
完成以上操作,就可以使用命令來測試是否可以連線到GitHub伺服器了