[Emc-developers] How to retreive the source for an old version of linuxcnc

2019-12-19 Thread Frank Tkalcevic
I'm trying to get the source for version 2.6.0~pre I tried. git checkout tags/v2.6-pre0 but the VERSION file shows 2.5.0~pre output. > git checkout tags/v2.6.0-pre0 Note: checking out 'tags/v2.6.0-pre0'. You are in 'detached HEAD' state. You can look around, make experim

Re: [Emc-developers] How to retreive the source for an old version of linuxcnc

2019-12-20 Thread John
From your LinuxCNC directory git branch -a will list all the branches so then you can get the exact branch name to checkout. Starting in v2.6 we started using simple branch names... git checkout 2.6 The ~pre tag is for unreleased branches... JT On 12/19/19 5:59 PM, Frank Tkalcevic wrote: