1. 安装git
sudo apt-get install git
2. 生成密锁
ssh-keygen -t rsa -C "
username@email.com"
3. 登录github
复制~/.ssh/id_rs.pub里面的内容至github里面的个人设置里面的SSH key
4. 克隆项目
git clone
git@github.com:username/python.git
5. 设置帐号
git config --global user.email you@example.com
git config --global user.name "Your Name"
6. 优化设置
##仅推送当前分支至远程仓库
git config --global push.default simple