3 lines
139 B
Bash
Executable file
3 lines
139 B
Bash
Executable file
#!/bin/bash
|
|
# shellcheck disable=SC2063
|
|
git branch | grep -v "*" | grep -v master | grep -v main | xargs git branch -D ; git fetch --prune
|