我在USB驱动器上启动了一个裸仓库,因此我可以对多台计算机进行良好的版本控制。
在机器(mac)上克隆USB存储库后,我删除了USB,并继续处理克隆的本地副本。然后,我将USB重新安装到计算机上,并尝试将工作推到USB上。但是,当我尝试按下时会出现此错误
git push usb master
fatal: 'usb' 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.
我认为这意味着git找不到任何远程存储库。当我尝试使用git remote
时,没有远程存储库出现。我还确保将USB重新安装在同一端口上,但问题仍然存在。我需要以某种方式重新建立连接吗?
答案 0 :(得分:1)
添加USB存储库遥控器,然后将其推入即可:
git remote add myUSB /path/to/usb/repo
# then you could do
git fetch myUSB
git push myUSB some-branch