Created
May 11, 2021 10:22
-
-
Save argami/f80085fd82e785aaff369610d9be0cd9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#!/bin/bash | |
# install this in any folder in your path and execute it | |
# by fire.sh in case of a real fire to save your data | |
echo "Leave the building you fool i will handle it" | |
# adding new branch to not polute the one beign used | |
# and unique by user name | |
git checkout -b fire_starting_$(whoami) | |
git add . | |
git commit -m "everything added by fire.sh before a fire" | |
# forcing only to avoid any chance of issue" | |
git push origin fire_starting -f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment