From 724351a5519d7a9e657fdd6aa8388967cecdef2f Mon Sep 17 00:00:00 2001 From: RhenCloud Date: Sat, 15 Nov 2025 11:24:14 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=9B=B4=E6=96=B0=E8=B4=A1=E7=8C=AE?= =?UTF-8?q?=E6=8C=87=E5=8D=97=EF=BC=8C=E7=AE=80=E5=8C=96=E6=8F=90=E4=BA=A4?= =?UTF-8?q?=E6=AD=A5=E9=AA=A4=E5=B9=B6=E8=B0=83=E6=95=B4=E5=88=86=E6=94=AF?= =?UTF-8?q?=E5=91=BD=E5=90=8D=E5=BB=BA=E8=AE=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 9b4c976..0826523 100644 --- a/README.md +++ b/README.md @@ -266,29 +266,22 @@ A: 参考项目结构中的"添加新的存储后端"部分,继承 `BaseStorag **基本流程**: -1. **Fork 项目** +1. **Fork 项目** 点击 GitHub 页面右上角的 "Fork" 按钮 -2. **克隆到本地** +2. **克隆到本地** ```bash git clone https://github.com/your-username/Cloud-Index.git cd Cloud-Index ``` -3. **创建功能分支** - - ```bash - git checkout -b feature/your-feature-name - # 或修复 Bug: git checkout -b fix/bug-description - ``` - -4. **进行开发** +3. **进行开发** - 遵循现有的代码风格 - 添加必要的注释 - 确保代码能正常运行 -5. **提交更改** +4. **提交更改** ```bash git add . @@ -296,13 +289,13 @@ A: 参考项目结构中的"添加新的存储后端"部分,继承 `BaseStorag # 或 "fix: 修复某某问题" ``` -6. **推送到 GitHub** +5. **推送到 GitHub** ```bash - git push origin feature/your-feature-name + git push origin main ``` -7. **创建 Pull Request** +6. **创建 Pull Request** - 在 GitHub 上打开你的 Fork - 点击 "New Pull Request" - 填写 PR 描述,说明你的更改内容和原因