标签:
第一部分:安装git(本人使用ubuntu系统)
sudo apt-get install git
第二部分:基本配置
git config core.filemode false//忽略文件属性的修改
git config --global user.name "vincentguo"
git config --global user.email "apanly@163.com"
第三部分:生成ssh key 放到 github 或者 其他git平台
ssh-keygen//一直确认
将生成的pub公钥内容复制到 github 或者 其他git平台
到这里 你应该就可以 使用 git clone 代码了
第四部分:git-supp 小工具
https://github.com/apanly/git-supp可以提示很多东西:
标签:
原文地址:http://www.cnblogs.com/apanly/p/5117057.html