Следующая команда:
$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, но не хочу выполнять команду с именем «test user».