BoxLang 🚀 A New JVM Dynamic Language Learn More...
Install this package and set up your project to use it:
box install commandbox-githooks
cd my-git-project
box githooks install
Add your scripts to a githooks
key in the box.json
:
{
"githooks": {
"preCommit": "testbox run",
"postCheckout": [
"install",
"!npm install",
"!gulp"
]
}
}
$
box install commandbox-githooks