Git工具的配置文件位于~/.gitconfig
,我们可以直接编辑这个配置文件,也可以使用git config
命令进行配置。这篇笔记我们总结一些常用的Git配置。
一般来说,Git每次提交都需要提供用户名和邮箱,我们可以通过以下命令配置用户名和邮箱。
git config --global user.name gacfox
git config --global user.email gacfox@gmail.com
.gitconfig
文件中,对应的配置字段如下。
[user]
email = gacfox@gmail.com
name = gacfox
有时由于局部网络防火墙配置原因,某些Git托管平台会被封禁,这时就需要配置代理来访问了。
配置HTTP代理。
git config --global http.proxy http://127.0.0.1:1080
配置socks5代理。
git config --global http.proxy socks5://127.0.0.1:1080
.gitconfig
文件中,对应的配置字段类似如下。
[http]
proxy = socks5://127.0.0.1:1080
如果想删除这些配置,可以执行git config --global --unset http.proxy
或直接从.gitconfig
配置文件中删除即可。