File tree Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,31 @@ The exported HTML files will be automatically deployed to GitHub Pages through t
134
134
### Pull Request Process
135
135
136
136
1 . Fork the repository
137
+ ``` bash
138
+ # Click the "Fork" button on the repository's GitHub page
139
+ # Then clone your forked repository
140
+ git clone https://github.com/YOUR-USERNAME/REPOSITORY-NAME.git
141
+ cd REPOSITORY-NAME
142
+ ```
143
+
137
144
2 . Create a new branch for your feature
145
+ ``` bash
146
+ git checkout -b feature/your-feature-name
147
+ ```
148
+
138
149
3 . Make your changes
139
- 4 . Submit a pull request with a clear description of changes
150
+ ``` bash
151
+ # Make your code changes
152
+ # Add your changes to staging
153
+ git add .
154
+ # Commit your changes
155
+ git commit -m " Description of your changes"
156
+ ```
157
+
158
+ 4 . Submit a pull request
159
+ ``` bash
160
+ # Push your changes to your fork
161
+ git push origin feature/your-feature-name
162
+ # Then go to GitHub and click "Create Pull Request"
163
+ ```
140
164
You can’t perform that action at this time.
0 commit comments