Answers for "git does not ask for credentials"

1

set git credentials so that i never ask for username and password while pushin

git config --global credential.helper store

git config --global credential.helper cache
Posted by: Guest on May-20-2021
1

git not asking for password

git config --system --unset credential.helper
git config --global --unset credential.helper
git config --local --unset credential.helper
Posted by: Guest on February-02-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language