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 | |
# This script will show you all of the branches in the current Git repo that are already | |
# merged into $dest_branch. | |
# | |
# Afterward you will be prompted with whether you want to proceed with deleting those remote | |
# branches (automatically). | |
# | |
# Finally you will be prompted with whether you want to prune local branches. | |
# |