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
4) Create a New Branch: It's a good practice to create a new branch for your work.
75
+
76
+
Now Run:
77
+
78
+
```bash
79
+
80
+
git checkout -b your-branch-name
81
+
```
82
+
83
+
Replace your-branch-name with a meaningful name describing your changes.
84
+
85
+
5) Make Your Changes: Open your code editor, make the necessary changes or add new features to the codebase.
86
+
87
+
6) Stage and Commit Changes: Stage the files you've modified using:
88
+
89
+
```bash
90
+
91
+
git add .
92
+
```
93
+
94
+
Commit your changes with a descriptive message:
95
+
96
+
```bash
97
+
98
+
git commit -m "Add: meaningful description of your changes"
99
+
```
100
+
101
+
7) Push Changes to GitHub: Push your branch to your forked repository:
102
+
103
+
```bash
104
+
105
+
git push origin your-branch-name
106
+
```
107
+
108
+
8) Create a Pull Request:
109
+
110
+
-Go to your forked repository on GitHub.
111
+
-Click on the "Compare & pull request" button.
112
+
-Add a descriptive title and details about your changes.
113
+
-Click on "Create pull request."
114
+
115
+
9) Wait for Review: Your pull request will be reviewed by the project maintainers. If any changes are required, please make them and update your pull request accordingly.
116
+
117
+
<br>
118
+
119
+
## Alternatively contribute using GitHub Desktop
28
120
29
121
1.**Open GitHub Desktop:**
30
122
Launch GitHub Desktop and log in to your GitHub account if you haven't already.
@@ -58,6 +150,17 @@ in case you are stuck:
58
150
9.**Wait for Review:**
59
151
Your pull request will now be available for review by the project maintainers. They may provide feedback or ask for changes before merging your pull request into the main branch of the repository.
60
152
153
+
<br>
154
+
155
+
## **Pull Request Process 🚀**
156
+
157
+
1. Ensure that you have self reviewed your code 😀
158
+
2. Make sure you have added the proper description for the functionality of the code
159
+
3. I have commented my code, particularly in hard-to-understand areas.
160
+
4. Add screenshot it help in review.
161
+
5. Submit your PR by giving the necessary information in PR template and hang tight we will review it really soon 🚀
162
+
163
+
<br>
61
164
62
165
## **Issue Report Process 📌**
63
166
@@ -69,14 +172,17 @@ in case you are stuck:
69
172
70
173
<br>
71
174
72
-
## **Pull Request Process 🚀**
175
+
## 💬 Need Help
73
176
74
-
1. Ensure that you have self reviewed your code 😀
75
-
2. Make sure you have added the proper description for the functionality of the code
76
-
3. I have commented my code, particularly in hard-to-understand areas.
77
-
4. Add screenshot it help in review.
78
-
5. Submit your PR by giving the necesarry information in PR template and hang tight we will review it really soon 🚀
We truly appreciate your time and effort to help improve our project. Feel free to reach out if you have any questions or need guidance. Happy coding! 🚀
0 commit comments