以下命令:
$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保存我的项目,但不想使用“测试用户”名称执行命令。