我有一个 mercurial 存储库“proj1”的本地副本。我想通过 python 脚本使用Mercurial API获取传入的更改。我试着让它这样:
from mercurial import hg, ui, commands, util, scmutil, httpconnection
repopath = "/home/username/develop/hg_repo"
myui = ui.ui()
repo = hg.repository(myui, repopath)
commands.incoming(myui, repo)
此代码失败并显示消息:
mercurial.error.RepoError:未找到存储默认值
但是 commands.summary(...)、commands.branch(...)、commands.branches(...) 工作正常。
你能帮助我吗?谢谢。
PS:对不起我的英语