Live data from Hacker News

Poll: What do you use to track your bugs?

news.ycombinator.com

41–50 of 76 posts

Re: Poll: What do you use to track your bugs?

#43

redmine users may be interested in the recent fork: http://www.chiliproject.org the forking devs are going to be comitting some more radical changes it seems

Looking forward to that. In the meanwhile I find Redmine absolutely wonderful after I've configured it after our needs and process.

Re: Poll: What do you use to track your bugs?

#48
post #47

a plain text TODO file within the repository of each project, together with a plain text TODO file in my dropbox that gets synced everywhere. Works very well.

I really like this kind of solution for smaller projects, where a proper bug tracker is excessive overhead. Keep everything in the repo and it's much simpler to maintain.

Do you have a formal-ish system for this? Notice issue -> TODO -> write unit test -> fix issue -> cut + paste to ChangeLog?

Re: Poll: What do you use to track your bugs?

#50
post #48
post #47

a plain text TODO file within the repository of each project, together with a plain text TODO file in my dropbox that gets synced everywhere. Works very well.

I really like this kind of solution for smaller projects, where a proper bug tracker is excessive overhead. Keep everything in the repo and it's much simpler to maintain. Do you have a formal-ish system for this? Notice issue -> TODO -> write unit test -> fix issue -> cut + paste to ChangeLog?

We work in a 3 person team max, and run a project management tool/CRM next to it (apollo) so there is no need to do communication via special protocols. We tried a bunch of them and it just doesn't work for small teams. We live in GIT anyway, so a todo.txt is a really good solution.

It's mostly: email to say bugs need fixing -> bugs get fixed -> fix gets committed and the bug removed from the todo -> email back that it's fixed.

It mostly concerns visual (html/css/templating) bugs or small js bugs that don't have unit tests/

Post reply on HN