I have made a copy ( clone) of a php project and renamed it so that I can use its code as a basis for further development. At this point I've decided not to use git's branch functionality although I understand this may be an option. I'd like to basically perform a new init on this new project's git directory so that there is no memory of the past.
I'm thinking:
git reset --hard HEAD
does this make sense?