Git

Delete Merged Branches

# local
git branch --merged | grep -v '^[* ] master$' | xargs git branch -d

Aliases

git config --global alias.up 'pull --rebase --autostash'

Last updated

Was this helpful?