Skip to content

Commit 9cf8376

Browse files
update contribution
1 parent 9c9624c commit 9cf8376

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

contribution.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,31 @@ The exported HTML files will be automatically deployed to GitHub Pages through t
134134
### Pull Request Process
135135

136136
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+
137144
2. Create a new branch for your feature
145+
```bash
146+
git checkout -b feature/your-feature-name
147+
```
148+
138149
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+
```
140164

0 commit comments

Comments
 (0)