mirror of
https://github.com/SeriousBug/dotfiles
synced 2024-10-31 19:17:26 -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
|