環(huán)境:Ubuntu系統(tǒng)
Step1:切換到目錄.ssh下
$ cd ~/.ssh
如果沒有此文件或目錄帽蝶,則跳轉(zhuǎn)到Step3
Step2:備份并移除已存在的ssh key
$ ls
$ mkdir key_backup
$ cp id_rsa* key_backup
$ rm id_rsa*
Step3:生成一個新的ssh key
$ ssh-keygen -t rsa -C "your@example.com"
提示如下信息:
Now you need to enter a passphrase.
Why do passphrases matter?
Which should give you something like this:
輸入的密碼為空
Step4:在github上添加ssh key
步驟:"Account Setting" > "SSH Keys" > "Add SSH key"
打開id_rsa.pub(公有ssh key)文件励稳,將ssh key復(fù)制囱井,標(biāo)題為郵箱。
Step5:測試
$ ssh -T git@github.com
Step6:設(shè)置用戶名和郵箱
$ git config --global user.name "name"
$ git config --global user.email "email"