Answers for "close sessin git cli"

0

close 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
Posted by: Guest on July-01-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language