[Git] 로컬 브랜치 전부 날리기
이건 유닉스 계열만 됨
git branch | grep -v "$(git rev-parse --abbrev-ref HEAD)" | xargs git branch -D

이건 windows powershell
$currentBranch = git rev-parse --abbrev-ref HEAD
git branch | %{ $_.Trim() } | ?{ $_ -ne $currentBranch } | %{ git branch -D $_ }
