使用 git 克隆的无效身份验证
Invalid authentification with git clone
我正在尝试克隆一个不在我的 github 帐户上但我可以访问的私人存储库。
我使用的命令是
git clone https://username:passwordgit@github.com/path/to/repo.git
git clone https://username:password@github.com/path/to/repo.git
我得到无效的用户名或密码,但如果我这样做
git clone https://github.com/path/to/repo.git
并输入相同的用户名和密码,一切正常。正确的语法是什么?
git clone https://username:password@github.com/path/to/repo.git
这是正确的语法。也许您输入了错误的凭据。你可以在这里参考这个question。
我正在尝试克隆一个不在我的 github 帐户上但我可以访问的私人存储库。 我使用的命令是
git clone https://username:passwordgit@github.com/path/to/repo.git
git clone https://username:password@github.com/path/to/repo.git
我得到无效的用户名或密码,但如果我这样做
git clone https://github.com/path/to/repo.git
并输入相同的用户名和密码,一切正常。正确的语法是什么?
git clone https://username:password@github.com/path/to/repo.git
这是正确的语法。也许您输入了错误的凭据。你可以在这里参考这个question。