如何停止使用 rsa 密钥进行 git 拉取?
How do I stop using rsa key for git pull?
存储库是使用密钥克隆的,但现在我需要使用用户和密码身份验证进行拉取,并且执行 git 拉取不会要求凭据。
如何强制拉动请求我提供凭据?
我找到了解决方案:
git remote set-url origin https://github.com/USERNAME/OTHERREPOSITORY.git
在这里找到:
https://help.github.com/articles/changing-a-remote-s-url/
存储库是使用密钥克隆的,但现在我需要使用用户和密码身份验证进行拉取,并且执行 git 拉取不会要求凭据。
如何强制拉动请求我提供凭据?
我找到了解决方案:
git remote set-url origin https://github.com/USERNAME/OTHERREPOSITORY.git
在这里找到: https://help.github.com/articles/changing-a-remote-s-url/