프론트엔드 개발
git branch 삭제 본문
- remote 브랜치 삭제하는 방법
* 아래 명령어를 사용하면 local에 있는 branch가 아닌 remote에 있는 branch가 삭제된다는것을 잘 알고 사용해야 한다.
git push origin --delete [branchName]
[선택] remote에 있는 branch를 삭제하고 나서 local에도 있다면 삭제한다.
- local 브랜치 삭제하는 방법
git branch -d [branchName]
강제로 제거해야한다면
git branch -D [branchName]
출처:
- https://www.lesstif.com/gitbook/git-delete-remote-branch-20776547.html
- https://backlog.com/git-tutorial/kr/stepup/stepup1_1.html
'Front-End > git' 카테고리의 다른 글
Comments