From a572ebbb711f1cbc45981ed31bb28a9b4b7b7874 Mon Sep 17 00:00:00 2001 From: hubian <908234780@qq.com> Date: Fri, 10 Apr 2026 01:10:17 +0800 Subject: [PATCH] =?UTF-8?q?docs:=20=E6=B7=BB=E5=8A=A0=E4=BA=A7=E5=93=81?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E7=88=AC=E5=8F=96=E7=B3=BB=E7=BB=9F=E5=92=8C?= =?UTF-8?q?Git=E4=BB=93=E5=BA=93=E5=88=9B=E5=BB=BA=E8=A7=84=E8=8C=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- MEMORY.md | 24 ++++++++++++++++++++++++ PROJECTS.md | 2 ++ 2 files changed, 26 insertions(+) diff --git a/MEMORY.md b/MEMORY.md index f083820..f5d3644 100644 --- a/MEMORY.md +++ b/MEMORY.md @@ -51,6 +51,30 @@ git push origin vX.X.X - 密码: Hps123@! - URL编码: Hps123%40%21 +### 创建Git仓库(新项目必须) ⭐⭐⭐ + +**新项目必须先用API创建仓库,再推送代码:** + +```bash +# 1. 用API创建仓库 +curl -s -X POST "http://coder:Hps123%40%21@192.168.2.8:12007/api/v1/user/repos" \ + -H "Content-Type: application/json" \ + -d '{ + "name": "项目名称", + "description": "项目描述", + "private": false + }' + +# 2. 添加远程仓库 +git remote add origin http://coder:Hps123%40%21@192.168.2.8:12007/coder/项目名称.git + +# 3. 推送代码和tag +git push -u origin master +git push origin v1.0.0 +``` + +**不需要在网页上手动创建,直接用API创建!** + ### 可用的大模型 | 名称 | 地址 | 模型 | diff --git a/PROJECTS.md b/PROJECTS.md index b2dcb50..437030c 100644 --- a/PROJECTS.md +++ b/PROJECTS.md @@ -287,6 +287,8 @@ ls -lh /home/xian/.openclaw/common/stock_system/data/stock_daily_data.parquet | ParamHub Node | http://192.168.2.8:12007/coder/param-hub | v0.2.0 | | ParamHub Python | http://192.168.2.8:12007/coder/param-hub-python | v0.3.1 | | LLM Index RAG | http://192.168.2.8:12007/coder/llm-index-rag | v1.2.0 | +| LLM Proxy | http://192.168.2.8:12007/coder/llm-proxy | v0.4.0 | +| 产品参数爬取系统 | http://192.168.2.8:12007/coder/product-crawler | v1.0.0 | | 网页助手插件 | http://192.168.2.8:12007/coder/web-context-extension | v0.1.0 | | A股历史数据系统 | http://192.168.2.8:12007/coder/stock_system | v0.2.0 |