Skip to content

Latest commit

 

History

History
executable file
·
57 lines (35 loc) · 1.65 KB

File metadata and controls

executable file
·
57 lines (35 loc) · 1.65 KB

Contributing to Weather App 🌦️

Thank you for wanting to contribute to Weather App! Your participation is essential for improving the project. Follow these guidelines for effective contributions.

How to Contribute

  1. Fork the Project: Fork the repository by clicking the "Fork" button at the top right of the project's GitHub page.

  2. Clone the Forked Repository: Clone your local fork to your computer.

    git clone https://github.com/nagcas/Weather-App.git
    cd weather-app

## Create a New Branch: Create a new branch for your changes

```bash
git checkout -b feature/nome-feature

Make Changes

Make the desired changes to the code. Be sure to test your code to ensure it works correctly.

Commit Your Changes

Add and commit your changes.

  git add .
  git commit -m "Aggiunge una nuova feature o corregge un bug"

Push Your Changes: Push your branch to the forked repository

git push origin feature/nome-feature

Submit a Pull Request

Go to the original repository and click on "New Pull Request." Follow the instructions to create a pull request.

Code Guidelines

  • Follow the existing coding standards in the project.
  • Write clear and descriptive commit messages.
  • Document the code and any added features.

Reporting Issues

If you find a bug or have a suggestion to improve the app, feel free to open an issue in the repository. Make sure to provide as many details as possible, including steps to reproduce the issue.

Thank You!

Every contribution is appreciated, whether it’s small fixes or large new features. Thank you for taking the time to improve Weather App!