Since current develop build is 2033 and we buil every commit then,
1803 is on the develop branch exactly 230 commit back
I found out how to do it I believe :
# go to an empty directory
# clone git clone https://github.com/MyRobotLab/myrobotlab.git cd myrobotlab
# check out the develop branch git checkout develop
# find what the 'current' build is - because that is the last commit
# point browser to - http://mrl-bucket-01.s3.amazonaws.com/current/develop/version.txt
# currently its 1.0.2033 so 1803 is 2033 - 1803 = 230 commits back
# use git log to get the sha of that particular commit git log -1 --skip=230
# this returns
Hello Dom, We are working on
Hello Dom,
We are working on getting a tag automatically pushed into the build so that for any version you can do this
git clone https://github.com/MyRobotLab/myrobotlab.git
cd myrobotlab
git checkout 1803
Unfortunately this is not ready yet :(
Since current develop build is 2033 and we buil every commit then,
1803 is on the develop branch exactly 230 commit back
I found out how to do it I believe :
# go to an empty directory
# clone
git clone https://github.com/MyRobotLab/myrobotlab.git
cd myrobotlab
# check out the develop branch
git checkout develop
# find what the 'current' build is - because that is the last commit
# point browser to - http://mrl-bucket-01.s3.amazonaws.com/current/develop/version.txt
# currently its 1.0.2033 so 1803 is 2033 - 1803 = 230 commits back
# use git log to get the sha of that particular commit
git log -1 --skip=230
# this returns
Now you have the source for 1803 :)
Thank you very much Grog.
Thank you very much Grog.