我正在使用存储库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中。)