Getting the Iguana Source Code

We currently use git for our source code system which is under bitbucket:Git

https://bitbucket.org/interfaceware/main2/src/master/

Now to check the code out on your local machine for the first time you’ll need open a terminal window on your machine, change directory to your local user directory and execute this command at the command line:

git clone git@bitbucket.org:interfaceware/main2.git

If it fails with an authentication error then you may have some configuration work to create an ssh public/private key pair, register it with Bitbucket and that will then enable authentication to work. See this guide on how to do it.

Once it works it will take a while. Find something else productive to do while you wait.

Once the code is checked out you will need to cd into the repository. We develop on the default branch of GIT which is called the master branch.

cd main

git checkout master

You will also need to checkout submodules:

git submodule update --init --recursive

Â