nixpkgs-update/delete-merged.sh

13 lines
451 B
Bash
Raw Normal View History

2018-03-17 18:07:03 +03:00
#! /usr/bin/env bash
set -euxo pipefail
git fetch --prune origin
git fetch --prune upstream
git checkout master
git reset --hard upstream/master
git branch -ra --merged | grep "origin/auto-update/" | sed -e 's|^ remotes/origin/\(.*\)|git push origin :\1|' | while IFS= read -r line; do eval "$line"; done || true
git branch -a --merged | grep "auto-update/" | sed -e 's|^\(.*\)|git branch -d \1|' | while IFS= read -r line; do eval "$line"; done