Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm a recent hire at a local startup, and their code management is rather abysmal. They know it's abysmal and are trying to become more organized, and are open to suggestions. I'm helping to push them over to git, and luckily I'm gaining a lot of momentum with that idea.

Unfortunately, a private company Github account has been deemed 'too expensive', but they're sold on the idea of a locally hosted private git server. I've been tasked with setting it up and will be using gitosis for actual repository management.

However, because we don't have github issues available, I'm trying to find a different solution to suggest for ticket tracking that can be hosted locally as well. The closest I've found is Redmine, but it has less than optimal git branch support. Is there any issue tracking software that has good git support that I can install locally? Thanks.

share|improve this question
7  
I know this is snarky, but any company that thinks Github is too expensive simply isn't serious. They range from $25 to $200 per month. They should be spending more for your coffee. – lwburk Mar 21 '11 at 5:35
If you want to host locally, GitHub:FI is too expensive. – J-16 SDiZ Mar 21 '11 at 5:52
Mantis has a nice git plugin, and is imho the best bug tracker out there. – Artefact2 Mar 21 '11 at 6:01
I'd suggest using gitolite, not gitosis. It has the same basic design, but is still being maintained, and definitely offers more. – Jefromi Mar 21 '11 at 6:10
Redmine has poor branch support by itself, but you can control which branches you fetch to the git repo the Redmine uses. This way you can ignore topic branches, for example. – Petri Lehtinen Mar 21 '11 at 7:46
show 2 more comments

2 Answers

up vote 3 down vote accepted

You could look at Mantis, which has some git integration.

I think that the dream with issue tracking for git, however, is to have the bug database stored in your repository, so that closing bugs can be done offline and per-branch. Then, when you push your branch, all the bug tracking changes are pushed too. There's a great list of such software here:

... although I can't personally recommend any of them myself, not having tried any of them seriously. I'd be interested to hear if any of those are suitable.

share|improve this answer

You could try Trac with the Git Plugin.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.