우노
[Github] Local에서 Remote Branch 삭제 본문
Local에서 Github Branch 삭제
git push origin --delete <branch_name>
- 해당 명령어를 실행하는 branch 위치는 상관 없으며,
- Github 콘솔에서 반영 결과를 바로 확인할 수 있습니다.
Github Branch와 Local의 Remote Branch 상태 동기화
Github Branch가 삭제되어도 Local의 Remote Branch에는 반영되지 않으므로, 아래 명령어로 동기화할 수 있습니다.
git fetch --all --prune
반영 결과 확인
git branch -a
Local Branch 삭제
git checkout <parent_branch> # 지우려는 local branch의 상위 branch로 이동
git branch -d <child_branch> # local branch 삭제
참고
'DevOps > GitHub' 카테고리의 다른 글
[Github Actions] 주요 필드 (0) | 2023.03.11 |
---|---|
[Github Actions] Branch Merge 시 Tag/Release 자동 생성 (0) | 2023.03.08 |
[Github Actions] Secrets으로 환경변수 사용 (0) | 2023.03.08 |
[Github] git pull error (merge, rebase, fast-forward) (0) | 2023.03.05 |
[Github] 특정 branch clone (0) | 2023.02.16 |
Comments