6 lines
120 B
Bash
6 lines
120 B
Bash
|
#!/bin/bash
|
||
|
git tag temp$RANDOM
|
||
|
git reset --hard HEAD^
|
||
|
git push --force
|
||
|
echo "There. I fixed your stupid mistake Tyrel"
|