导出 TortoiseHG 中的描述列表

Export the list of descriptions in TortoiseHG

如何在 TortoiseHG 或 Mercurial 3.6.x 中导出项目的所有(且仅)描述,以便获得分支或版本的功能更改列表?

如果我正确理解了您的问题,则无法直接在 TortoiseHg 中执行您想要的操作。 但是在命令行中,您可以在指定所需分支的同时使用 hg log 命令,并使用 template 选项来指示您只需要描述。

hg log -r branch(MyBranch) --template "{desc}\n"

然后,如果您希望在其他地方使用该文本,则可以将输出通过管道传输到文本文件。

模板关键字 {desc} 为您提供描述中的多行文本,如果您只想要第一行,则可以使用关键字过滤器 {desc|firstline}

有关可用关键字和过滤关键字的详细信息,请参阅 Chapter 11 of the Mercurial guide and the Mercurial template help