Hi!
I am using TortoiseHg as my source control for developing a CMS project written in .NET/C#. I don't know how can I get a whole complete version from my source repository. Is it possible? a version for a specified date.
Thank you.
Hi!
I am using TortoiseHg as my source control for developing a CMS project written in .NET/C#. I don't know how can I get a whole complete version from my source repository. Is it possible? a version for a specified date.
Thank you.
The command hg update
will update your working directory to any prior version of your choice.
The command hg archive
will provide you with a zipfile or tarball representing any point in history.
For both commands you can specify your exact revision using the -r
argument.