git avoid credentials code example
Example 1: avoid specifying username and password github
git config credential.helper store
Example 2: git push ubuntu need to supply email and password everytime
# inside of ~/.netrc
machine github.com
login <user>
password <password>