问题描述
以下命令:
$git config --global --list
给我:
user.name=test user
user.name=gotqn
我想删除名字。我引用这个article并执行以下命令但没有任何结果:
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保存我的项目,但不想用’test user’名称执行命令。
最佳解决方案
您可以编辑您的个人文件夹中的~/.gitconfig
文件。这是保存所有--global
设置的地方。
次佳解决方案
超晚回答,但希望仍然有帮助:
git config --global --unset-all user.name
然后你可以自由地:
git config --global --add user.name <whatever>
第三种解决方案
git config --global --unset-all user.name
或者你可以像这样改变用户名:
git config --global --replace-all user.name "New User Name"
第四种方案
git config --global -e
这个命令将会打开你所期望的GNU nano编辑器。