From 34f5fcc9097c7812d51f29950e99bef8dcea934f Mon Sep 17 00:00:00 2001 From: MagicBean <542058929@qq.com> Date: Mon, 27 Apr 2026 12:37:09 +0800 Subject: [PATCH] Point V2 upgrade guide at upstream repo URL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit After PR merges, users clone/pull from Runchuan-BU/BioClaw directly — no need to add a fork remote. Co-Authored-By: Claude Opus 4.7 (1M context) --- UPGRADE-V2-UI.md | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/UPGRADE-V2-UI.md b/UPGRADE-V2-UI.md index 1a66733..16907e7 100644 --- a/UPGRADE-V2-UI.md +++ b/UPGRADE-V2-UI.md @@ -45,7 +45,7 @@ ## 全新用户安装 ```bash -git clone git@github.com:IveGotMagicBean/BioClaw.git +git clone git@github.com:Runchuan-BU/BioClaw.git cd BioClaw npm install cp .env.example .env # 编辑填入 API key @@ -71,23 +71,14 @@ npm run web docker tag bioclaw-agent:latest bioclaw-agent:backup ``` -### 第 2 步:在原 BioClaw 目录加我的 fork 当 remote +### 第 2 步:拉取 V2 改动 ```bash cd /原来的BioClaw目录 -git remote add v2 git@github.com:IveGotMagicBean/BioClaw.git +git pull origin main ``` -> `origin` 仍指向原仓库,`v2` 是额外加的,两边共存。 - -### 第 3 步:拉取 V2 改动 - -```bash -git fetch v2 -git merge v2/main -``` - -### 第 4 步:重建容器并重启 +### 第 3 步:重建容器并重启 ```bash ./container/build.sh # 1-2 分钟(缓存复用,只重跑 COPY 步骤)