Git is used for source code management. Download and install Git. Verify that install was successful.

git --version

To clone code from Remote Lab private repositories, it is necessary to setup SSH keys. Generate SSH key

ssh-keygen -t ed25519 -C "your_email@example.com"

Copy SSH key contents

clip < ~/.ssh/id_ed25519.pub

Go to Github Account -> Settings -> SSH and GPG keys -> New SSH key.

image

Copy key there and save. Now you should be able to clone from Remote Lab private repositories.

image

Additional tutorials