Skip to content

Latest commit

 

History

History
47 lines (34 loc) · 1.04 KB

contributing.md

File metadata and controls

47 lines (34 loc) · 1.04 KB

Contributing to Weather App

Thank you for considering contributing to the Weather App! We welcome all kinds of contributions that help improve the project.

How to Contribute

1. Fork the Repository

Start by forking the repository to your GitHub account.

  • Click the "Fork" button at the top of the repository page.
  • This will create a copy of the repository in your GitHub account.

2. Clone the Repository

Once you've forked the repository, clone it to your local machine.

git clone https://github.com/your-username/weather-app.git

3. Navigate to the Project Directory

cd weather-app

4.Create a Branch

git checkout -b your-branch-name

5.Make Your Changes

Make the necessary changes to the codebase. Be sure to follow these guidelines: Write clean, readable code. Test your changes thoroughly. Stick to the project's style and format.

6. Commit Your Changes

git add .
git commit -m "Your descriptive commit message"

7.Push to Your Fork

git push origin your-branch-name