Add local alias for listing non-remote branches

This commit is contained in:
Kenneth Benzie 2019-02-15 14:05:49 +00:00
parent 225fe9a243
commit 17a5a0e946

3
config
View File

@ -15,6 +15,9 @@
prepare = rebase -i --fork-point
list = branch
local = !git branch -vv | \
cut -c 3- | \
awk '$3 !~/\\[/ { print $1 }'
create = checkout -b
delete = branch -D
refname = rev-parse --abbrev-ref HEAD