标签:
系统:ubuntu15.10
安装git:
sudo apt-get install git
设置git用户名和邮箱:
git config --global user.name ‘XXX‘ git config --global user.email ‘XX@xxx.com‘
设置ssh验证的方式登录:
ssh-keygen -C ‘user.email邮箱地址‘ -t rsa
把生成的pub文件内容存储在github的用户设置中。
下来就可以通过
git clone git@github.com:xxx/xxxxx.git
使用git
标签:
原文地址:http://www.cnblogs.com/aeropig/p/5042543.html