Skip to content

Latest commit

 

History

History
56 lines (40 loc) · 1.73 KB

CONTRIBUTING.md

File metadata and controls

56 lines (40 loc) · 1.73 KB

Contributing to OSS Portfolio ~ Bento Style

Thank you for considering contributing to our project! We appreciate your time and effort. This guide outlines how to contribute effectively.

How to Contribute

  1. Fork the Repository

    • Click the "Fork" button in the top right corner of the repository page.
  2. Clone Your Fork

    git clone https://github.com/YOUR_USERNAME/your-repo-name.git
    cd your-repo-name
  3. Create a New Branch

    • It’s best practice to create a new branch for your changes.
    git checkout -b feature/your-feature-name
  4. Make Your Changes

    • Make your changes in the codebase.
  5. Test Your Changes

    • Ensure everything works as expected. Run the app locally to verify.
  6. Commit Your Changes

    git add .
    git commit -m "Add a descriptive commit message"
  7. Push to Your Fork

    git push origin feature/your-feature-name
  8. Create a Pull Request

    • Go to the original repository where you want to propose your changes.
    • Click on the "New Pull Request" button.
    • Select your fork and the branch you created, then create the pull request.

Guidelines

  • Follow the Code Style: Please ensure that your code follows the existing style in the repository.
  • Add Comments: If necessary, add comments to clarify complex sections of your code.
  • Documentation: If you add a feature, please update the documentation accordingly.

Issues and Suggestions

If you encounter any issues or have suggestions for improvement, please open an issue in the repository.

Thank You!

Thank you for your contribution! Your efforts make this project better for everyone. Happy coding, and welcome to Hacktoberfest!