该插件 git-commit-id-plugin 可以很方便将打包时的git信息生成文件在包中,可以很方便的查看,官方文档地址:https://github.com/git-commit-id/git-commit-id-maven-plugin/blob/master/maven/docs/using-the-plugin.md 以下是简单的翻译,最后有使用到的配置 <plugin> <groupId>pl.project13.maven</groupId> ...
首先我们需要去Vscode插件市场搜索git-commit-plugin并且进行安装。 安装完之后可以使用组合键Command + Shift + P呼出指令行,并键入指令show git commit template或者点击git插件栏上的小图标唤醒插件界面。 根据自己当前提交所要表达的意义,选择对应的type类型去编写commit信息 结语 写插件的时候也踩了不少坑,官网文档...
GitCommitPlugin.ShowEmoji: whether to show emoji, defaulttrue. {"GitCommitPlugin.ShowEmoji":true} GitCommitPlugin.CustomCommitType: customize the commit type, defaultnull. {"GitCommitPlugin.CustomCommitType":["customTypeName"]} or [{// If there are duplicate keys, rewrite the config,otherwise ...
https://repo.huaweicloud.com/repository/maven/pl/project13/maven/git-commit-id-plugin/4.9.10/ 这样打包后,解压jar包。BOOT-INF\classes 下会有个文件git.properties 记录提交信息。 git.commit.id就是提交id。 注:使用该工具,注意先提交再打包,这样版本才一致。 git.properties 例子 #Generated by Git-Co...
首先我们需要去Vscode插件市场搜索git-commit-plugin并且进行安装。 安装完之后可以使用组合键Command + Shift + P呼出指令行,并键入指令show git commit template或者点击git插件栏上的小图标唤醒插件界面。 根据自己当前提交所要表达的意义,选择对应的type类型去编写commit信息 ...
git-commit-id-plugin 插件记录git 提交历史 只要添加这个插件,打包的时候就会自动生成git.properties文件 <build>...<plugin><groupId>pl.project13.maven</groupId><artifactId>git-commit-id-plugin</artifactId></plugin></plugins></build> 然后把这些内容展示出来...
vscode-规范提交插件git-commit-plugin的使用 git-commit-plugin插件的使用 插件长这样: 安装之后会多一个猫猫 使用 对应的提交信息如下
https://github.com/ktoso/maven-git-commit-id-plugin 对于英语不好的我来说,看英语很痛苦,为了不让自己在同一个地方痛苦两次,尝试在此记录下该插件的使用及其配置,方便自己,也方便其他英语不好的同仁们;如有歧义,请以原版文档为主. <plugin><groupId>pl.project13.maven</groupId><artifactId>git-commit-...
Step1 Install the plugin Step2 Use the command shortcut showGitCommit to open the command window or Click the icon on the git plugin navigation bar Step3 Enter the commit information, which automatically generates a commit message that conforms to the specification...
此Maven 插件可以从代码目录中的 .git 目录获取相关信息,写入文件。 该文件可以在Maven打包(package)过程中被包含到 jar 包内。 为了方便获取信息,我们可以开放一个接口来呈现此信息文件中的内容。如,一个 HTTP API。 配置git-commit-id-plugin 在工程的 POM 文件中添加对此插件的引用,并添加一些自定义的配置。