Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ADD branches cleanup script #1885

Merged
merged 4 commits into from
Sep 24, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions scripts/clean-merged-branches.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
#!/bin/sh
#/ Usage: clean-merged-branches [-f]
#/ Delete merged branches from the origin remote.
#/
#/ Options:
#/ -f Really delete the branches. Without this branches are shown
#/ but nothing is deleted.
set -e

# show usage maybe
[ "$1" = "--help" ] && {
grep '^#/' <"$0"| cut -c4-
exit 0
}

# fetch and prune remote branches
git fetch origin --prune

# grab list of merged branches
branches=$(
git branch -a --merged origin/master |
grep remotes/origin/ |
grep -v origin/master |
grep -v 'enterprise-.*-release' |
sed 's@remotes/origin/@@'
)

# bail out with no branches
[ -z "$branches" ] && {
echo "no merged branches detected" 1>&2
exit 0
}

[ "$1" != -f ] && {
echo "These branches will be deleted:" 1>&2
echo "$branches"
read -p "Press 'y' if you're sure. " -n 1 -r
echo # move to a new line
}

# delete the branches or just show what would be done without -f
if [ "$1" = -f ] || [[ $REPLY =~ ^[Yy]$ ]]; then
git push origin $(echo "$branches" | sed 's/^ */:/')
fi