I have one folder, let's call it Product1.0 and multiple other folders like Product1.1, Product1.2, etc which are modified versions of Product.
I want to put this entire thing in one local git repo, and manage it such that content of Product1.1 will be the next version (commit) of Product1.0 , Product1.2 will be next version of Product 1.1 and so on. And if I want to revert back to any of the other versions, I can just checkout to previous versions.
Suggestions on how to do this?
CodePudding user response:
