1min read
November 10, 2019
Are you annoyed because git keeps asking for credentials every time after a git push
or pull
?
There are a couple of solutions:
Usually I always used the first method, but recently I found this answer on Stack Overflow. Basically you can run:
git config --global credential.helper store
And after the next authentication, git will save the credentials and you see another details prompt again.
⚠ WARNING: do this only if you are okay about storing your credentials in plain text.