| Level Navigation: Current Level: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
Goal: Set up your Git repository and project structure for the weather app.
my-weathermy-weather# Navigate to your desired directory
cd ~/your-projects-folder
# Clone the repository
git clone https://github.com/yourusername/my-weather.git
# Enter the project folder
cd my-weather
# Create the basic file structure
touch index.html script.js helpers.js README.md
# Check your files
ls -la
Setting up a proper Git repository is the foundation of any development project. By creating a dedicated repository for your weather app, you establish version control, enable collaboration, and create a professional development environment. This step ensures your code is safely stored, tracked, and can be shared with others or deployed to the web.
📚 Need help setting up your repository? Check out our Start a New Project Guide for step-by-step instructions on creating repositories, cloning, and initial setup.
my-weatherindex.html, script.js, helpers.js, README.mdReady for the next step? Continue to Step 2: Set Up Project Files
| Level Navigation: Current Level: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |