I'm currently working to migrate an existing project of ours from svn to mercurial.
I need to find a solution to the following use case:
A build server currently exists that grabs an svn repository via "svn export" over http (locally on the LAN). This obviously doesn't require user/password to be supplied.
Then the project is built, packaged, and copied as binary to a designated storage, while the unversioned copy is discarded.
All I could find in Mercurial as equivalent is "hg archive" which requires me to clone the repository first and thus supply credentials.
Is there any way to get an unversioned copy of a repository without supplying credentials?
Thanks for your help.
EDIT: Forgot to mention, server unfortunately runs a windows machine.