Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 1.35 KB

CONTRIBUTING.md

File metadata and controls

42 lines (28 loc) · 1.35 KB

Contributing to Bump Off!

Contributions are welcome to improve Bump Off! Here’s how you can help:

How to Contribute

  1. Fork the repository: Click the "Fork" button at the top of the repository.

  2. Clone your fork:

    git clone https://github.com/<YOUR_USERNAME>/bump-off.git
  3. Create a new branch for your feature or bugfix:

    git checkout -b <feature/bugfix>/<FEATURE/BUGFIX_NAME>
  4. Make your changes: Implement your feature, improvement, or bugfix.

  5. Test your changes locally.

  6. Commit your changes with a meaningful message:

    git commit -m "Add a description of your change"
  7. Push to your fork:

    git push origin <feature/bugfix>/<FEATURE/BUGFIX_NAME>
  8. Create a pull request: Go to the original repository on GitHub and click the "New Pull Request" button.

Contribution Guidelines

  • Style: Follow the code style of the existing project. This includes thorough commenting throughout the code, explaining logic and reasoning behind changes, similar to the existing codebase.
  • Testing: Test any changes to make sure they work correctly.
  • Documentation: Update the README or other docs if your changes affect how the extension is used.

Thank you for contributing to Bump Off!