Initial Commit

This commit is contained in:
Tyler Mayoff 2024-09-30 18:06:03 -04:00
commit e726aebd5b
22 changed files with 1098 additions and 0 deletions

View file

@ -0,0 +1,6 @@
#!/usr/bin/env bash
echo "Cleaning remote branches"
git remote prune origin
echo "Cleaning local branches"
git for-each-ref --format '%(refname:short)' refs/heads | grep -v master | xargs git branch -D