我可以向Git分支添加描述吗?

Vik*_*mma 5 git branch

可能重复:
git中的分支描述

有时我发现很难记住我为什么要建立一个新的Git分支.有什么办法可以为分支添加描述吗?我当然可以在我第一次提交到分支时添加这些信息,但是能够做到这样的事情会很好:

git checkout -b -m"Branch for that really good idea" mybranch
Run Code Online (Sandbox Code Playgroud)

然后做一些其他的工作,完全忘记我的想法,因为我能做到

git checkout -descr mybranch<Enter>
Output: Your description: "Branch for that really good idea"
Run Code Online (Sandbox Code Playgroud)

我知道git-notes,但它被用来为提交添加信息,所以它并不是我正在寻找的.