安装git hook直到npm install

时间:2013-01-15 20:26:32

标签: git npm pre-commit-hook

我有一个带package.json的项目来加载所有dev依赖项。在使用npm install安装项目后,有没有办法安装git commit hooks?

1 个答案:

答案 0 :(得分:1)

考虑npm projectnpm install本身只会安装/克隆git repos,但也会解释 script section

{ "scripts" :
  { "install" : "scripts/install.js"
  , "postinstall" : "scripts/install.js"
  , "uninstall" : "scripts/uninstall.js"
  }
}

您可以在installpostinstall步骤中声明一个脚本,该脚本会在克隆的存储库中添加您的挂钩。