A short guide to removing Git history entirely. Particularly useful when you're forking an existing project as a base for something new.
- Delete the
.git
folder entirely - Run
git init
to create a new one - Add all files and create your new first commit
Not tricky, but surprised me that there wasn't a solution within Git itself.