I know how to provide a username and password to an HTTPS request like this:
git clone https://username:password@remote
But I’d like to know how to provide a username and password to the remote like this:
git clone git@remote.git
I’ve tried like this:
git clone username:password@git@remote.git
git clone git@username:password@remote.git
git clone git@remote.git@username:password
But they haven’t worked.