Skip to content

update contribution #36

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 30, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 25 additions & 1 deletion contribution.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,31 @@ The exported HTML files will be automatically deployed to GitHub Pages through t
### Pull Request Process

1. Fork the repository
```bash
# Click the "Fork" button on the repository's GitHub page
# Then clone your forked repository
git clone https://github.com/YOUR-USERNAME/REPOSITORY-NAME.git
cd REPOSITORY-NAME
```

2. Create a new branch for your feature
```bash
git checkout -b feature/your-feature-name
```

3. Make your changes
4. Submit a pull request with a clear description of changes
```bash
# Make your code changes
# Add your changes to staging
git add .
# Commit your changes
git commit -m "Description of your changes"
```

4. Submit a pull request
```bash
# Push your changes to your fork
git push origin feature/your-feature-name
# Then go to GitHub and click "Create Pull Request"
```