最佳答案
我知道如何为HTTPS请求提供用户名和密码,如下所示:
git clone https://username:password@remote
但我想知道如何向远程提供用户名和密码,如下所示:
git clone git@remote.git
我试过这样:
git clone username:password@git@remote.gitgit clone git@username:password@remote.gitgit clone git@remote.git@username:password
但他们没有工作。