git config - How can i delete git user property? -
i accedently typed wrong git command.
git config --global user.mail example@example.com
and see property when type git config--list
:
user.mail = "example@example.com"
how can rid of it?
git config --global --unset user.mail
from man page
--unset remove line matching key config file.
Comments
Post a Comment