Answers for "git pull asks for password"

12

git asking for password every time

# it will ask just one more time
git config --global credential.helper store
Posted by: Guest on August-20-2020
2

git push pull asks for login everytime

$ git config credential.helper store
$ git push https://github.com/repo.git

Username for 'https://github.com': <USERNAME>
Password for 'https://[email protected]': <PASSWORD>
Posted by: Guest on June-26-2020
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