Prerequisites

Before you begin, make sure you have the following installed on your computer:

Cloning the Repository

We'll be using a specific branch called 1-start-here which contains the starter code for the course.

Step 1: Open Terminal or Command Prompt

Step 2: Navigate to Your Projects Directory

Choose a location on your computer where you want to store the project:

# Example: Navigate to your Documents folder
cd ~/Documents

# Or create a new projects folder and navigate to it
mkdir Projects
cd Projects

Step 3: Clone the Repository's Starter Branch

Run this command to clone only the starter branch:

git clone -b 1-start-here --single-branch <https://github.com/shawnesquivel/cursor-course.git>

This command: