You're viewing a single thread.
View all comments
73
comments
no changes added to commit (use "git add" and/or "git commit -a")
9 0 ReplyIt should (at least) be:
git commit -a -m "🚨🔥🚨" git push --force
Better, create a new branch and push it to origin(?).
3 0 ReplyBetter have not created any new files tho - git commit -a doesn't catch those without an add first.
4 0 ReplySo we need
git add .
&&git commit -a
here really1 0 ReplyIn which case the -a isn't needed.
2 0 Reply
You've viewed 73 comments.
Scroll to top