Answers for "terminal asks for password when git pull"

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