Answers for "git push asking username and password"

6

git push username password

git add .

git commit -m "Bug Fixed"

git push https://<username>:<password>@github.com/<username>/<repository>.git --all
Posted by: Guest on December-30-2020
1

set git credentials so that i never ask for username and password while pushin

git config --global credential.helper store

git config --global credential.helper cache
Posted by: Guest on May-20-2021

Code answers related to "git push asking username and password"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language