mirror of
https://github.com/SeriousBug/dotfiles
synced 2025-09-05 10:48:32 -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
|