Reputation: 149
I'm using IntellijIdea and I have a project with a big number of commits. I'm creating a new repository so the idea is to remove all those commits information, like date, author and all. And publish all as a first commit.
Any idea how to do it ?
Upvotes: 0
Views: 1383
Reputation: 4869
You can simply delete your .git
folder and initialize your git repository again with the git init
command.
Upvotes: 1