Question

I'm trying to achieve something like github's support for closing tickets com the commit message, that is, if you issue

git commit -m "fixes #4"

github automatically closes the ticket #4

In this case I'm using lighthouse with a git repo, and I was wondering if it's possible to achieve that functionality

No correct solution

OTHER TIPS

You can use the API for lighthouse to close tickets. You can write a post receive hook to do that for you.

Or try this, I found it somewhere online.

git commit -m "Make some change that resolves ticket 66 [#66 state:resolved]"
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top