- local 브런치 일괄삭제
git branch -D $(git branch --list 'feature/*')
- 불필요한 remote branch를 일괄삭제하는 방법 (branch 부분을 적당히 변경하면 된다)
git branch -r | grep -Eo 'feature/.*' | xargs -I {} git push origin :{}
- 삭제한 remote branch와 local branch를 동기화 하려면 아래 명령어 이용
git fetch --all --prune
git remote prune origin
'Programming > Git' 카테고리의 다른 글
Git에서 특정 커밋을 제외하는 방법 (0) | 2023.02.21 |
---|---|
[Git] remote: Invalid username or password. (0) | 2023.02.20 |
[Git] merge 실수로 데이터 날라갔을때.. / git reflog (0) | 2019.03.14 |
[Git] 기존 프로젝트 repository에 올리기 (0) | 2017.01.10 |
[Git] checkout (0) | 2016.12.20 |