You must log in or register to comment.
It should (at least) be:
git commit -a -m "🚨🔥🚨" git push --force
Better, create a new branch and push it to origin(?).
Better have not created any new files tho - git commit -a doesn’t catch those without an add first.
So we need
git add .
&&git commit -a
here reallyIn which case the -a isn’t needed.