Is there any built in issue tracking or ToDo tracking with git
?
Or is there a simple way to easily manage tasks and bugs using git?
I know many people just keep a text file in the repository. This is a cool idea because, well, since GIT is a source control system, looking at the TODO file through commits over time reveals work that you've accomplished. In other words, using GIT you can see your progress through time through things like TODO files and design files. You're looking for a simple way of managing TODOs? I'd say just throw a TODO.txt file into the repo; it doesn't get much simpler than that!