github set password command line code example
Example 1: git save username and password
git config --global credential.helper store
Example 2: setup github password terminal
$ git config credential.helper store
$ git push https://github.com/owner/repo.git
Username for 'https://github.com': <USERNAME>
Password for 'https://[email protected]': <PASSWORD>