Skip to content

Commit c0ed7b4

Browse files
committed
added files
1 parent 064ca1c commit c0ed7b4

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

CONTRIBUTING.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Contributing to Java problem open source
2+
3+
Thank you for taking the time to contribute to our project! We appreciate your help. Here’s how you can get started:
4+
5+
## How to Contribute
6+
7+
1. **Fork the repository**: Click on the "Fork" button at the top of this repository and clone your fork locally.
8+
2. **Create a branch**: Create a new feature or bugfix branch with a meaningful name.
9+
```bash
10+
git checkout -b feature/new-feature
11+
```
12+
3. **Make your changes**: Make sure your changes are well documented and follow best practices.
13+
4. **Test your changes**: Ensure all tests pass after making changes, and write new tests if necessary.
14+
5. **Push your changes**:
15+
```bash
16+
git push origin feature/new-feature
17+
```
18+
6. **Create a Pull Request**: Submit a pull request to the main repository and briefly describe the changes you’ve made.
19+
20+
## Issues
21+
If you encounter any bugs or have feature suggestions, feel free to open an issue on GitHub.
22+
23+
## Code Style
24+
Ensure that your code follows the style guidelines used by the project. Make sure to run linters and formatters as needed.
25+
26+
## Reporting Bugs
27+
If you find any bugs, please create an issue with:
28+
- A clear and descriptive title
29+
- Steps to reproduce
30+
- Expected and actual behavior
31+
32+
## Pull Request Checklist
33+
Before submitting, make sure that:
34+
- Your code passes all tests
35+
- Your code adheres to the coding style of the project
36+
- You’ve included clear commit messages

0 commit comments

Comments
 (0)