Checkout to the previous commit

https://stackoverflow.com/questions/2007662/rollback-to-an-old-git-commit-in-a-public-repo

git checkout [887924] .
git reset --hard

Rename master to main

git branch -m master main
git push -u origin main

Remove sensitive data from repos - BFG Repo-Cleaner

https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/removing-sensitive-data-from-a-repository

Viewing git logs better

git log --graph --oneline --decorate

Back to previous branch

git checkout -

Rebase configs

git config pull.rebase true

or