0 | Current Level: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8
Create a new project folder structure and initialize a Git repository from the command line.
On your computer, open your command-line tool:
In the terminal, run:
cd ~
mkdir -p projects/lv2
cd projects/lv2
mkdir vscode-lesson1
cd vscode-lesson1
✅ This creates a folder for your lesson inside projects/lv2
, starting from your home directory.
Run these three commands:
touch index.html
touch README.md
touch style.css
✅ You now have an empty HTML file, a README, and a CSS file.
Run:
git init
✅ Now your folder is a Git repo.
projects/lv2/vscode-lesson1
folder.You have successfully:
You’re now ready to open this project in VSCode!