Linux(Ubuntu)使用日記(三)------git安裝使用
阿新 • • 發佈:2018-02-08
sdn [1] inux one sans keygen ubunt 命令行 nimbus 3. 為GitHub
1. 安裝
首先,確認你的系統是否已安裝git,可以通過git指令進行查看,如果沒有,在命令行模式下輸入sudo apt-get install git命令進行安裝。
2. 配置
git config --global user.name "xxx" git config --global user.email "[email protected]" ssh-keygen -C ‘you email [email protected]‘ -t rsa cd ~/.ssh gedit id_rsa.pub
然後復制該文件的內容,進行下一步操作
3. 為GitHub 賬號添加SSH Keys
打開github官網登錄-->settings -->SSh and GPG keys-->new SSH key,把剛剛的內容復制到那裏即可。
4. 測試
ssh -T [email protected]
5.相關問題
(1) git clone 速度賊慢
問題解決:
sudo vim /etc/ssh/ssh_config
將GSSAPIAuthentication yes
改為
GSSAPIAuthentication no
參考博客:
[1] 配置:http://www.linuxidc.com/Linux/2016-09/135527.htm
[2] 配置:https://www.cnblogs.com/empty16/p/6858991.html
[3] clone速度慢 http://blog.csdn.net/bolvtin/article/details/51730420
Linux(Ubuntu)使用日記(三)------git安裝使用