공부/Git

Git 원격(remote) 브랜치 삭제하기

2019. 12. 4. 09:24

삭제할 브랜치 명 test-1234

 

git branch -D test-1234  // 원격 브랜치 삭제

git push -f origin test-1234
// or
git push origin :test-1234
 

 

반응형