You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
3.**Create a Branch**: Create a new branch for your feature or bug fix.
14
+
```bash
15
+
git checkout -b feature/your-feature-name
16
+
```
17
+
18
+
## Making Changes
19
+
20
+
1.**Code Style**: Follow the existing code style and conventions. Ensure your code is well-documented.
21
+
2.**Testing**: Write tests for your changes. Ensure all tests pass.
22
+
3.**Commit Messages**: Write clear and concise commit messages.
23
+
24
+
## Submitting Changes
25
+
26
+
1.**Push Your Changes**: Push your changes to your forked repository.
27
+
```bash
28
+
git push origin feature/your-feature-name
29
+
```
30
+
2.**Create a Pull Request**: Create a pull request from your forked repository to the original repository. Provide a clear description of your changes.
31
+
32
+
## Code of Conduct
33
+
34
+
Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.
35
+
36
+
## License
37
+
38
+
By contributing to this project, you agree that your contributions will be licensed under its MIT License.
39
+
40
+
## Contact
41
+
42
+
If you have any questions or need further assistance, feel free to reach out to the maintainers.
0 commit comments