Answers for "how to set up git ssh creds to push"

0

how to set up git ssh creds to push

$ 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>
Posted by: Guest on June-05-2020
0

how to set up git ssh creds to push

git config --global credential.helper 'cache --timeout 7200'
Posted by: Guest on June-26-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language