Stephen Lau wrote:
Shawn Walker wrote:
The instructions on this page:
http://dlc.sun.com/osol/on/downloads/hg-build-snapshots/

Seem to indicate I should be able to do this:
hg clone -r onnv_59 ssh://[EMAIL PROTECTED]/hg/onnv/onnv-gate

However, that results in this:
destination directory: onnv-gate
abort: src repository does not support revision lookup and so doesn't
support clone by revision

Has something changed since this page was written?

I ended up doing this to get the source:
hg clone ssh://[EMAIL PROTECTED]/hg/onnv/onnv-gate

Which I'm guessing means I'm using the "tip".


Indeed, you're right. My instructions are incorrect... that should probably say:

hg clone ssh://[EMAIL PROTECTED]/hg/onnv/onnv-gate
hg update -r onnv_59


hg update onnv_59
or
hg update -C onnv_59 # only if you have no local changes you could possibly
                     # care about

If you have a filesystem accessible clone, you can clone -r, you just can't do it from hg.opensolaris.org, without having to pull the whole thing from hg.opensolaris.org again.

-- Rich

_______________________________________________
opensolaris-code mailing list
[email protected]
http://mail.opensolaris.org/mailman/listinfo/opensolaris-code

Reply via email to