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

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -