2016-06-23 113 views
0

Git支持分支描述。它們可以用git branch --edit-description進行編輯。如何檢索Git分支的描述?

如何從命令行檢索該描述以供其他shell實用程序使用?要做到這一點

一種方法是臨時設置$EDITOR(或core.editor)到cat或等效的調用git branch --edit-description之前,但它是有點侵入,並返回我寧願不去做一些註釋行(甚至儘管如果沒有更好的方法過濾它們將是一個選項)。

回答

3
git config --get-all branch.$branch.description 
+0

這樣做,我會接受一旦堆棧溢出讓我。 – zneak