我拿了一个 master 的 fork,master 收到了一些更新,同时我现在想把它拉进我的 fork。所以我所做的是:将 fork 克隆到本地磁盘,进入 dir 并用于git remote add upstram http://xx.xxx.xxx.xxx:pppp/path/to.git
将 master 添加为上游 repo。然后agit fetch upstream
给了我:
fatal: 'upstream' 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.
而且我的磁盘上也确实有该主存储库的克隆,因此我确定具有读取权限。这里有什么问题?
谢谢!