Git How To Stop Relogin On Every Push
08 Apr 2020Lets permanently authenticating with Git repositories using username and password.
Run following command to enable credential caching:
$ git config credential.helper store
Afterwards, make some changes, commit and try with git push.
No more relogin.