-
Git 원격 브랜치 삭제하기( Delete Remote Branch)Git 2022. 9. 13. 16:34728x90
1. Git Branch 확인하기
// Local git branch // Remote git branch -r
2. Github, GitLab 등의 Branch와 동기화가 안 되었을 때
// 방법 1 git fetch --all --prune // 방법 2 git remote prune origin
3. Git Remote Branch 삭제하기
// 방법 1 git push origin --delete branchName // 방법 2 // local branch 삭제 git branch -d branchName // remote branch 적용 git push origin branchName
'Git' 카테고리의 다른 글
Git .gitignore 적용 안 되는 에러 고치기 (0) 2022.10.27 Github README를 꾸미기 위한 잘 안 알려진 사이트 소개 (0) 2022.10.14 An unexpected error occurred: "packageName: Request failed \"401 Unauthorized\"와 "Couldn't find package "packageName" on the "npm" registry. 해결하기 (0) 2022.03.30 폴더 별 다른 Github 계정 설정하기 (0) 2021.12.16 Git local Branch 모두 삭제하기 (0) 2021.12.14