I know how to include a username and password in a https Git URL like this:
git clone https://username:password@host
But I'd like to know how to provide a username and password to an SSH remote like this:
git clone [email protected]
I've tried like this:
git clone username:password@[email protected]
git clone git@username:[email protected]
git clone [email protected]@username:password
But they haven't worked.