Created
September 15, 2023 18:48
-
-
Save scottgonzalez/5d1f7f66c97a8bff32ada18211fc6c61 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/env sh | |
echo "" | |
echo " ..." | |
echo " ;::::;" | |
echo " ;::::; :;" | |
echo " ;:::::' :;" | |
echo " ;:::::; ;." | |
echo " ,:::::' ; OOO\\" | |
echo " ::::::; ; OOOOO\\" | |
echo " ;:::::; ; OOOOOOOO" | |
echo " ,;::::::; ;' / OOOOOOO" | |
echo " ;:::::::::\`. ,,,;. / / DOOOOOO" | |
echo " .';:::::::::::::::::;, / / DOOOO" | |
echo " ,::::::;::::::;;;;::::;, / / DOOO" | |
echo " ;\`::::::\`'::::::;;;::::: ,#/ / DOOO" | |
echo " :\`:::::::\`;::::::;;::: ;::# / DOOO" | |
echo " ::\`:::::::\`;:::::::: ;::::# / DOO" | |
echo " \`:\`:::::::\`;:::::: ;::::::#/ DOO" | |
echo " :::\`:::::::\`;; ;:::::::::## OO" | |
echo " ::::\`:::::::\`;::::::::;:::# OO" | |
echo " \`:::::\`::::::::::::;'\`:;::# O" | |
echo " \`:::::\`::::::::;' / / \`:#" | |
echo " ::::::\`:::::;' / / \`#" | |
echo "" | |
branch=`git rev-parse --abbrev-ref HEAD` | |
label="Reaping $branch" | |
label_length=${#label}; | |
printf "%*s\n" $(((51 + label_length) / 2)) "$label" | |
echo "" | |
git rebase -i master --autosquash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment