如何在运行“git克隆git@emote.git”时提供用户名和密码?
我知道如何为HTTPS请求提供用户名和密码,如下所示:
git clone https://username:password@remote
但我想知道如何为遥控器提供用户名和密码,如下所示:
git clone git@remote.git
我试过这样做:
git clone username:password@git@remote.git git clone git@username:password@remote.git git clone git@remote.git@username:password
但他们没起作用。
相关分类