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.
我需要更改已标记的 Mecurial 存储库中的代码。我在本地克隆了 repo,然后发出了一个 hg checkout TAGNAME。- 它使用 TAGNAME 标记表示的变更集更新了我的本地存储库。然后我开始进行修复。我的问题是:当我从同一个本地仓库提交更改时会发生什么?这些更改会提交到变更集 TAGNAME 还是会移到提示中?任何帮助,将不胜感激。
如果您提交,将创建一个新的变更集,其父项是 TAGNAME 变更集。实际上它是一个分支
如果这是最新的更改,您的更改集将是“提示”。