setup git credentials code example
Example 1: add credentials to git
git config user.name "your username"
git config user.password "your password"
Example 2: git credential save
$ git config credential.helper store
$ git push http://example.com/repo.git
Username: <type your username>
Password: <type your password>
[several days later]
$ git push http://example.com/repo.git
[your credentials are used automatically]
Example 3: save account to git
git config --global credential.helper store
Example 4: add credentials git linux
$ git config --global credential.helper 'cache --timeout=3600'
Example 5: default credentials git
$ git config credential.helper store
$ git push http://example.com/repo.git
Username: <type your username>
Password: <type your password>