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
Thank you for considering contributing to PicoNexus! We welcome contributions from everyone and are grateful for any help you can provide.
4
+
5
+
## How to Report a Bug
6
+
7
+
We use GitHub to host code, track [issues](https://github.com/PicoNexus/pico-projects/issues) and feature requests, and to accept [pull requests](https://github.com/PicoNexus/pico-projects/pulls).
8
+
9
+
10
+
## How to Contribute
11
+
12
+
13
+
### 1. Fork the Repository
14
+
15
+
Fork the [pico-projects repository](https://github.com/PicoNexus/pico-projects) to your own GitHub account.
16
+
17
+
### 2. Clone Your Fork
18
+
19
+
Clone your forked repository to your local machine:
Make your changes to the codebase. Ensure that your code follows the project's coding standards.
36
+
37
+
### 5. Commit Your Changes
38
+
39
+
Commit your changes with a descriptive commit message:
40
+
41
+
```bash
42
+
git add .
43
+
git commit -m "Add a brief description of your changes"
44
+
```
45
+
46
+
### 6. Push to Your Fork
47
+
48
+
Push your changes to your forked repository:
49
+
50
+
```bash
51
+
git push origin my-feature-branch
52
+
```
53
+
54
+
### 7. Open a Pull Request
55
+
56
+
Open a pull request against the main branch of the original repository. In your pull request, provide a clear description of the changes and any relevant information.
57
+
58
+
59
+
## Code of Conduct
60
+
61
+
Please adhere to our Code of Conduct (CODE_OF_CONDUCT.md) in all interactions. We expect all contributors to foster a welcoming and inclusive environment.
0 commit comments