git logout command code example
Example: git logout
# logout from git cmi
# Remove your SSH keys from ~/.ssh (or where you stored them).
rm -rf /home/user/.ssh
# Remove your user settings:
git config --global --unset user.name
git config --global --unset user.email
git config --global --unset credential.helper
#Or all your global settings:
git config --global --unset-all