Blog Post
Starting a Project: GitBash Terminal π
Follow these simple steps to set up your new project using GitBash:
Use the cd command to navigate to the directory where you want to create your project. Example: cd Desktop
- Navigate to Your Directory:
Use the mkdir command to create a new directory for your project. Example: mkdir newProject
- Create a New Directory:
Use the touch command to create files such as index.html, styles.css, and app.js. Example: touch index.html, touch styles.css, touch app.js
- Create Files for Your Project:
You can open Visual Studio Code directly from the terminal using the code . command. Example: code .
- Open Your Code Editor:
β Your project directory is now set up and ready for you to start coding!