git push asking for credentials code example
Example 1: git push pull asks for login everytime
$ git config credential.helper store
$ git push https://github.com/repo.git
Username for 'https://github.com': <USERNAME>
Password for 'https://[email protected]': <PASSWORD>
Example 2: avoid specifying username and password github
git config credential.helper store