Sometimes after a sprint, all the remaining branches are just taking up space. Here's a small snippet to remove all your local branches in one go.
git branch | grep -v "master" | xargs git branch -D