로컬에서 브랜치 삭제하기 명령어
git branch -d 로컬 브랜치 이름
원격에서 브랜치 삭제하기 명령어
git push origin --delete 원격 브랜치 이름
더 짧은 원격에서 브랜치 삭제하는 명령어
git push origin :원격 브랜치 이름