add local git credentials code example
Example 1: store git credentials
// local
git config credential.helper store
// global
git config --global credential.helper store
Example 2: add credentials to git
git config user.name "your username"
git config user.password "your password"