Enabling the integration is very easy. Head over to your project and open the projects settings window. Scroll to the "Beanstalk" section and copy the URL behind "Webhook POST URL".
You have to configure a Webhook in Beanstalk to allow Breeze receive commit messages.
In order to integrate Web hooks with Beanstalk, you need to enable Web hooks integration within your repository. To do this, go to your Repository, then Setup → Integration → Web hooks. To get started with the setup, click on Web hooks icon, and then on Activate integration button inside the page.
After clicking on the Activate integration button, you will need to enter Web Hook URL. Beanstalk will request this URL with POST data every time you commit something, passing along information about the commit.
After setting up a Web Hook URL, all you need to do is click Next step button and activate web hook integration for the repository you have chosen.
Now the hook is created and Breeze is ready to receive commit messages.
Breeze lets you to manipulate the status of tasks within your projects directly from your repository commit messages. Breeze parses the commit messages and closes, moves or tracks time on tasks. Every commit will also add a comment to the task with the commit message.
The commands that can be used in your commit messages are as follows:
Here are some examples of how to use the commands:
git commit -am '#3672, #3673 and #8623 and closes #5126'
git commit -am 'log time , #4326 t:1:30'
git commit -am 'move to done, #4326 m:done'
If you want to combine multiple commands then you have to refrence the task each time.
git commit -am 'mark as #432 done, move to doing #432 m:doing, track time #432 t:1:30'
To be able to track time, your git commiter email must match your Breeze email. You can set your git email using:
git config user.email "user@domain.com"