Skip to content

Latest commit

 

History

History
64 lines (37 loc) · 1.46 KB

CONTRIBUTING.md

File metadata and controls

64 lines (37 loc) · 1.46 KB

Contributing to Debloat

Thank you for considering contributing to Debloat! We welcome contributions from everyone.

How to Contribute

1. Fork the Repository

Start by forking the repository on GitHub. This will create your own copy of the project under your GitHub account.

2. Clone the Repository

Clone the repository to your local machine:

git clone https://github.com/your-username/Debloat.git

3. Create a Branch

Create a new branch to work on your feature or fix:

git checkout -b feature/your-feature-name

4. Make Changes

Make your changes to the code or documentation.

5. Test Your Changes

Before committing your changes, ensure they work as expected. Run any tests and make sure they pass.

6. Commit Your Changes

Use descriptive commit messages. E.g., "Add feature X" or "Fix issue Y":

git add .
git commit -m "Your descriptive commit message"

7. Push to GitHub

Push your changes to your forked repository:

git push origin feature/your-feature-name

8. Create a Pull Request

Create a pull request (PR) to the main branch of the original repository. Include a clear title and description of your changes.

Reporting Issues

If you find any issues, please report them in the Issues section.

Suggestions and Feedback

If you have suggestions or feedback, feel free to open an issue or start a discussion.

Thank you for your contributions!