当 运行 `npm version` 脚本时,如何防止进行新的提交
When running `npm version` scripts, how to prevent a new commit from being made
当我运行 npm version patch
时,将进行新的提交。我不要。
doc 非常模糊。我猜测相关的标志是commit-hooks
,但我不确定如何使用它。没有例子。
我尝试过不同的模式,例如:
npm version patch --commit-hooks=false
npm version patch --commit-hooks false
但是好像不行
--commit-hooks
参数确定 Git Hooks 在提交创建时是否 运行。
你要的命令是 npm version patch <a href="https://docs.npmjs.com/cli/v8/commands/npm-version#git-tag-version" rel="nofollow noreferrer">--git-tag-version</a> false
Tag the commit when using the npm version
command. Setting this to false results in no commit being made at all.
当我运行 npm version patch
时,将进行新的提交。我不要。
doc 非常模糊。我猜测相关的标志是commit-hooks
,但我不确定如何使用它。没有例子。
我尝试过不同的模式,例如:
npm version patch --commit-hooks=false
npm version patch --commit-hooks false
但是好像不行
--commit-hooks
参数确定 Git Hooks 在提交创建时是否 运行。
你要的命令是 npm version patch <a href="https://docs.npmjs.com/cli/v8/commands/npm-version#git-tag-version" rel="nofollow noreferrer">--git-tag-version</a> false
Tag the commit when using the
npm version
command. Setting this to false results in no commit being made at all.