【发布时间】:2013-07-19 16:17:14
【问题描述】:
我创建了一个本地仓库
local-host $ hg init ~/test/
然后在远程主机上进行克隆
remote-host $ hg clone ssh://user@local-host/test
没有任何问题。
当我尝试检查远程仓库中是否有传出更改时,我收到此错误
remote-host $ cd test
remote-host $ hg --verbose out
comparing with ssh://user@local-host/test
running ssh user@local-host 'hg -R test serve --stdio'
searching for changes
no changes found
remote: abort: no repository found in '/home/user' (.hg not found)!
remote: abort: no repository found in '/home/user' (.hg not found)!
如果我在远程/本地存储库中提交任何更改并推送它,我会收到错误但更改被推送。
两个主机都有相同的 mercurial 版本。
有什么想法吗?
【问题讨论】:
-
仓库是否位于远程机器上的
~/test?
标签: mercurial