I just ported over a repo from GitHub to BitBucket. Although it does many of necessities, I'm finding it surprisingly difficult to find documentation for creating a git commit hook.
Originally I had a ruby app on a CentOS server that was triggered by a GitHub hook. Does anyone know how to achieve the same in the BitBucket environment?
Thanks!
Edit: here's what the ruby app simply looks like if it helps:
post '/' do
`rm -rf repofolder`
`git clone https://[email protected]/user/repo.git`
`sh fast_deploy.sh`
end