I have a project on a Mercurial (HG) repository. I am about to start a new project that I would like to start by using the exact same code as the mentioned project. The two projects are completely unrelated. Even though they do similar stuff, each one is for a different client, carry different names, different branding, different art.
My question is:
What would be the recommended approach:
- Cloning (hg clone) the project and start making changes?
- Archiving (hg archive) the project and making a new repository (hg init) on the archived copy?
- Any other option I am not considering?
Thanks a lot.