git remember password code example
Example 1: git store credentials
// local
git config credential.helper store
// global
git config --global credential.helper store
Example 2: git remember credentials
git config --global credential.helper store
Example 3: git credentials
# this will store your credentials "forever"
git config --global credential.helper store
Example 4: git config --global credential.helper osxkeychain
git config --global credential.helper osxkeychain