AWS git clone 或 pull 不起作用且没有错误消息

AWS git clone 或 pull 不起作用且没有错误消息

在 AWS/AMI 实例之一中,我尝试使用git clone ...它,Cloning into '<repo name>'...但它没有克隆存储库,也没有显示任何错误或任何其他消息,我也尝试过已经在其他服务器上运行的不同存储库,

我也尝试过使用.gitdir 上传完整的代码,它显示了正确的状态git status并显示了分支,git branch但是命令git pull也不起作用,也没有显示任何错误消息。

更新 1:我刚刚尝试执行 git fetch --all,并收到以下错误:

Fetching origin
error: Could not fetch origin

更新 2:当我将远程来源更改为使用 ssh 而不是 https 路径,并执行 git fetch --all 或 git clone 时,出现以下错误:

Fetching origin
Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
error: Could not fetch origin

请注意,我正在从本地机器提交同一个存储库。

相关内容