Git 원격 브랜치 삭제

Jmnote (토론 | 기여)님의 2020년 6월 12일 (금) 13:45 판 (→‎개요)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요[ | ]

git 원격 브랜치 삭제
git 원격저장소 브랜치 삭제
git push origin --delete 원격브랜치명
실행예시
root@linux01:~# git branch -a | grep mybranch1
  remotes/origin/mybranch1
root@linux01:~# git push origin --delete mybranch1
Username for 'https://github.com': testuser01
Password for 'https://testuser01@github.com': P@ssw0rd
To https://github.com/testuser01/my-www.git
 - [deleted]         mybranch1

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}