'upstream/master' does not appear to be a git repository fatal: Could not read from remote repository.
时间: 2023-11-14 17:09:03 浏览: 166
码云出现错误git@gitee.com: Permission denied (publickey). fatal: Could not read from remote repository. P
5星 · 资源好评率100%
这个错误通常是因为你的本地仓库没有与远程仓库建立连接。你可以使用以下命令将本地仓库与远程仓库建立连接:
```
git remote add upstream <远程仓库地址>
```
其中,`<远程仓库地址>`是指你要连接的远程仓库的地址。连接成功后,你就可以使用以下命令将远程仓库的代码拉取到本地:
```
git fetch upstream
```
阅读全文