Possible Duplicates:
How do you annotate a branch?
Branch descriptions in git
I have a repo with lots of branches. Maybe 12 or so, and they won't be merged into master anytime soon.
Is there a way to document the purpose of each branch within git?
The thing I seek is to a branch what a commit message is to a commit.
I don't think tags are what I want, because tags don't follow the HEAD
as I add more commits to a branch.
I could write a plaintext file listing the state of each branch with some notes, but its not obvious which branch the text file would go in.
To clarify, I do name my branches. But I would want to be able to have a description too. So for example I would want to write for branch RTPhase
:
This branch has added features to support real-time analysis of curvature and phase. As a trade off it runs more slowly than other branches because it uses functions like calculate mean curvature that haven't been optimized for speed.