Where is the v27 alpha source code? Topic is solved

This board is for discussions, bug reports, etc. for pre-releases of the v27 milestone codenamed "Tycho".

Since the beta phase is over, this board is closed for new posts/topics.
Mercury

Where is the v27 alpha source code?

Unread post by Mercury » 2016-07-17, 21:01

I may be missing something obvious. :?

I can't find where the source code is for v27 alpha. Please help.

adisib
Lunatic
Lunatic
Posts: 380
Joined: 2015-06-13, 03:34
Location: KY

Re: Where is the v27 alpha source code?

Unread post by adisib » 2016-07-17, 21:04

Here it is

Alpha 1 specifically here:
https://github.com/MoonchildProductions/Tycho/releases

Repository page for trunk here:
https://github.com/MoonchildProductions/Tycho

Mercury

Re: Where is the v27 alpha source code?

Unread post by Mercury » 2016-07-17, 21:11

Thanks! :thumbup:

Walter Dnes
Astronaut
Astronaut
Posts: 650
Joined: 2015-07-30, 20:29
Location: Vaughan, ON, Canada

Re: Where is the v27 alpha source code?

Unread post by Walter Dnes » 2016-07-18, 02:06

Something I discovered on Google today; git defaults to pulling down the entire history of any branch that you clone. E.g the command...

Code: Select all

git clone -b Tycho_alpha1 --single-branch https://github.com/MoonchildProductions/Tycho pmsrc
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...

Code: Select all

git clone -b Tycho_alpha1 --depth 1 https://github.com/MoonchildProductions/Tycho pmsrc
It pulled down 181.67 MEGABYTES. That's a better than 90% reduction in the download.
There's a right way
There's a wrong way
And then there's my way

New Tobin Paradigm

Re: Where is the v27 alpha source code?

Unread post by New Tobin Paradigm » 2016-07-18, 04:47

You can just download a zip or tarball of just the files directly

Locked