Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
放弃当前在Mercurial 主题中不需要的变更集的最佳方法是什么,这些变更集已经被推送并且不能被剥离?
以另一种方式提出问题,是否可以从hg topics输出中删除主题而不发布它?
hg topics
hg prune -r "topic(some-topic-name)"将所有标有该主题的修订在some-topic-name本地标记为已过时
hg prune -r "topic(some-topic-name)"
some-topic-name
hg push --hidden然后应该在远程存储库中将它们标记为这样。--hidden并不总是需要。
hg push --hidden
--hidden