로컬 부실 분기 제거

로컬 git 리포지토리에 사용되지 않고 오래된 브랜치(병합 여부에 관계없이)가 엄청나게 많다는 것은 비밀이 아닙니다.

조직 및 저장 목적으로 사용하지 않는 분기를 정리할 수 있습니다. 그러나 문자 그대로 (때로는) 몇 시간이 걸리는 분기를 하나씩 삭제하고 싶지는 않습니다.

로컬 브랜치를 대량으로 제거하는 방법은 다음과 같습니다.

1. *nix 터미널에서 git 분기를 제거합니다.




# this will delete only merged branches
git branch --merged | grep -v \* | xargs git branch -D

# this will delete all branches except the current one checked out
git branch | grep -v \* | xargs git branch -D


2. Windows Powershell/Terminal에서 git 분기를 제거합니다.




# this will magically all branches except dev, main, master and develop.
git branch | Select-String -Pattern '^(?!.*(dev|main|master|develop)).*$' | ForEach-Object { git branch -D $_.ToString().Trim() }

# this will only delete merged branches.
git branch --merged | Select-String -Pattern '^(?!.*(dev|main)).*$' | ForEach-Object { git branch -D $_.ToString().Trim() }


네, 그렇게 쉽습니다. 계속해서 로컬 자식에게 숨을 쉬게 해주세요 🙂.

좋은 웹페이지 즐겨찾기