Git
Delete Merged Branches
# local
git branch --merged | grep -v '^[* ] master$' | xargs git branch -dAliases
git config --global alias.up 'pull --rebase --autostash'Last updated
Was this helpful?
# local
git branch --merged | grep -v '^[* ] master$' | xargs git branch -dgit config --global alias.up 'pull --rebase --autostash'Last updated
Was this helpful?