💾 Archived View for ait.place › dot › bin › sucksquash.txt captured on 2023-05-24 at 18:11:01.
⬅️ Previous capture (2022-07-16)
-=-=-=-=-=-=-
#!/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