# 1. Fork 项目(GitHub 网页操作)
# 2. 克隆你的 Fork
git clone https://github.com/你/repo.git
# 3. 创建分支
git checkout -b fix-typo
# 4. 进行修改并提交
git add .
git commit -m "docs: Fix typo in README"
# 5. 推送到你的 Fork
git push origin fix-typo
# 6. 创建 Pull Request(GitHub 网页)