我有本地库“ proj1”的副本。我想通过Mercurial API通过python脚本获得传入的更改。我试图使它像这样:from mercurial import hg, ui, commands, util, scmutil, httpconnectionrepopath = "/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(...)正常运行。你能帮助我吗?谢谢。
添加回答
举报
0/150
提交
取消