when deleting merged branches, preserve "svn" branch for git-svn

Fixed #328
This commit is contained in:
Paul Schreiber 2015-03-17 14:00:40 -04:00
parent 9b50ce3000
commit 668cc9ef78

View file

@ -1,3 +1,3 @@
#!/usr/bin/env bash
git branch --no-color --merged | grep -v "\*" | grep -v master | xargs -n 1 git branch -d
git branch --no-color --merged | grep -v "\*" | grep -v master | grep -v svn | xargs -n 1 git branch -d