[Python-Dev] 2.6 branch in Mercurial?

Ned Deily nad at python.org
Mon Oct 31 15:34:32 EDT 2016


On Oct 31, 2016, at 15:25, Ned Deily <nad at python.org> wrote:
> On Oct 31, 2016, at 15:20, Skip Montanaro <skip.montanaro at gmail.com> wrote:
>> I need to do a little 2.6 spelunking. I don't see a 2.6 branch in the output of "hg branches". Is "hg clone v2.6.9" the proper incantation to get the latest version (or perhaps "v2.6")?
> 
> hg update -C v2.6.9

To expand a bit, that command will update to the 2.6.9 release. You don't see a 2.6 branch because it has been marked as closed.  hg branches -c will show all branches.  hg update -C 2.6 will update to the latest head of the 2.6 branch but that should essentially be the same as the tag v2.6.9.

hg help branches

--
  Ned Deily
  nad at python.org -- []



More information about the Python-Dev mailing list