Pregunta

I am new to Mercurial tool. I need to get the source code here

https://hg01.codeplex.com/mvcforum/file/4957efb70643

for a project reference. But when I type the command, I got the 404 error,

is there anything wrong with my command?

hg clone --verbose https://hg01.codeplex.com/mvcforum/file/4957efb70643 C:\
¿Fue útil?

Solución

You should use:

hg clone --verbose https://hg01.codeplex.com/mvcforum C:\

optionally, if you want to specify revision number use:

hg clone --verbose https://hg01.codeplex.com/mvcforum -r REV C:\

Try

hg help clone

for more details

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top