Skip to content

Instantly share code, notes, and snippets.

#$ git branch --edit-description FOO
#$ git branches
#> FOO - 'some description'
#> Bar -
#> Bob -
[alias]
branches = !"for b in `git branch --list | tr -d '* '`; do echo $b " - " `git config branch.$b.description`; done"