Fermer Sessin Git CLI

Remove your ssh keys (~/.ssh)
Then remove git config:
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
JrogeT