下载Laravel Admin需要我的Git凭据,但这是公开回购

qhhrdooz  于 2022-10-23  发布在  Git
关注(0)|答案(1)|浏览(118)

我正在使用Laravel 8,我想下载并安装Laravel-Admin,但我在IDE终端上遇到了这个错误:

Cloning failed using an ssh key for authentication, enter your GitHub credentials to access private repos
Head to https://github.com/settings/tokens/new?scopes=repo&description=Composer+on+ITnanoclub+2022-10-23+1036
to retrieve a token. It will be stored in "C:/Users/User 1/AppData/Roaming/Composer/auth.json" for future use by Composer.
Token (hidden):

我尝试连接VPN,但再次显示此错误。。。
那么这里出了什么问题?我如何解决这个问题?
如果你能与我分享任何关于这个的想法或建议,我将非常感激。。。
以下是屏幕截图:


小时
这是ping结果:


小时

dffbzjpn

dffbzjpn1#

它是一个公共存储库,但如果您的命令首先尝试通过SSH进行克隆,它可能会回退到HTTPS并请求凭据作为回退机制的一部分。
如果它立即尝试使用HTTPS进行克隆,那就不同了:因为它是一个公共存储库,所以不需要HTTPS凭据。
为此,尝试并设置:

git config --global url."https://github.com/".insteadOf ssh://git@github.com/
git config --global url."https://github.com/".insteadOf git@github.com:

然后重试您的composer require encore/laravel-admin

相关问题