Are there any good issue tracking systems that can track issues on git commits/branches?
|
8
|
|
|
|
|
|
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). |
||
|
|
|
|
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:
You can find more documentation at Integrating Git and SVN with the Mantis Bug Tracker. |
||
|
|
|
|
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.
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:
|
|||
|
|
|
|
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. |
||
|
|
|
|
Try Unfuddle.com; It's got a great issue tracker with git integration |
||
|
|
|
|
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. |
||
|
|
|
|
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). |
||||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||||
|

