On 04/23/10 11:50 AM, Rafael Vanoni wrote:
On 04/23/10 11:46 AM, Rafael Vanoni wrote:
On 04/23/10 11:41 AM, m...@bruningsystems.com wrote:
Hi Casper,

casper....@sun.com wrote:
Hi All,

I saw email many months ago about this, but now I can't find it. I
want to get the source code matching specific builds of Nevada. So,
for instance, the source for build 93. As I recall, there is at least
one website which has all of the builds (well, at least, most of
them). Anyone help?


All code is tagged; see .hgtags in the root of the source code.

hg pull -u -r onnv_93 should pull build 93.
I have .hgtags and .hgignore. But when I run the above command, I get:

$ hg pull -u -r onnv_93
abort: There is no Mercurial repository here (.hg not found)!
$

Try

$ hg clone -r onnv_93

You can only pull from within a repository, and you have to clone it
first to get one. Once you have a repo, you can pull specific tagged
revisions.

Oops, make that

$ hg clone -r onnv_93 [url to repo]

Raf


To be slightly more clear: when you pull the repo you get everything, all history. *Then*, you can, locally and very quickly, 'hg update -r <tag>' to change the working copies of all the files to the version from <tag>.
_______________________________________________
opensolaris-code mailing list
opensolaris-code@opensolaris.org
http://mail.opensolaris.org/mailman/listinfo/opensolaris-code

Reply via email to