I set just a simple description for my local branch and now I'd like to see it. How one can see description for a branch set by issuing git branch --edit-description?

有帮助吗?

解决方案

The description is used for request-pull (as stated in the man-page). This has already been discussed here.

其他提示

It is possible to show the branch descriptions by interrogating the repos config settings, which is where the description is stored.

I have two aliases defined, one shows all branches that have descriptions, and the second shows the description of the current HEAD branch

    brshow = config --get-regexp 'branch.*.description'
    brshow1 = !git config --get "branch.$(git rev-parse --abbrev-ref HEAD).description"
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top