I have like, so many old local branches. how to get rid of the ones I don't need any more?
courtesy of [1], the answer is: "delete the ones that have been merged":
git branch --merged | grep -v \* | xargs git branch -D
I have like, so many old local branches. how to get rid of the ones I don't need any more?
courtesy of [1], the answer is: "delete the ones that have been merged":
git branch --merged | grep -v \* | xargs git branch -D