Answers for "git logout"

1

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
Posted by: Guest on May-24-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language