Initial commit

This commit is contained in:
Laszlo Uyttersprot
2025-12-11 01:36:40 +01:00
commit 008e76d0b8
6 changed files with 80 additions and 0 deletions

4
git_cleanup.sh Executable file
View File

@@ -0,0 +1,4 @@
git fetch --prune
git branch -vv | grep 'gone]' | awk '{print $1}' | while read b; do
git branch -D "$b"
done