9 lines
237 B
Plaintext
9 lines
237 B
Plaintext
|
# -*- coding: utf-8 mode: sh -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
|
||
|
|
||
|
function __pdev_branches() {
|
||
|
git for-each-ref --format='%(refname:short)' refs/heads |
|
||
|
grep -vF master |
|
||
|
grep -v '^release-' |
|
||
|
grep -v '^hotfix-'
|
||
|
}
|