How to delete entire git commit history?

I have deleted my git commit history plenty of times just to make my repository look “clean” (roast me in the comments for it). It’s probably best to not do this but I will still share how to do it.

Delete entire commit history

git check…


This content originally appeared on DEV Community and was authored by Axorax

I have deleted my git commit history plenty of times just to make my repository look "clean" (roast me in the comments for it). It's probably best to not do this but I will still share how to do it.

Delete entire commit history

git checkout --orphan latest_branch
git add -A
git commit -am "commit message"
git branch -D main
git branch -m main
git push -f origin main

I did not figure this out myself or anything. I got it from here -> https://stackoverflow.com/questions/13716658/how-to-delete-all-commit-history-in-github

It's by Desta Haileselassie Hagos, later edited by creyD


This content originally appeared on DEV Community and was authored by Axorax


Print Share Comment Cite Upload Translate Updates
APA

Axorax | Sciencx (2024-07-26T00:34:35+00:00) How to delete entire git commit history?. Retrieved from https://www.scien.cx/2024/07/26/how-to-delete-entire-git-commit-history/

MLA
" » How to delete entire git commit history?." Axorax | Sciencx - Friday July 26, 2024, https://www.scien.cx/2024/07/26/how-to-delete-entire-git-commit-history/
HARVARD
Axorax | Sciencx Friday July 26, 2024 » How to delete entire git commit history?., viewed ,<https://www.scien.cx/2024/07/26/how-to-delete-entire-git-commit-history/>
VANCOUVER
Axorax | Sciencx - » How to delete entire git commit history?. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2024/07/26/how-to-delete-entire-git-commit-history/
CHICAGO
" » How to delete entire git commit history?." Axorax | Sciencx - Accessed . https://www.scien.cx/2024/07/26/how-to-delete-entire-git-commit-history/
IEEE
" » How to delete entire git commit history?." Axorax | Sciencx [Online]. Available: https://www.scien.cx/2024/07/26/how-to-delete-entire-git-commit-history/. [Accessed: ]
rf:citation
» How to delete entire git commit history? | Axorax | Sciencx | https://www.scien.cx/2024/07/26/how-to-delete-entire-git-commit-history/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.