I cloned a repo at git hub via the https:// protocol to avoid setting up the SSH key stuff. This is all good except every time I push it asks for my password. Is there any
Use an authentication token in ~/.netrc file, typing password can be avoided.
Recently github added the token feature. Go to settings/applications then create a personal access token. The syntax in netrc is one-line: machine github.com login .
Even better feature, the token is intended to allow users not use the account password for project work. Only use the password when doing admin work, like creating new token or revoke an old token.
See another SO post for ways of credential caching: Is there a way to skip password typing when using https:// github