Dev/Git
[Git] 모든 브런치 삭제하기
믹-아
2020. 8. 18. 17:47
git checkout master
git branch | grep -v '^*' | xargs git branch -D
HEAD 가 아닌 브런치를 모두 삭제한다.