문제

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

올바른 솔루션이 없습니다

다른 팁

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]"
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top