Something I often find myself doing is, "Rebase a feature branch, merge it & delete it." To do that I run:
git rebase master feature
git checkout master
git merge feature
git branch -d feature
That seems quite laborious for something I'd imagine to be a common workflow. Does anyone know a faster way?
(Obviously I could write a script, but I'm wondering if there's a built-in approach I've missed.)