Created
November 12, 2021 14:10
-
-
Save vovandodev/7115c08a46bdb8bfbe92bb3bfd5f3fd4 to your computer and use it in GitHub Desktop.
How to delete all commit history in GitHub
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Deleting the .git folder may cause problems in your git repository. If you want to delete all your commit history but keep the code in its current state, it is very safe to do it as in the following: | |
Checkout | |
git checkout --orphan latest_branch | |
Add all the files | |
git add -A | |
Commit the changes | |
git commit -am "commit message" | |
Delete the branch | |
git branch -D main | |
Rename the current branch to main | |
git branch -m main | |
Finally, force update your repository | |
git push -f origin main | |
PS: this will not keep your old commit history around |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment