Hey
@7queue, welcome to the forum!
The "releases" software distributed are just a feature of git (
https://github.com/blog/1547-release-your-software) that gives you conveniently packages snapshots corresponding to certain tags.
In the above, you are cloning the 'release' branch, which is the branch BU uses to prepare for upcoming releases. General development (most active branch) is 'dev'.
When releases happen, they are tagged. If you want to clone a particular release using Git, you should clone it with the specific tag, e.g.
Code:
git clone -b 1.0.0.1 git://github.com/BitcoinUnlimited/BitcoinUnlimited bu-1.0.0.1
On GitHub, you can find the list of tags if you click on the 'releases' link , and on the left side there is a link to a 'Tags' page.
For some reason, if I use the 'branches' pulldown and select the 'tags' tab / pulldown there, it doesn't show ALL of the tags. Specifically, it doesn't show 1.0.0.1 (the latest release currently). That must be some Github limitation within that pulldown menu.
If you want to list all the tags, you can also do a 'git tag' on the command line, and then 'git checkout <tagname>' to get to that release.