I created a repository and synchronized it with a remote repository.
The files are compressed and each has an (i) extension.
I want to extract the files to a new folder (not repository) with decompressing them and with their original name as I see them on the web browsing on Google code.
Normally you do
hg clone <remoteRepoPath> <localPath>to do that, which automatically updates the working directory.Since you did an
hg initand thenhg pullfrom the remote repo, you need to dohg updateand it will fill the working directory with the actual files.All those
.ifiles under the.hgdirectory are the repository’s storage and indexes and such. Very rarely does anybody mess with those manually. Most of the time the only thing people touch under the.hgdirectory is thehgrcfile and patch queues.