Delete your git history
Taken from here: https://stackoverflow.com/questions/13716658/how-to-delete-all-commit-history-in-github
Checkout
git checkout --orphan latest_branchAdd all the files
git add -ACommit the changes
git commit -am "commit message"Delete the branch
git branch -D mainRename the current branch to main
git branch -m mainFinally, force update your repository
git push -f origin main
Last updated