git config 全局文件-删除设置

git config 全局文件-删除设置

以下命令:

$git config --global --list

给我:

user.name=test user
user.name=gotqn

我想删除名字。我参考了此文章并执行了以下命令但没有任何结果:

git config --global --remove-section user.name='test user'
git config --global --remove-section user.name="test user"
git config --global --remove-section user.name=test user
git config --global --remove-section user.name
git config --global --remove-section test user

我正在使用 Ubuntu 12.04,

git version

给我

git version 1.7.9.5

请帮忙,因为我想尝试使用 git 保存我的项目,但不想以“测试用户”名称执行命令。

答案1

您可以在主文件夹中编辑该文件。所有设置都保存~/.gitconfig在此处。--global

答案2

答案很晚了,但希望仍然有帮助:

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

然后你就可以自由地:

git config --global --add user.name <whatever>

答案3

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

或者您也可以像这样更改用户名:

git config --global --replace-all user.name "New User Name"

答案4

最后但并非最不有用的,虽然这是一个边缘情况是使用

git config --global --remove-section user

就我而言,它几乎不费吹灰之力就完美地清除了数据

相关内容