Github克隆:403访问信息/引用时禁止访问

vc9ivgsu  于 2023-01-28  发布在  Git
关注(0)|答案(2)|浏览(165)

我正在将一个私有回购协议从克隆到一个AWS框中,以便为生产做好准备。

git clone https://github.com/org_name/project_name.git

它返回以下错误:

Initialized empty Git repository in /home/pgupta/project-annie/.git/
error: The requested URL returned error: 403 Forbidden while accessing https://github.com/org_name/project_name.git.git/info/refs

fatal: HTTP request failed

我不知道这里出了什么问题。

dy1byipe

dy1byipe1#

我用SSH克隆了它,步骤如下:https://help.github.com/articles/which-remote-url-should-i-use/

Generate ssh key pair using the instructions given above
copy the ssh url from github repo
git clone url

或者,您也可以在此处找到问题的解决方案:https://stackoverflow.com/a/12538716/3413239

lmvvr0a8

lmvvr0a82#

我认为这只是因为你在你的网址末尾多了一个“.git”。

相关问题