Git Command Prompt Configuration you already add your username and email account in the Command prompt. If you want to remove the your configuration from the Git Command prompt you execute the simple command you can remove the all the setting from the command prompt.
They are two options:
First:
If you want to remove your particular user name and email id execute this command
git config --global --remove-all user.name 'YOUR USER NAME' git config --global --remove-all user.eamil 'YOUR EMAIL ID'
Second:
If you want to remove all the user name and email id execute this command
git config --global --unset-all user.name git config --global --unset-all user.email