mirror of
https://github.com/SeriousBug/dotfiles
synced 2024-11-01 11:37:29 -05:00
4 lines
138 B
Fish
4 lines
138 B
Fish
|
function git-cleanup
|
||
|
git fetch -p ; and git branch -vv | grep ': gone]' | grep -v "\*" | awk '{ print $1; }' | xargs git branch -D
|
||
|
end
|