fatal: 'origin' does not appear to be a git repository fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists
时间: 2023-07-11 19:45:50 浏览: 276
windows下Idea使用git clone failed. Could not read from remote repository.
这个错误通常是因为 Git 找不到名为“origin”的远程 Git 存储库。这可能是因为您没有将远程存储库添加为 Git 的远程源。您可以尝试使用以下命令将远程存储库添加为 Git 的远程源:
```
git remote add origin <remote repository URL>
```
请确保将 `<remote repository URL>` 替换为您实际的远程存储库 URL。如果您已经添加了远程存储库作为 Git 的远程源,则可能是您没有正确的访问权限。请确认您在访问远程存储库时使用了正确的凭据。
阅读全文