Before you begin, make sure you have the following installed on your computer:
We'll be using a specific branch called 1-start-here
which contains the starter code for the course.
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
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:
b 1-start-here
specifies to check out the 1-start-here
branch-single-branch
means it only downloads that specific branch