Answers for "linux git pull keep asking password but ssh configured"

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
0

git push and pull not asking password

sudo vim .git/config

url = https://username:[email protected]


git remote set-url origin [email protected]:gitusername/projectname.git
Posted by: Guest on June-02-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language