git操作全局配置

测试服务器不小心把全局user.name和user.email配置成自己的账户了,在网上搜索如何恢复原来的默认配置,记录下操作过程。

1、配置全局账户信息

git config --global user.name xxx
git config --global user.email [email protected]

2、发现配置有误,想要恢复默认状态

git config --unset --global user.name
git config --unset --global user.email

这样即可将账户和邮箱配置恢复为默认的状态。另外,此方法也可用于更改账户名和邮箱配置错误的问题。

你可能感兴趣的:(git操作全局配置)