This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # git-cleanup: cleanup all gone branches from remote | |
| # place this script somewhere in your $PATH and call it using | |
| # git cleanup | |
| # basic stringent | |
| set -o errexit | |
| set -o noclobber |