Answers for "git config remove username and password"

0

git config remove username and password

1.
// remove credentials 
git config --global --unset core.excludesfile

// removing by yourself
git config --global --edit



2 
//You can use the --unset flag of git config to do this like so:

git config --global --unset user.name
git config --global --unset user.email

// If you have more variables for one config you can use:
git config --global --unset-all user.name
Posted by: Guest on September-15-2021

Code answers related to "git config remove username and password"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language