I'm trying to find the fastest way to get all the files from a particular changeset; I don't care about the history.
The best thing I've found so far is to cd
into the repository, and then
hg archive -u <changeset> /path/to/put/files
But I'm finding even that is quite slow on a large repository, even though it doesn't create the .hg
folder.
I was thinking maybe I could use hg update
instead because that seems to run a bit faster, but I don't want to update the current directory, I want the files to be written to a new directory outside the current repo. Is that possible?
Or is there some other quick way?