Is there a way in git to have a 'description' for branches? While I try to use descriptive names, working for a while on a single branch sometimes dampens my memory of why I made some of the other topic branches. I try to use descriptive names for the branches but I think a 'description' (short note about the purpose of the branch) would be nice.
|
|
Git 1.7.9 (currently rc1) supports this. From the 1.7.9 release notes: * "git branch --edit-description" can be used to add descriptive text to explain what a topic branch is about. You can see that feature introduced back in September 2011, with commits 6f9a332, 739453a3, b7200e8:
Note that it won't work for a detached HEAD branch. That description is used by the script request-pull: see commit c016814783, but also |
|||||||||||||||||||
|
|
If you do end up using the README, create an alias modifying For example, add this in ~/.gitconfig, under [alias]
After this, you can run |
|||||||||||||
|
|
The The "description" for branches is also know as a "comment" associated with that meta data, and it is not supported. At least, with a
If your README is at the root directory of your REPO, it will work from any path, since the path used by |
||||
|
|
|
Here's a possible implementation of the
|
|||
|
|
|
Use Here is a shell function to show branches similar to
|
|||
|
|
|
I am pretty sure that feature is not currently supported. I think your best bet is to create a description text file, a README basically, in the branch that has the information that you want. |
|||||||||||||
|
|
The selected answer seems like overkill to me. I'd be inclined to maintain a per branch description file that is a normal source controlled file, say |
|||||
|
|
You can attach comments to tags:
By convention, you could have tags related to your branch names or you could use tag -f to keep a commented tag at the head of your topic branches. |
|||
|
|
|
I don't think so. If you want, you can always maintain a file within the branch saying, |
|||
|
|
|
Since branches are mostly illusional in git (just a local handy name for a commit that you might want to use as a parent someday), why bother? Sounds like you need some other meta information somewhere. |
|||||
|