如何删除 git 用户 属性?
How can I delete git user property?
我不小心输入了错误的git命令。
git config --global user.mail example@example.com
现在我在输入 git config--list
:
时看到一个额外的 属性
user.mail = "example@example.com"
我怎样才能摆脱它?
git config --global --unset user.mail
来自手册页
--unset
Remove the line matching the key from config file.
我不小心输入了错误的git命令。
git config --global user.mail example@example.com
现在我在输入 git config--list
:
user.mail = "example@example.com"
我怎样才能摆脱它?
git config --global --unset user.mail
来自手册页
--unset
Remove the line matching the key from config file.