Git 用法总结
· 6 min read
GUI 客户端软件其实也是调用的 git 接口,有时候 git 命令操作起来更方便
全局设置
用户信息,包含用户名和 email
git config --global user.name calvin
git config --global user.email calvin@example.com
编辑器
Linux 环境下默认是 nano 编辑器
git config --global core.editor /usr/bin/vim
这个最好设置一下,因为下面的rebase
等命令会需要用来编辑文本
gitignore
git config --global core.excludesfile /Users/zhangwen/.gitignore_global
github 开源了一个收集各个语言、系 统环境相关的gitignore
设置代理
git config --global http.proxy socks5://127.0.0.1:1086
git config --global https.proxy socks5://127.0.0.1:1086
git config --global http.sslverify false
指定域名代理:git config --global http.https://github.com.proxy socks5://127.0.0.1:1086