git always asks for username and password code example

Example 1: git asking for password every time

# it will ask just one more time
git config --global credential.helper store

Example 2: how to get git username and password

$ git config --global user.name "Mona Lisa"
$ git config --global user.name
$ mona

Example 3: 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 4: git command line always asks for password

git config --global credential.helper wincred

Example 5: git push ubuntu need to supply email and password everytime

# inside of ~/.netrc
machine github.com
       login <user>
       password <password>