Skip to content

Latest commit

 

History

History
59 lines (45 loc) · 1.86 KB

Contributing.md

File metadata and controls

59 lines (45 loc) · 1.86 KB

Contributing to Wanderlust-2024

Thank you for your interest in contributing to the Wanderlust-2024 project! We welcome contributions of all kinds, whether it's code, documentation improvements, or bug reports. This document outlines how you can contribute effectively.

How to Contribute

1. Fork the Repository

  • Navigate to the Wanderlust-2024 GitHub page.
  • Click on the Fork button in the top-right corner of the page to create a copy of the repository in your GitHub account.

2. Clone Your Forked Repository

  • After forking, clone the repository to your local machine:
    git clone https://github.com/your-username/Wanderlust-2024.git
  • Navigate to the project directory:
    cd Wanderlust-2024

3. Create a New Branch

  • Create a new branch for your changes:
    git checkout -b feature/your-feature-name

4. Make Your Changes

  • Add your desired features, fix bugs, or improve documentation.

5. Stage Your Changes

  • Add the files you modified or created to the staging area:
    git add .

6. Commit Your Changes

  • Commit your changes with a descriptive message:
    git commit -m "Add [feature/fix] - description"

7. Push to Your Forked Repository

  • Push the changes to your forked repository:
    git push origin feature/your-feature-name

8. Create a Pull Request

  • Go to the original repository and click on Pull Requests.
  • Click on the New Pull Request button.
  • Select your branch and create the pull request with a clear description of your changes.

Code of Conduct

Please adhere to our Code of Conduct in all interactions within the project.

Acknowledgments

We appreciate all contributions and would like to acknowledge the efforts of all contributors to this project.