Whats the Mercurial hg clone syntax to clone a repository to a folder on a local file system
hg help is your friend. hg help clone yields: hg clone [OPTION]… SOURCE [DEST] So, for this case it should be something like: hg clone C:\MyProject “G:\Version Control\MyProject”