로컬 부실 분기 제거
1806 단어 gitpowershelltipterminal
조직 및 저장 목적으로 사용하지 않는 분기를 정리할 수 있습니다. 그러나 문자 그대로 (때로는) 몇 시간이 걸리는 분기를 하나씩 삭제하고 싶지는 않습니다.
로컬 브랜치를 대량으로 제거하는 방법은 다음과 같습니다.
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() }
네, 그렇게 쉽습니다. 계속해서 로컬 자식에게 숨을 쉬게 해주세요 🙂.
Reference
이 문제에 관하여(로컬 부실 분기 제거), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/wahidd/remove-local-stale-branches-5cbb텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)