💾 Archived View for ait.place › dot › bin › suckrebase.txt captured on 2022-07-16 at 13:50:59.

View Raw

More Information

-=-=-=-=-=-=-

#!/usr/bin/env bash
git checkout master &&
make clean && rm -f config.h && git reset --hard origin/master && git pull &&
for branch in $(git for-each-ref --format='%(refname)' refs/heads/ | cut -d'/' -f3); do
	if [ "$branch" != "master" ];then
		git checkout $branch && git rebase --preserve-merges master
	fi
done
git checkout master