1

我创建了一个本地仓库

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 版本。

有任何想法吗 ?

4

1 回答 1

0

您需要让它知道哪个存储库 - 最简单的是:

remote-host $ cd ~/test/ 
remote-host $ hg --verbose out
于 2013-07-22T20:36:25.100 回答