Git
git 和 github
###安装git
sudo apt install git
###设置用户信息
git config --global user.name "user"
git config --global user.email "[email protected]"
###生成ssh密钥(生成的id_rsa.pub添加的Github)
ssh-keygen -t rsa -C "[email protected]"
#git设置代理
git config --global http.proxy '<http://127.0.0.1:7890>'
git config --global https.proxy '<http://127.0.0.1:7890>'
#git查看代理
git config --global --get http.proxy
git config --global --get https.proxy
#git取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
#Github连通性测试
ssh -T [email protected]
#git修改443端口
$ vim ~/.ssh/config
Host [github.com](http://github.com)
Hostname [ssh.github.com](http://ssh.github.com)
Port 443