我有一个带package.json
的项目来加载所有dev依赖项。在使用npm install
安装项目后,有没有办法安装git commit hooks?
答案 0 :(得分:1)
考虑npm project,npm install
本身只会安装/克隆git repos,但也会解释 script section 。
{ "scripts" :
{ "install" : "scripts/install.js"
, "postinstall" : "scripts/install.js"
, "uninstall" : "scripts/uninstall.js"
}
}
您可以在install
或postinstall
步骤中声明一个脚本,该脚本会在克隆的存储库中添加您的挂钩。