Git How To Stop Relogin On Every Push

Lets 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.