Files
claude-howto/zh/01-slash-commands/pr.md
Luong NGUYEN 89e89d4aa3 feat(zh): add Chinese translations in zh/ directory
Add Chinese (Simplified) translations for all documentation, organized
under a dedicated zh/ directory that mirrors the English folder structure.

Co-authored-by: tanqingkuang <tanqingkuang@users.noreply.github.com>

Translations originally contributed by @tanqingkuang in #45.
Restructured from *-CN.md suffix pattern into zh/ directory to prevent
the EPUB builder (scripts/build_epub.py collect_folder_files) from
picking up Chinese files via glob("*.md") inside module folders.
2026-04-06 23:08:54 +02:00

27 lines
709 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
description: 清理代码、暂存变更并准备 Pull Request
allowed-tools: Bash(git add:*), Bash(git status:*), Bash(git diff:*), Bash(npm test:*), Bash(npm run lint:*)
---
# Pull Request 准备清单
在创建 PR 之前,请执行以下步骤:
1. 运行格式化:`prettier --write .`
2. 运行测试:`npm test`
3. 查看 git diff`git diff HEAD`
4. 暂存变更:`git add .`
5. 按 conventional commits 创建提交信息:
- `fix:` bug 修复
- `feat:` 新功能
- `docs:` 文档
- `refactor:` 代码重构
- `test:` 测试新增
- `chore:` 维护
6. 生成 PR 摘要,包含:
- 变更了什么
- 为什么变更
- 做了哪些测试
- 可能的影响