Don't whack the qa branch if it exists

This commit is contained in:
Gene Liverman 2025-02-21 10:28:49 -05:00
parent c3a397edfa
commit 5891d4bf0c
Signed by: genebean
SSH key fingerprint: SHA256:ZjLMZwtU49BWDoI2hgsA0/Q6XT4+S0kcKFWW1EJBicI

View file

@ -317,7 +317,7 @@ in {
ce = "code-exploration"; ce = "code-exploration";
dots = "cd ~/repos/dots"; dots = "cd ~/repos/dots";
gbc = '' gbc = ''
git branch --merged | command grep -vE "^(\*|\s*(main|master|develop|production)\s*$)" | command xargs -n 1 git branch -d git branch --merged | command grep -vE "^(\*|\s*(main|master|develop|production|qa)\s*$)" | command xargs -n 1 git branch -d
''; '';
gitextract = "git log --pretty=email --patch-with-stat --reverse --full-index --binary --"; gitextract = "git log --pretty=email --patch-with-stat --reverse --full-index --binary --";
gpge = "gpg2 --encrypt --sign --armor -r "; gpge = "gpg2 --encrypt --sign --armor -r ";