0 | 1 | 2 | 3 | 4 | 5 | 6 | Current Level: 7 | 8
Use the integrated Terminal to run commands and manage your project from within VSCode.
A. Open the terminal via Terminal > New Terminal or use the shortcut:
Ctrl + ~
Mac: Cmd + ~
B. The terminal opens at the bottom panel.
C. Use the terminal to run commands like:
git status
ls
git log
✅ Commit Reminder: if you made any file changes:
git add .
git commit -m "Terminal practice and status check"
git push
You learned how to:
git status
, ls
, and git log
The integrated Terminal keeps your development workflow streamlined!