컴공생의 다이어리
[Git] 원격 저장소 브랜치 삭제 본문
[Git] 원격 저장소 브랜치 삭제
git bash창에서 명령어를 통해 원격 저장소 브랜치를 삭제하고 싶다면 아래 명령어를 입력해주면 된다.
git push origin --delete {원격 저장소 브랜치명}
# example : 원격 저장소의 temp 브랜치를 삭제
git push origin --delete temp
https://www.lesstif.com/gitbook/git-delete-remote-branch-20776547.html
728x90
'Development > Git' 카테고리의 다른 글
[Git] credential 정보 초기화 (0) | 2023.01.20 |
---|---|
[GitHub] 깃허브 PR 템플릿 만들기 (1) | 2022.10.20 |
[GitHub] 깃허브 Dependabot 알림 끄기(비활성화) (0) | 2022.08.26 |
[Git] gist ssh로 clone (0) | 2022.07.21 |
[GitHub] 깃허브 이슈(issue) 템플릿 만들기 (0) | 2022.06.23 |
Comments