Contributions are welcome to improve Bump Off! Here’s how you can help:
-
Fork the repository: Click the "Fork" button at the top of the repository.
-
Clone your fork:
git clone https://github.com/<YOUR_USERNAME>/bump-off.git
-
Create a new branch for your feature or bugfix:
git checkout -b <feature/bugfix>/<FEATURE/BUGFIX_NAME>
-
Make your changes: Implement your feature, improvement, or bugfix.
-
Test your changes locally.
-
Commit your changes with a meaningful message:
git commit -m "Add a description of your change"
-
Push to your fork:
git push origin <feature/bugfix>/<FEATURE/BUGFIX_NAME>
-
Create a pull request: Go to the original repository on GitHub and click the "New Pull Request" button.
- 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!