Git:"无法读取远程存储库",当远程是另一个本地存储库时

时间:2017-01-30 10:35:28

标签: git merge git-merge

我正在使用存储库AAA的本地副本,并且我已将另一个本地存储库BBB添加为远程bbb。 具体来说,我尝试添加每个

git remote add bbb ../../Path/to/BBB
git remote add bbb ../../Path/to/BBB/
git remote add bbb ../../Path/to/BBB/.git

然而,当我发出

时,其中任何一个
git fetch bbb

失败并显示错误消息

fatal: '../../Path/to/BBB' 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.

给定路径确实是存储库的根目录:如果我发出

cd ../../Path/to/BBB
git status
很高兴地告诉我那里的状态。我能做错什么?

(背景:我正在按照this answer中的说明将BBB合并到AAA中。)

0 个答案:

没有答案