@、git config
参考:http://blog.csdn.net/zxncvb/article/details/22153019
git config --global -l 列出所有全局配置项
git config --global --add name value 在全局配置文件中添加一项配置
比如:
git config --global --add user.email xxx@163.com 添加邮箱
git config --global --add user.name ldb-github 添加用户名
git config --global --add http.proxy 127.0.0.1:62552 添加代理设置
git config --global --unset name 删除全局配置文件中的一项配置
比如:
git config --global --unset http.proxy 删除代理设置
@、Git 常用命令速查表(图文+表格)
http://www.jb51.net/article/55442.htm
@、基础命令