I'm really new in Git, just read Bitbucket tutorial.
I did some wrong commit for a .txt file. How can I delete any future commits and remarks that I did them on Bitbucket?
First I did
git reset --hard <commit_ID>
then
git reset --hard HEAD~1
several times
git status
Your branch is behind 'origin/master' by 4 commits, and can be fast-forwarded.
What should I do?