how to set up git ssh creds to push

Shell
git config --global credential.helper 'cache --timeout 7200'
$ 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>

Source

Also in Shell: