In case of fire
In case of fire
In case of fire
You're viewing a single thread.
no changes added to commit (use "git add" and/or "git commit -a")
It should (at least) be:
undefined
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 really
In which case the -a isn't needed.