In Git you can add description to the branch using
git branch --edit-description
git config branch.<branchName>.description ## To read description
Please note, this will maintain the description in local repository it will not be sync'ed to remote server. It is helpful for branch maintainer but rest of the team may not access it automatically. You can refer to : htps://github.com/ejmr/git-branch-notes also.