Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have followed the documentation in https://developer.mozilla.org/En/Developer_Guide/Source_Code/Mercurial

And I have download FF source using this hg clone http://hg.mozilla.org/mozilla-central/ src

But how can i switch to the FF3.6 'branch' or 'tag'? The documentation said 'hg clone http://hg.mozilla.org/releases/mozilla-1.9.2/ 192src' but I don't want to clone both FF main and Ff3.6 twice?

Thank you.

share|improve this question

1 Answer

up vote 28 down vote accepted

Once you have cloned the repo, you have everything: you can then hg checkout branchname or hg checkout tagname to update your working copy.

share|improve this answer
5  
I think it is worth mentioning that hg checkout (and hg co and hg up) is an alias for hg update in mercurial and can all be used with exactly the same effect. – steenhulthin Sep 7 '12 at 20:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.