Clone a repository
Cloning refers to making a copy of a repository (e.g. https://github.com/bbc/vjdata.24555.cqcfsa) to your local machine - so you can have access to the code on your own pc.
git clone git@github.com:bbc/vjdata.24555.cqcfsa.git
Initiate a repository from scratch
Requires an existing folder whose changes you want to track (called the 'working directory')
This command will create a .git folder inside the directory, which is responsible tracking the changes your are making.
cd
into the directorygit init