4 lines
116 B
Text
4 lines
116 B
Text
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
git fetch --all -p; git branch -vv | grep ": gone]" | awk '{ print $1 }' | xargs -r -n 1 git branch -D
|