Hossein Margani
Hossein Margani

Reputation: 1056

How can I get a complete version from TortoiseHg

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.

Upvotes: 0

Views: 205

Answers (1)

Ry4an Brase
Ry4an Brase

Reputation: 78330

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.

Upvotes: 2

Related Questions