adding github password in git code example
Example 1: git push username password
git add .
git commit -m "Bug Fixed"
git push https://<username>:<password>@github.com/<username>/<repository>.git --all
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>