save password for git push code example
Example 1: git save password global
git config --global user.name "your username"
git config --global user.password "your password"
git config --global credential.helper store
Example 2: git push username password
git add .
git commit -m "Bug Fixed"
git push https://<username>:<password>@github.com/<username>/<repository>.git --all