#How to delete all repo commit history
-
Checkout
git checkout --orphan latest_branch
-
Add all files
git add -A
-
Commit the changes
git commit -am "a commit message"
-
Delete the branch
git branch -D master
-
Rename the branch to "master"
git branch -m master
-
Force update your repository
git push -f origin master