Cloning the Repository

Now that you have Git and GitHub set up, it's time to clone the workshop repository to your local machine. This is where you’ll get all the files and folders you need to complete the exercises.

Command

Run the following commands in your terminal:

git clone --sparse <repo_url>

Once the repository is cloned, navigate into the repository folder:

cd <repo_folder>

Finally, check out only the specific folder you need:

git sparse-checkout set hosting-your-site/clone-this

Explanation