how to add username and password in git code example
Example 1: how to get git username and password
$ git config --global user.name "Mona Lisa"
$ git config --global user.name
$ mona
Example 2: save account to git
git config --global credential.helper store
Example 3: add username password git
$ git config --global credential.helper cache