2 lines
111 B
Bash
Executable file
2 lines
111 B
Bash
Executable file
#!/bin/bash
|
|
git branch | grep -v "*" | grep -v master | grep -v main | xargs git branch -D ; git fetch --prune
|