mono0926
8/5/2013 - 10:11 PM

clear_unnecessary_branches

clear_unnecessary_branches

git branch -r --merged | grep -o "feature\/.*" | while read BRANCH; do git push origin :${BRANCH}; done; unset BRANCH;