add credentials in git code example
Example 1: git config credential.helper store
$ 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 2: add credentials to git
git config user.name "your username"
git config user.password "your password"
Example 3: add credentials git linux
$ git config --global credential.helper 'cache --timeout=3600'
Example 4: add username password git
$ git config --global credential.helper cache
Example 5: how to store git credentials
git config --global credential.helper store