1. 程式人生 > >git使用ssh密鑰

git使用ssh密鑰

pro reat windows git push keys you ado 都差不多 ucc

git使用https協議,每次pull, push都要輸入密碼,相當的煩。
使用git協議,然後使用ssh密鑰。這樣可以省去每次都輸密碼。


大概需要三個步驟:
一、本地生成密鑰對;
二、設置github上的公鑰;
三、修改git的remote url為git協議。


一、生成密鑰對。
=============
大多數 Git 服務器都會選擇使用 SSH 公鑰來進行授權。系統中的每個用戶都必須提供一個公鑰用於授權,沒有的話就要生成一個。生成公鑰的過程在所有操作系統上都差不多。首先先確認一下是否已經有一個公鑰了。SSH 公鑰默認儲存在賬戶的主目錄下的 ~/.ssh 目錄。進去看看:

$ cd ~/.ssh 
$ ls
authorized_keys2  id_dsa       known_hosts config            id_dsa.pub

關鍵是看有沒有用 somethingsomething.pub 來命名的一對文件,這個 something 通常就是 id_dsaid_rsa。有 .pub後綴的文件就是公鑰,另一個文件則是密鑰。假如沒有這些文件,或者幹脆連 .ssh 目錄都沒有,可以用 ssh-keygen 來創建。該程序在 Linux/Mac 系統上由 SSH 包提供,而在 Windows 上則包含在 MSysGit 包裏:

$ ssh-keygen -t rsa -C "[email protected]"

# Creates a new ssh key using the provided email # Generating public/private rsa key pair.

# Enter file in which to save the key (/home/you/.ssh/id_rsa):

直接Enter就行。然後,會提示你輸入密碼,如下(建議輸一個,安全一點,當然不輸也行):

Enter passphrase (empty for no passphrase): [Type a passphrase] 
# Enter same passphrase again: [Type passphrase again]

完了之後,大概是這樣。

Your identification has been saved in /home/you/.ssh/id_rsa. 
# Your public key has been saved in /home/you
/.ssh/id_rsa.pub. # The key fingerprint is: # 01:0f:f4:3b:ca:85:d6:17:a1:7d:f0:68:9d:f0:a2:db [email protected]

這樣。你本地生成密鑰對的工作就做好了。


二、添加公鑰到你的github帳戶
========================
1、查看你生成的公鑰:大概如下:

$ cat ~/.ssh/id_rsa.pub  
ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAklOUpkDHrfHY17SbrmTIpNLTGK9Tjom/BWDSU GPl+nafzlHDTYW7hdI4yZ5ew18JH4JW9jbhUFrviQzM7xlE
LEVf4h9lFX5QVkbPppSwg0cda3 Pbv7kOdJ/MTyBlWXFCR+HAo3FXRitBqxiX1nKhXpHAZsMciLq8V6RjsNAQwdsdMFvSlVK/7XA t3FaoJoAsncM1Q9x5+3V
0Ww68/eIFmb1zuUFljQJKprrX88XypNDvjYNby6vw/Pb0rwert/En mZ+AW4OZPnTPI89ZPmVMLuayrD2cE86Z/il8b+gw3r3+1nKatmIkjn2so1d01QraTlMqVSsbx NrRFi9wrf+M7Q== [email protected].local

2、登陸你的github帳戶。然後 Account Settings -> 左欄點擊 SSH Keys -> 點擊 Add SSH key
3、然後你復制上面的公鑰內容,粘貼進“Key”文本域內。 title域,你隨便填一個都行。
4、完了,點擊 Add key。

這樣,就OK了。然後,驗證下這個key是不是正常工作。

$ ssh -T [email protected].com
# Attempts to ssh to github

如果,看到:

Hi username! You‘ve successfully authenticated, but GitHub does not # provide shell access.

就表示你的設置已經成功了。


三、修改你本地的ssh remote url. 不用https協議,改用git 協議
================================================
可以用git remote -v 查看你當前的remote url

$ Git remote -v

origin https://github.com/someaccount/someproject.git (fetch) origin https://github.com/someaccount/someproject.git (push)

可以看到是使用https協議進行訪問的。

你可以使用瀏覽器登陸你的github,在上面可以看到你的ssh協議相應的url。類似如下:

[email protected].com:someaccount/someproject.git

這時,你可以使用 git remote set-url 來調整你的url。

git remote set-url origin [email protected].com:someaccount/someproject.git

完了之後,你便可以再用 git remote -v 查看一下。

OK。

至此,OK。

你可以用git fetch, git pull , git push, 現在進行遠程操作,應該就不需要輸入密碼那麽煩了。

git使用ssh密鑰