我有文件/目录结构:
main/.hg
main/subrepo/.hg
main/subrepo1/.hg
我有包含此类内容的 .hgignore 文件
.hg
最后,我想在“主”存储库中进行提交,其中包含所有文件,包括来自 main/subrepo 和 main/subrepo1 的所有文件,不包括文件夹 main/subrepo/.hg 和 main/subrepo1/.hg(所以将提交主文件夹中的所有文件,不包括其中的 .hg 文件夹)。但是 Mercurial 跳过了 main/subrepo/* 和 main/subrepo1/*。它不包括此子文件夹/子存储库以完全提交。我怎样才能解决这个问题?