vote up 8 vote down star
8

Are there any good issue tracking systems that can track issues on git commits/branches?

flag

10 Answers

vote up 4 vote down check

Trac has a solid feature set for issue and bug tracking (ticketing, wiki,tagging), with lightweight project management abilities. Its uses SVN by default, and has plugins for git (& mercurial) which we've used very successfully.

Assembla has a nice package integrating Trac & git which was discussed briefly in this question. They offer free hosting for student projects and public projects (up to 200 MB, I think).

link|flag
vote up 1 vote down

Mantis has a good Git integration, and it's exercised by the developers themselves, as the development is driven by Git.

This is how changesets attached to an issue will appear:

Changeset attached to an issue

You can find more documentation at Integrating Git and SVN with the Mantis Bug Tracker.

link|flag
vote up 2 vote down

Pretty much every bug tracker that currently has subversion integration already has or will soon have git integration. Git is too important to be ignored, and the work to adapt code that handles subversion integration to git isn't that hard.

  • BugTracker.NET is a free, open-source, web-based bug tracking system that has git integration (I'm the author). The git integration looks pretty much like the subversion integration, documented here.

You can read more about the philosophy that guided BugTracker.NET/Git integration in this Stackoverflow question: http://stackoverflow.com/questions/1484153/how-does-bug-tracker-version-control-integration-work-with-typical-git-workflows

Other good, free, open-source bug trackers with git integration:

I don't have any experience with the following, but rather than centralized bug trackers adapted to work with git, these trackers were written with the git paradigm in mind from the start. All free, open-source:

  • gerrit is "Web based code review and project management for Git based projects." from the Google Android team. It's extremely git-centric and coder-centric.

  • ditz, dbug, git-issues are all "distributed bug trackers".

link|flag
vote up 1 vote down

The most important problem I found with trac is its lack of support for multiple projects.

There is a git plugin for trac but because git encourages multiple projects, I found it wasn't a great fit.

link|flag
vote up 0 vote down

Try Unfuddle.com; It's got a great issue tracker with git integration

link|flag
vote up 3 vote down

Android developers at Google uses git as version tracking and have developed their own tools for multiple repository handling called repo and issue tracking called gerrit.

link|flag
vote up 4 vote down

Git adds some interesting issues to the mix since you really have to be clear about which branch in which repository you're talking about. There've been several projects that aim to tackle the problem and LWN has a review of some. Also, checkout the list on the Git Wiki.

In my experience, it's still too early to see how this should all work. Given that, you probably want to look into something like Trac with the GitPlugin (I happen to be experimenting with that today).

link|flag
I'm interested to know how well Trac works with the GitPlugin, so don't hesitate to post your findings. – Spoike Oct 24 '08 at 9:10
See this discussion: stackoverflow.com/questions/1484153/… – Corey Trager Oct 18 at 5:06
vote up 0 vote down

I wrote a script I run from crontab so trac an interact with svn (natively) without realizing the code deltas come from git. It's a partial solution, but trac is worth using.

link|flag
vote up 4 vote down

Check these out:

Both of them keep the bug database in the repository alongside the source, so their bug databases are affected by branching and merging in just the same way as anything else in your repository would be.

link|flag
vote up 6 vote down

Redmine is pretty good, sort of similar features to Trac but awesome. http://www.redmine.org/ ( I haven't used with Git yet, but plan to soon)

a hosted solution is Lighthouse http://lighthouseapp.com/ which is popular among some RubyOnRails developers.

link|flag
1  
I have used it with Git myself. You need to have a local bare copy of the Git repository (It doesn't work with remote repos), but you can set up a cron job to automatically pull from a remote repository when you need. – Marcus Griep Oct 23 '08 at 16:51

Your Answer

Get an OpenID
or

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