Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Keeping track of To-Do and issues in Git

I'm a newbie to Git and version control in general. How do you keep track of their coding to-do list and issues/bugs?

Note that I'm working on a private project (e-commerce website) with just 2 developers.

like image 718
bgcode Avatar asked Aug 15 '11 01:08

bgcode


1 Answers

Git is not meant to be a bug tracking system, and if your need are a bit more complex than a simple "TODO" file, then you need to integrate Git with other systems.

That being said, I like to put a README at the root directory of my repo.
That way, I can have a quick description of what the branch is for.

git show myBranch:README
like image 82
VonC Avatar answered Oct 15 '22 09:10

VonC