Jnnngs
Home
About
 Admin
  11 minutes

Store your GIT credentials permanently using git-credential-store as follows:

Store your GIT credentials permanently using git-credential-store as follows:
git config credential.helper store

Note: While this is convenient, Git will store your credentials in clear text in a local file (.git-credentials) under your project directory (see below for the "home" directory). If you don't like this, delete this file and use the cache option.

If you want Git to resume asking you for credentials every time it needs to connect to the remote repository, you can run this command:

git config --unset credential.helper

To store the passwords in .git-credentials in your %HOME% directory as opposed to the project directory: use the --global flag

git config --global credential.helper store