Remove user.name / user.email from git config

To Remove the user.name and user.email from global git config;
Open the Git Bash and enter the following code:
git config --global --unset-all user.name
git config --global --unset-all user.email

--

--