Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Github and Fogbugz

So we have integrated fogbugz and github, the actual mechanism seems to work. (i.e. when pushing the "test" button on github, the message "payload delivered" is shown) Unfortunately, cannot find the documentation on what to put in the commit message to tie the bug to the commit.

I have tried

git commit -am 'fixing 97047'
git push origin

and

git commit -am 'fixing #97047'
git push origin

Neither seems to work. Would love to know what I'm missing - links to documentation would be most appreciated!

like image 345
Bret Savage Avatar asked Feb 15 '11 00:02

Bret Savage


1 Answers

The case number should be of the form:

\b((FogBug[sz]|Case|Bug[zs]*(?:ID)*):(\d+)

so

   FogBugz:1234
   FogBugs:1234
   Case:1234
   Bugz:1234

should all work.

I use FogBugzId:1234

like image 58
Jeff Schilling Avatar answered Sep 20 '22 02:09

Jeff Schilling