This file contains 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
#!/bin/bash | |
# What is this? | |
# A bash function that enables you to mass delete REMOTE git branches | |
# When run, a prompt will appear showing the branches to delete and you can either | |
# choose to proceed or cancel | |
# Configuration | |
# You can provide a list of branches to always exclude as well as a list of branches | |
# to exclude at time of invocation (comma separated string). It is recommended to configure |
This file contains 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
#!/bin/bash | |
# What is this? | |
# A bash function that enables you to mass delete LOCAL git branches | |
# When run, a prompt will appear showing the branches to delete and you can either | |
# choose to proceed or cancel | |
# Configuration | |
# You can provide a list of branches to always exclude as well as a list of branches | |
# to exclude at time of invocation (comma separated string). It is recommended to configure |