如何使用 Plastic SCM 为项目生成 CHANGELOG.md?
How to generate a CHANGELOG.md for a project using Plastic SCM?
作为前端开发人员,我习惯于使用 Git 并使用 NPM module named standard-version. The generated changelog is based some commit conventions 自动生成变更日志,允许命令行工具按类别(即功能、错误)对提交进行分组修复,重大更改)。
今天,我们的团队正在转向 Plastic SCM。到目前为止,游戏程序员都是手动编写更新日志。
由于大多数时候这可能很乏味,我想知道是否有办法用 Plastic SCM 做同样的事情。
问题:
- 是否有开箱即用的工具,例如 标准版?
- 我们如何使用命令行检索 2 个标签(即 v2.0.0 -> v2.0.1)之间的变更集列表?
谢谢。
Is there a tool available out of the box like standard-version ?
恐怕 Plastic SCM 没有开箱即用的 标准版本 之类的东西。我想像目前 Git.
那样移植它以支持 Plastic 会很容易
How can we retrieve a list of changesets between 2 labels (i.e. v2.0.0
-> v2.0.1) using the command line ?
作为前端开发人员,我习惯于使用 Git 并使用 NPM module named standard-version. The generated changelog is based some commit conventions 自动生成变更日志,允许命令行工具按类别(即功能、错误)对提交进行分组修复,重大更改)。
今天,我们的团队正在转向 Plastic SCM。到目前为止,游戏程序员都是手动编写更新日志。
由于大多数时候这可能很乏味,我想知道是否有办法用 Plastic SCM 做同样的事情。
问题:
- 是否有开箱即用的工具,例如 标准版?
- 我们如何使用命令行检索 2 个标签(即 v2.0.0 -> v2.0.1)之间的变更集列表?
谢谢。
Is there a tool available out of the box like standard-version ?
恐怕 Plastic SCM 没有开箱即用的 标准版本 之类的东西。我想像目前 Git.
那样移植它以支持 Plastic 会很容易How can we retrieve a list of changesets between 2 labels (i.e. v2.0.0 -> v2.0.1) using the command line ?