我怎样才能解决 "We were unable to install a project on your server" 在 forge laravel 中的问题?
How can I solve "We were unable to install a project on your server" in forge laravel?
如果我在 forge 中安装存储库,会出现如下错误:
Cloning into 'testshop.co.id'...
GitLab: The project you were looking for could not be found.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
像这样的完整错误:
如何解决这个错误?
仔细检查您的实际 ssh URL 并查看是否:
GitLab 识别出您(显示 "Welcome" 消息)
ssh -T git@your.gitlab.server
GitLab 是否已将您列为要访问的项目的所有者或成员(为此,您需要转到 GitLab 网页界面)
您确定您的存储库 link 是正确的吗?错误是它找不到您的存储库。
它应该与 UserName/ProjectName 类似。
为了确保它是什么,请转到您使用的任何源代码管理并查看 URL 所以对于我的 github 项目:
https://github.com/KyleWardle/RomanNumerals
你要放在锻造中的 link 会是
KyleWardle/RomanNumerals
我的熔炉:
如果我在 forge 中安装存储库,会出现如下错误:
Cloning into 'testshop.co.id'...
GitLab: The project you were looking for could not be found.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
像这样的完整错误:
如何解决这个错误?
仔细检查您的实际 ssh URL 并查看是否:
GitLab 识别出您(显示 "Welcome" 消息)
ssh -T git@your.gitlab.server
GitLab 是否已将您列为要访问的项目的所有者或成员(为此,您需要转到 GitLab 网页界面)
您确定您的存储库 link 是正确的吗?错误是它找不到您的存储库。
它应该与 UserName/ProjectName 类似。
为了确保它是什么,请转到您使用的任何源代码管理并查看 URL 所以对于我的 github 项目: https://github.com/KyleWardle/RomanNumerals
你要放在锻造中的 link 会是
KyleWardle/RomanNumerals
我的熔炉: