💾 Archived View for ait.place › dot › bin › sucksquash.txt captured on 2022-07-16 at 13:51:01.

View Raw

More Information

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

#!/usr/bin/env bash
git checkout master &&
git reset --hard origin/master && 
for branch in $(git for-each-ref --format='%(refname)' refs/heads/ | cut -d'/' -f3); do
	if [ "$branch" != "master" ];then
		git reset --soft master &&
		git add -A && git commit -m "$branch"
	fi
done