Answers for "git command push with password ssh key"

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
2

git push specify ssh key

GIT_SSH_COMMAND='ssh -i ~/.ssh/your_private_key' git submodule update --init
Posted by: Guest on April-26-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language