mirror of
https://github.com/SeriousBug/dotfiles
synced 2024-11-12 15:57:25 -06: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
|