I can't find where the source code is for v27 alpha. Please help.
Where is the v27 alpha source code? Topic is solved
-
Mercury
Where is the v27 alpha source code?
I may be missing something obvious.
I can't find where the source code is for v27 alpha. Please help.
I can't find where the source code is for v27 alpha. Please help.
-
adisib
- Lunatic

- Posts: 380
- Joined: 2015-06-13, 03:34
- Location: KY
Re: Where is the v27 alpha source code?
Here it is
Alpha 1 specifically here:
https://github.com/MoonchildProductions/Tycho/releases
Repository page for trunk here:
https://github.com/MoonchildProductions/Tycho
Alpha 1 specifically here:
https://github.com/MoonchildProductions/Tycho/releases
Repository page for trunk here:
https://github.com/MoonchildProductions/Tycho
-
Walter Dnes
- Astronaut

- Posts: 714
- Joined: 2015-07-30, 20:29
- Location: Vaughan, ON, Canada
Re: Where is the v27 alpha source code?
Something I discovered on Google today; git defaults to pulling down the entire history of any branch that you clone. E.g the command...
pulls down 1.89 GIGABYTES. This is necessarry if you're a developer who will be pushing commits/changes back into the project. If you just want to download current source code to compile/build from, and don't need the history of changes, use the command...
It pulled down 181.67 MEGABYTES. That's a better than 90% reduction in the download.
Code: Select all
git clone -b Tycho_alpha1 --single-branch https://github.com/MoonchildProductions/Tycho pmsrcCode: Select all
git clone -b Tycho_alpha1 --depth 1 https://github.com/MoonchildProductions/Tycho pmsrcThere are 2 kinds of people in this world...
1) Those who can extrapolate from incomplete data
1) Those who can extrapolate from incomplete data
-
New Tobin Paradigm
Re: Where is the v27 alpha source code?
You can just download a zip or tarball of just the files directly