# 안전하게 로컬 브랜치 삭제 $ git branch -d The -d option stands for --delete, which would delete the local branch, only if you have already pushed and merged it with your remote branches. -d 옵션은 로컬 브랜치(Local branch) 에서 작업 후 원격 저장소(Remote branch)에 정상적으로 push 또는 merge된 로컬 브랜치를 삭제한다. 즉, 삭제하려는 브랜치에 Commit 이력이 있으나, 원격 저장소로 push 또는 merge되지 않은 로컬 브랜치는 삭제가 불가능하다. # 강제로 로컬 브랜치 삭제 $ git branch -D The -D option stan..