commit f2cd87c42c5d4fcb1d38b59348ca7ca72e14dce0 Author: Boom <654612@qq.com> Date: Wed Apr 1 15:27:24 2026 +0800 feat: update documentation content and rebuild static assets for VitePress project diff --git a/.antigravity/BASELINE.md b/.antigravity/BASELINE.md new file mode 100644 index 0000000..34d9871 --- /dev/null +++ b/.antigravity/BASELINE.md @@ -0,0 +1,35 @@ +# Project Baseline: VitePress Integration + +## Global Architecture +- **Framework**: VitePress +- **Platform**: Node.js +- **Styling**: Vanilla CSS (VitePress Defaults) + +## Business Logic +- Static documentation site for sports, programming, and business systems (CRM, ERP, BPM, etc.). + +## Project Status +- [x] Directory initialized. +- [x] VitePress project structured. +- [x] Custom "运动百科" (Sports Encyclopedia) theme applied (Now expanded to general Knowledge Base). +- [x] Full "跑步指南" (Running Guide) page restored. +- [x] Full "编程知识库" (Scientific Internet Access Guide) page implemented. +- [x] **New**: Migrated 8 business system folders (approx. 570 files) from `docs/` to root. +- [x] **New**: Integrated business systems into Navigation and Sidebar (multi-sidebar configuration). +- [x] **New**: Added `.gitignore` to exclude `node_modules`, build artifacts, and environment files. + +## Dependencies +- `vitepress`: ^1.6.4 +- `vue`: ^3.5.31 + +## Pending Tasks +- [x] **New**: Unified "hxzx" project name to "回乡甄选" across documentation and configuration. +- [x] **New**: Localized and standardized "zsw" (POS), "app", "bxg", "odoo", "erp", and "crm" directories. + - Renamed markdown files and subfolders to Chinese with numeric prefixes for correct sidebar sorting. + - Optimized and beautified all contents in "hxzx", "erp", and "crm" using VitePress features. +- [x] **New**: Removed "sports" section and revamped homepage (`index.md`) to reflect the new "回乡知识中心" (Hui Xiang Knowledge Center). +- [ ] Implement "Programming" section content. +- [ ] Complete sidebar entries for all business system sub-pages. +- [ ] Fine-tune the documentation layout for business systems. + + diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..83faf40 --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +node_modules +.vitepress/dist +.vitepress/cache +.DS_Store +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +.env +.env.local +.env.*.local +dist/ +.idea/ +.vscode/ diff --git a/.vitepress/config.mts b/.vitepress/config.mts new file mode 100644 index 0000000..2d13bce --- /dev/null +++ b/.vitepress/config.mts @@ -0,0 +1,98 @@ +import { defineConfig } from 'vitepress' +import fs from 'node:fs' +import path from 'node:path' + +// 递归获取目录下所有 markdown 文件作为侧边栏项 +function getSidebarItems(dir: string, base: string) { + const items: any[] = [] + const fullPath = path.resolve(__dirname, '..', dir) + if (!fs.existsSync(fullPath)) return [] + + const files = fs.readdirSync(fullPath) + files.forEach(file => { + const filePath = path.join(fullPath, file) + const stat = fs.statSync(filePath) + + if (stat.isDirectory()) { + if (file === 'img' || file === 'image') return + const subItems = getSidebarItems(path.join(dir, file), base) + if (subItems.length > 0) { + items.push({ + text: file, + collapsed: true, + items: subItems + }) + } + } else if (file.endsWith('.md')) { + const name = file.replace('.md', '') + if (name.toLowerCase() === 'index') return + items.push({ + text: name, + link: `/${dir}/${name}`.replace(/\\/g, '/') + }) + } + }) + + // 排序:按文件名中的数字排序(如 1.登录,2.管理) + return items.sort((a, b) => { + const getNum = (s: string) => { + const m = s.match(/^(\d+)/) + return m ? parseInt(m[1]) : 999 + } + return getNum(a.text) - getNum(b.text) + }) +} + +// https://vitepress.dev/reference/site-config +export default defineConfig({ + title: "回乡知识中心", // 修改为更具品牌感的名称 + description: "探索编程与业务系统的魅力", + head: [ + ['script', { src: 'https://cdn.jsdelivr.net/npm/opencc-js@1.0.5/dist/umd/full.js' }] + ], + themeConfig: { + // https://vitepress.dev/reference/default-theme-config + nav: [ + { text: '首页', link: '/' }, + { text: '编程', link: '/programming/' }, + { + text: '业务系统', + items: [ + { text: 'CRM 系统', link: '/crm/1.登录系统' }, + { text: 'ERP 系统', link: '/erp/1.登录系统' }, + { text: 'Odoo 系统', link: '/odoo/1.Odoo简介' }, + { text: '回乡甄选', link: '/hxzx/1.登录后台' }, + { text: '移动 APP', link: '/app/1.移动APP介绍' }, + { text: '回乡BPM', link: '/bxg/1.一心回乡小程序后台' }, + { text: 'POS', link: '/zsw/1.引言' } + ] + } + ], + + sidebar: { + '/programming/': [ + { + text: '编程', + items: [ + { text: '编程知识库', link: '/programming/' } + ] + } + ], + // 自动生成的业务系统侧边栏 + '/crm/': [{ text: 'CRM 系统', items: getSidebarItems('crm', 'crm') }], + '/erp/': [{ text: 'ERP 系统', items: getSidebarItems('erp', 'erp') }], + '/hxzx/': [{ text: '回乡甄选', items: getSidebarItems('hxzx', 'hxzx') }], + '/app/': [{ text: '移动 APP', items: getSidebarItems('app', 'app') }], + '/bxg/': [{ text: '回乡BPM', items: getSidebarItems('bxg', 'bxg') }], + '/odoo/': [{ text: 'Odoo 系统', items: getSidebarItems('odoo', 'odoo') }], + '/zsw/': [{ text: 'POS', items: getSidebarItems('zsw', 'zsw') }] + }, + + socialLinks: [ + { icon: { svg: '' }, link: 'http://bdhp.yixinhuixiang.com' } + ] + }, + vite: { + assetsInclude: ['**/*.dat'] + } +}) diff --git a/.vitepress/theme/LanguageSwitcher.vue b/.vitepress/theme/LanguageSwitcher.vue new file mode 100644 index 0000000..5b9aa68 --- /dev/null +++ b/.vitepress/theme/LanguageSwitcher.vue @@ -0,0 +1,67 @@ + + + + + diff --git a/.vitepress/theme/custom.css b/.vitepress/theme/custom.css new file mode 100644 index 0000000..0231cc5 --- /dev/null +++ b/.vitepress/theme/custom.css @@ -0,0 +1,3 @@ +:root { + --vp-nav-logo-height: 24px; +} diff --git a/.vitepress/theme/index.ts b/.vitepress/theme/index.ts new file mode 100644 index 0000000..4979599 --- /dev/null +++ b/.vitepress/theme/index.ts @@ -0,0 +1,16 @@ +import { h } from 'vue' +import DefaultTheme from 'vitepress/theme' +import LanguageSwitcher from './LanguageSwitcher.vue' +import './custom.css' + +export default { + extends: DefaultTheme, + Layout: () => { + return h(DefaultTheme.Layout, null, { + 'nav-bar-content-after': () => h(LanguageSwitcher), + }) + }, + enhanceApp({ app }) { + app.component('LanguageSwitcher', LanguageSwitcher) + } +} diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1a7c50e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM docker.1ms.run/library/nginx:latest + +# 将 VitePress 构建产物拷贝到 Nginx 目录 +COPY .vitepress/dist /usr/share/nginx/html + +# 暴露 80 端口 +EXPOSE 80 + +CMD ["nginx", "-g", "daemon off;"] diff --git a/api-examples.md b/api-examples.md new file mode 100644 index 0000000..78b69a5 --- /dev/null +++ b/api-examples.md @@ -0,0 +1,31 @@ +# Runtime API Examples + +This page demonstrates some of the runtime APIs provided by VitePress. + +## Site Data + +The site data contains information about the entire site, such as the title and description. + + + +```vue + + +
{{ site }}
+``` + +
{{ site }}
+ +## Frontmatter + +The frontmatter of the current page. + +
{{ frontmatter }}
diff --git a/app/1.移动APP介绍.md b/app/1.移动APP介绍.md new file mode 100644 index 0000000..8600ddd --- /dev/null +++ b/app/1.移动APP介绍.md @@ -0,0 +1,22 @@ +# 移动 APP 与平台运营概览 + +::: tip 产品矩阵 +回乡移动端体系涵盖了面向消费者的 **“回乡甄选/海峡姐妹 APP”** 以及面向商家的 **“好生意商家版 APP”**。本指南主要介绍平台端的营销逻辑与商户端的移动化管理。 +::: + +## 1. 平台端核心功能 +平台端(管理后台)为移动 APP 提供了强大的营销支撑,包括: +- **积分商城系统**:支持积分、集换卡及纯现金等多种兑换模式。 +- **问卷营销系统**:实现“填问卷 -> 领优惠券”的自动化闭环。 +- **私域流量运营**:通过优惠券捆绑,精准触达不同生命周期的用户。 + +--- + +## 2. 快速导航 +- [2. 平台端积分商城](./2.平台端积分商城) +- [3. 填问卷送券操作步骤](./3.填问卷送券) +- [4. 好生意商家版 APP 指南](./4.好生意商家版APP/1.App下载使用) + +::: info 协助与反馈 +如果您在配置 APP 相关跳转链接或营销规则时遇到困难,请在企业微信联系 308 办公室技术支持。 +::: \ No newline at end of file diff --git a/app/2.平台端积分商城.md b/app/2.平台端积分商城.md new file mode 100644 index 0000000..42c4ff7 --- /dev/null +++ b/app/2.平台端积分商城.md @@ -0,0 +1,46 @@ +# 平台端积分商城与资产核销 + +::: info 商城核心 +积分商城是提升用户活跃度(DAU)的关键工具。它支持客户使用积攒的“积分”或“集换卡(印章)”进行实物兑换、优惠券兑领或现金差额购买。 +::: + +## 1. 业务分类预设 +在创建积分商品前,必须先确立所属分类。系统预设了以下 3 类核心分类: +- **福利卡**:针对特定会员等级发放。 +- **积分兑换**:标准积分消耗渠道。 +- **集换卡**:专门用于“集章兑换”场景。 + +![分类管理界面](img/cm1.png) + +--- + +## 2. 积分商品管理 (添加与配置) +- **操作路径**:`商城管理` -> `积分商品` -> `添加`。 +- **关键参数说明**: + - **允许兑换次数/周期**:设置防滥用机制。例如“次数 2,周期 7 天”,即每位用户每周限兑 2 次。设置为 0 则不限次数。 + - **支付方式选择**:四选一模式(积分+现金、仅积分、仅集卡券、仅现金)。 + - **上架状态**:勾选“上架”并保存后,商品将即时同步至回乡 APP 首页的积分专区。 + +![商品编辑详情](img/cm2.png) +![商品库存与价格](img/cm3.png) + +--- + +## 3. 面额与优惠券捆绑 (核心营销链路) +如果您的积分商品是虚拟资产(如:10 元代金券),则需要执行“捆绑”动作: + +1. **预设券包**:在 `营销管理` -> `优惠券列表` 中创建目标优惠券。 +2. **执行捆绑**:前往 `营销管理` -> `优惠券捆绑`。 +3. **关联操作**:找到 **“积分商品”** 栏,点击新增,将上述券与积分商品进行 1:1 或 1:N 绑定。 +4. **生效逻辑**:当客户在 APP 点击兑换并成功扣除积分后,绑定的优惠券将自动发放至其个人账户。 + +![优惠券捆绑指引](img/cm4.png) +![绑定成功预览](img/cm5.png) + +--- + +## 4. 订单与对账 +- **操作路径**:`积分商城` -> `订单管理`。 +- **功能描述**:商家可实时监控所有兑换详情,包括兑换人、兑换时间、使用的积分量及核销状态。 + +![兑换订单列表](img/cm7.png) diff --git a/app/3.填问卷送券.md b/app/3.填问卷送券.md new file mode 100644 index 0000000..48a8be4 --- /dev/null +++ b/app/3.填问卷送券.md @@ -0,0 +1,44 @@ +# 问卷调研与自动化送券操作指南 + +::: tip 营销场景 +为了深入了解市场需求或收集客户满意度,商家可发起在线问卷。作为福利,客户在完成答卷后将自动跳转并领取一张优惠券。 +::: + +## 1. 问卷编辑与管理 +- **操作后台**:[回乡问卷管理后台](https://wj.lotus-wallet.com/) +- **核心逻辑**:设计题目 -> 确认问卷名称(用于后续在 CRM 平台端捆绑)。 + +--- + +## 2. 投放与自定义跳转配置 +在问卷编辑完毕后,必须配置“投放与分享”中的自定义链接跳转逻辑。 + +1. **进入设置**:点击 `设置` -> `投放与分享`。 +2. **自定义跳转**:开启并修改跳转链接,将正确的优惠券领券地址填入。 + +![问卷投放设置](img/ques.png) + +--- + +## 3. 标准链接格式说明 +为了确保跳转后能正确识别优惠券及用户信息,必须遵循以下标准 URL 规范: + +### 3.1 静态跳转链接 (基础版) +- **格式**:`https://hx.lotus-wallet.com/questionnaireGift.html?code=[问卷名称]` +- **说明**:问卷名称必须与平台端“优惠券捆绑”中的编号完全一致。 +- **示例**:若捆绑编号为 `hello`,则链接为 `https://hx.lotus-wallet.com/questionnaireGift.html?code=hello`。 + +![问卷名称关联](img/ques-1.png) + +### 3.2 携带用户信息 (进阶版) +如果您在问卷中收集了用户的手机号码,可以使用 `CONCATENATE` 函数将参数携带至领券页,实现精准发券。 +- **格式**:`https://hx.lotus-wallet.com/questionnaireGift.html?code=[您的编号]&mobile=[手机号码参数]` + +![带参数跳转](img/ques-3.png) + +--- + +## 4. 前端展示预览 +设置成功后,当用户回答完最后一个题目并点击“提交”时,页面将毫秒级自动跳转至领券页面,提升用户获得感。 + +![领券成功页面](img/ques-4.png) \ No newline at end of file diff --git a/app/4.好生意商家版APP/1.App下载使用.md b/app/4.好生意商家版APP/1.App下载使用.md new file mode 100644 index 0000000..9287255 --- /dev/null +++ b/app/4.好生意商家版APP/1.App下载使用.md @@ -0,0 +1,36 @@ +# 好生意 App:下载、安装与快速上手 + +::: tip 软件简介 +“好生意”是一款专为门店经营者打造的一站式生意管理软件。它集成了库存管理、实时记账、营销核销及订单退款处理,旨在通过移动化办公降低商家的经营成本。 +::: + +## 1. 获取软件 (下载安装) + +### 1.2 iPhone (iOS) 用户 +- **操作步骤**:打开 `App Store` 应用商店。 +- **搜索关键词**:输入 **“好生意”**。 +- **安装**:点击获取并安装。 + +### 1.1 Android (安卓) 用户 +- **官方下载地址**:[点击前往下载页面](http://application.lotus-wallet.com/haoshengyi) +- **直接安装**:进入页面后点击“下载安装”按钮。如手机提示“风险来源”,请在设置中选择“允许来自此来源的应用”。 + +--- + +## 2. 登录与初始化 + +1. **隐私协议**:启动 App 后,请先阅读并点击“同意”《好生意用户隐私协议》。 +2. **账号身份验证**: + - 输入您的手机号码/管理员账号。 + - 输入对应密码并勾选服务协议。 +3. **选择服务门店**:首次登录成功后,系统会弹出绑定的门店列表。请点击您当前需要管理的门店进入首页。 + +![登录引导界面](img/login.png) +![门店选择列表](img/image1.png) + +--- + +## 3. 首页工作台布局 +App 采用简洁的磁贴式布局,顶部显示实时营业概况,中部为核心工具(扫一扫、订单、报表),底部为消息与个人中心。 + +![App 首页布局图](img/image-sy.png) \ No newline at end of file diff --git a/app/4.好生意商家版APP/3.扫码核销.md b/app/4.好生意商家版APP/3.扫码核销.md new file mode 100644 index 0000000..c90ddbc --- /dev/null +++ b/app/4.好生意商家版APP/3.扫码核销.md @@ -0,0 +1,30 @@ +# 高效扫码与票券核销指南 + +::: tip 场景应用 +“扫一扫”是门店最常用的功能。好生意 App 对扫码核销逻辑进行了深度优化,系统会自动识别条码/二维码类型(团购券、代金券、提货码),无需店员手动切换,实现一秒秒录。 +::: + +## 1. 功能路径 +- **快捷入口**:点击 App 首页底部的“扫一扫”或右上角的“扫码”图标。 + +![扫码入口预览](img/image-sy1.png) + +--- + +## 2. 操作动作与授权 + +### 2.1 首次开启 +- **权限申请**:首次点击扫一扫时,请在系统弹出的对话框中选择“允许”或“使用应用时允许”相机访问权限。 +- **配置失败建议**:如若不小心点击了拒绝,请前往手机系统的 `设置` -> `应用管理` -> `好生意` 手动打开相机权限。 + +### 2.2 自动核销流程 +1. **对准码位**:将扫码框对准客户提供的电子券码。 +2. **详情确认**:系统识别后会弹出核销详情(券面值、有效期)。 +3. **完成扣减**:点击“核销使用”,系统会自动扣减对应资产并生成核销流水。 + +::: warning 注意事项 +如果该券码已被核销过,系统将弹出“重复核销”警告,保障商家的结算安全。 +::: + +![相机授权指引](img/shouq.png) +![核销确认弹窗](img/hexiao.png) diff --git a/app/4.好生意商家版APP/4.订单管理.md b/app/4.好生意商家版APP/4.订单管理.md new file mode 100644 index 0000000..7ca7ecc --- /dev/null +++ b/app/4.好生意商家版APP/4.订单管理.md @@ -0,0 +1,50 @@ +# 移动端订单管理与精简售后处理 + +::: tip 工作流核心 +随时随地处理用户订单、筛选流水、核实库存以及响应退款申请。好生意 App 提供了从付款对账到售后退款的全生命周期管理功能。 +::: + +## 1. 业务订单实时查询 +- **操作路径**:点击底部菜单栏 `订单`。 +- **作用**:全案检索及处理在线支付订单。 + +![订单列表主页](img/image-dd.png) + +--- + +## 2. 逆向流程:退款申请与审核 + +### 2.1 申请退款 (商家代客发起) +- **场景**:缺货、停产或特殊情况。 +- **操作流程**: + 1. 在 `订单列表` -> `已付款` 界面找到对应订单。 + 2. 点击“申请退款”并选择原因。 + 3. 如涉及部分退款,可直接进行“修改金额”操作。 + 4. 点击“确定退款”后,申请将同步至财务后台审核。 + +### 2.2 处理退款 (店员/店长审核) +- **场景**:用户已发起线上退款申请。 +- **操作流程**: + 1. 进入 `订单退款` -> `待审核`。 + 2. 点击“去处理”核实具体明细。 + 3. **选择结果**:点击“同意退款”或“拒绝并填写驳回原因”。 + +![退款申请界面](img/image-tk.png) +![退款处理流程](img/image-tkcl.png) + +--- + +## 3. 票券核销明细与手动处理 +对于无法扫码(码模糊)的情况,可使用手动核销功能: +1. **列表检索**:在 `票券核销` -> `票券列表` 界面,根据手机号或券码号进行模糊查询。 +2. **多状态过滤**:如需快速找到可使用券,点击“状态”筛选项并勾选“可使用”。 +3. **确认核销**:在详情页勾选对应的单次核销项目,确认无误后点击“确认核销”。 + +![票券列表汇总](img/image-hx.png) +![票券详细配置](img/image-hx1.png) + +--- + +## 4. 特别说明 +- **报表对齐**:移动端处理的订单与 PC 端后台数据实时同步。 +- **通知机制**:所有的退款同意/拒绝都会同步推送消息至用户的“回乡甄选”公众号或小程序。 \ No newline at end of file diff --git a/app/4.好生意商家版APP/img/hexiao.png b/app/4.好生意商家版APP/img/hexiao.png new file mode 100644 index 0000000..a550268 Binary files /dev/null and b/app/4.好生意商家版APP/img/hexiao.png differ diff --git a/app/4.好生意商家版APP/img/image-dd.png b/app/4.好生意商家版APP/img/image-dd.png new file mode 100644 index 0000000..2623777 Binary files /dev/null and b/app/4.好生意商家版APP/img/image-dd.png differ diff --git a/app/4.好生意商家版APP/img/image-hx.png b/app/4.好生意商家版APP/img/image-hx.png new file mode 100644 index 0000000..1dcfa33 Binary files /dev/null and b/app/4.好生意商家版APP/img/image-hx.png differ diff --git a/app/4.好生意商家版APP/img/image-hx1.png b/app/4.好生意商家版APP/img/image-hx1.png new file mode 100644 index 0000000..c589888 Binary files /dev/null and b/app/4.好生意商家版APP/img/image-hx1.png differ diff --git a/app/4.好生意商家版APP/img/image-sy.png b/app/4.好生意商家版APP/img/image-sy.png new file mode 100644 index 0000000..d9197c6 Binary files /dev/null and b/app/4.好生意商家版APP/img/image-sy.png differ diff --git a/app/4.好生意商家版APP/img/image-sy1.png b/app/4.好生意商家版APP/img/image-sy1.png new file mode 100644 index 0000000..139583c Binary files /dev/null and b/app/4.好生意商家版APP/img/image-sy1.png differ diff --git a/app/4.好生意商家版APP/img/image-tk.png b/app/4.好生意商家版APP/img/image-tk.png new file mode 100644 index 0000000..976536a Binary files /dev/null and b/app/4.好生意商家版APP/img/image-tk.png differ diff --git a/app/4.好生意商家版APP/img/image-tkcl.png b/app/4.好生意商家版APP/img/image-tkcl.png new file mode 100644 index 0000000..77f9102 Binary files /dev/null and b/app/4.好生意商家版APP/img/image-tkcl.png differ diff --git a/app/4.好生意商家版APP/img/image.png b/app/4.好生意商家版APP/img/image.png new file mode 100644 index 0000000..a230bb4 Binary files /dev/null and b/app/4.好生意商家版APP/img/image.png differ diff --git a/app/4.好生意商家版APP/img/image1.png b/app/4.好生意商家版APP/img/image1.png new file mode 100644 index 0000000..3778209 Binary files /dev/null and b/app/4.好生意商家版APP/img/image1.png differ diff --git a/app/4.好生意商家版APP/img/image2.png b/app/4.好生意商家版APP/img/image2.png new file mode 100644 index 0000000..ddcff39 Binary files /dev/null and b/app/4.好生意商家版APP/img/image2.png differ diff --git a/app/4.好生意商家版APP/img/login.png b/app/4.好生意商家版APP/img/login.png new file mode 100644 index 0000000..0e09af2 Binary files /dev/null and b/app/4.好生意商家版APP/img/login.png differ diff --git a/app/4.好生意商家版APP/img/shouq.png b/app/4.好生意商家版APP/img/shouq.png new file mode 100644 index 0000000..1e75a15 Binary files /dev/null and b/app/4.好生意商家版APP/img/shouq.png differ diff --git a/app/4.好生意商家版APP/img/shouye1.png b/app/4.好生意商家版APP/img/shouye1.png new file mode 100644 index 0000000..70a054e Binary files /dev/null and b/app/4.好生意商家版APP/img/shouye1.png differ diff --git a/app/img/cm1.png b/app/img/cm1.png new file mode 100644 index 0000000..11d552b Binary files /dev/null and b/app/img/cm1.png differ diff --git a/app/img/cm2.png b/app/img/cm2.png new file mode 100644 index 0000000..60802a1 Binary files /dev/null and b/app/img/cm2.png differ diff --git a/app/img/cm3.png b/app/img/cm3.png new file mode 100644 index 0000000..f2d350b Binary files /dev/null and b/app/img/cm3.png differ diff --git a/app/img/cm4.png b/app/img/cm4.png new file mode 100644 index 0000000..60f8712 Binary files /dev/null and b/app/img/cm4.png differ diff --git a/app/img/cm5.png b/app/img/cm5.png new file mode 100644 index 0000000..5c7c3b1 Binary files /dev/null and b/app/img/cm5.png differ diff --git a/app/img/cm7.png b/app/img/cm7.png new file mode 100644 index 0000000..9b1e76e Binary files /dev/null and b/app/img/cm7.png differ diff --git a/app/img/ques-1.png b/app/img/ques-1.png new file mode 100644 index 0000000..cf706be Binary files /dev/null and b/app/img/ques-1.png differ diff --git a/app/img/ques-2.png b/app/img/ques-2.png new file mode 100644 index 0000000..8f959ce Binary files /dev/null and b/app/img/ques-2.png differ diff --git a/app/img/ques-3.png b/app/img/ques-3.png new file mode 100644 index 0000000..c65afe4 Binary files /dev/null and b/app/img/ques-3.png differ diff --git a/app/img/ques-4.png b/app/img/ques-4.png new file mode 100644 index 0000000..68d17a2 Binary files /dev/null and b/app/img/ques-4.png differ diff --git a/app/img/ques.png b/app/img/ques.png new file mode 100644 index 0000000..3bd4c7b Binary files /dev/null and b/app/img/ques.png differ diff --git a/build.bat b/build.bat new file mode 100644 index 0000000..dab4b03 --- /dev/null +++ b/build.bat @@ -0,0 +1,18 @@ +@echo off +set IMAGE_NAME=registry.cn-beijing.aliyuncs.com/zyh5/docs + +echo [1/3] Building VitePress... +call npm run build + +if %ERRORLEVEL% NEQ 0 ( + echo Build failed! + exit /b %ERRORLEVEL% +) + +echo [2/3] Building Docker image... +docker build -t %IMAGE_NAME% . + +echo [3/3] Pushing to Registry... +docker push %IMAGE_NAME% + +echo Done! diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..63ddf90 --- /dev/null +++ b/build.sh @@ -0,0 +1,18 @@ +#!/bin/bash +IMAGE_NAME="registry.cn-beijing.aliyuncs.com/zyh5/docs" + +echo "[1/3] Building VitePress..." +npm run build + +if [ $? -ne 0 ]; then + echo "Build failed!" + exit 1 +fi + +echo "[2/3] Building Docker image..." +docker build -t $IMAGE_NAME . + +echo "[3/3] Pushing to Registry..." +docker push $IMAGE_NAME + +echo "Done!" diff --git a/bxg/1.一心回乡小程序后台.md b/bxg/1.一心回乡小程序后台.md new file mode 100644 index 0000000..de0f98c --- /dev/null +++ b/bxg/1.一心回乡小程序后台.md @@ -0,0 +1,6 @@ +--- +sidebar_position: 0 +sidebar_label: 一心回乡小程序后台 +title: 一心回乡小程序后台 +--- +## **一心回乡小程序后台** diff --git a/bxg/2.古桑园小程序说明.md b/bxg/2.古桑园小程序说明.md new file mode 100644 index 0000000..8e64f95 --- /dev/null +++ b/bxg/2.古桑园小程序说明.md @@ -0,0 +1,48 @@ +--- +sidebar_position: 1 +sidebar_label: 古桑园小程序使用说明 +title: 古桑园小程序使用说明 +--- + +## 古桑园商家端 +### 注册和登录 +古桑园商家端主要操作使用WEB浏览器,进入:https://pos.tenant.lotus-wallet.com/ 登录操作账号, + +商家登录成功后可编辑店铺信息,上下架产品,管理商品信息,查看所有订单并处理订单退款等;并添加门票等 + +### 订单退款 +古桑园订单退款需要两步操作,分别是 经营者发起退款申请, 古桑园管理员同意退款申请后,等待支付渠道退款。 + +商家操作: +商家需要退款时,使用微信小程序搜索“一心回乡商户管理“,或通过二维码直接扫码进入,登录对应账户,在”订单“标签页内,找到对应金额订单,点击“申请退款”。 + +![Alt text](img/gsy-3.png) + +管理员操作: + +商户提交退款申请后,需要更高权限在商家端通过后,才可退款。 + +1.使用 PC 打开浏览器输入地址:https://pos.tenant.lotus-wallet.com/ + +2.使用具有退款权限的账户登录,选择标签 :运营->订单->售后订单,找到对应商户提交的退款申请,选择同意,订单会在 5 分钟内从原支付路径退款给客户. +如果商户余额不足退款,此时退款申请将不能通过,并提示错误,请等待有新的额度进入后再次操作退款。 + + +## 客户购票 +客户微信搜索古桑园小程序或扫码进入首页,点击购票,选择预约时间,填写信息付款购票 +打开页面‘我的’票券,即可查看相应票券,并出示给工作人员核销;点击‘全部’页面即可查看所有购买记录 + + +## 门票核销 +使用微信搜索小程序《一心回乡商户管理》,使用设定的商家账户登入。 +使用小程序-核销票券图标打开拍摄状态,将手机对准客人出示券码,核销成功后,商家端小程序会播报《核销成功》提示,客人端会显示票券已核销。核销记录中可查看全部票券核销状态。 + +![Alt text](img/gsy-1.png) ![Alt text](img/gsy-2.png) + + +## 商家报表 +全部门店小计:http://report.lotus-wallet.com/jmreport/view/818671972569427968 + +全部订单明细:http://report.lotus-wallet.com/jmreport/view/818651627011551232 + +每日核销:http://report.lotus-wallet.com/jmreport/view/819813637522829312 \ No newline at end of file diff --git a/bxg/3.回乡饱岛美食街.md b/bxg/3.回乡饱岛美食街.md new file mode 100644 index 0000000..8882fdb --- /dev/null +++ b/bxg/3.回乡饱岛美食街.md @@ -0,0 +1,73 @@ +--- +sidebar_position: 2 +sidebar_label: 回乡饱岛美食街 +title: 回乡饱岛美食街 +--- +## 回乡饱岛美食街 +微信搜索小程序:回乡饱岛美食街, + +该程序主要功能:用户可以浏览饱岛美食街内所有的店铺,查看榜单推荐的店铺,收藏店铺,并进行下单消费; + +小程序码 : ![Alt text](img/msj.png) + + +***** + +### 上新店铺 +商家端登录美食街账号,点击【门店设置】,添加门店,编辑门店信息,营业时间,地址等;添加成功后如图所示, + +![Alt text](img/msj1.png) + +***** + +### 上传商品 + +上传门店商品具体操作步骤请参照商家端设置文档; + + +### 门店图及门店详情图 +小程序上每个门店都会展示门店门面图,门店轮播图,以及店铺详情图,需要在商家端设置; + +在商家端选择需要编辑的门店,点击编辑【基本信息】,添加门面图和店铺详情图,设置成功后即可展示在小程序上; + +![Alt text](img/msj3.png) + + + +***** +#### 门店轮播图 + +门店轮播图一般展示在每个门店的上方,在【运营】--【门店管理】--【轮播】进行添加设置;类型选择首页轮播,添加成功后在小程序展示为图所示; +![Alt text](img/msj5.png) + +***** +### 小程序轮播图 +小程序首页会有轮播图的展示,在商家端 【小程序配置】--【首页配置】--【首页轮播图】 进行添加; + +![Alt text](img/msj6.png) + +***** +### 小程序榜单 +小程序上共有四个榜单,全部榜,推荐榜,必吃榜,必喝榜,这些榜单上的门店顺序可以进行调整; +全部榜单顺序的更改在【门店设置】详情里的排序处 +推荐榜,必吃榜,必喝榜,在【运营】--【小程序配置】--【首页配置】--【餐饮美食】处进行编辑更改 + +![Alt text](img/msj7.png) + +***** +### 小程序推文 +小程序板块 饱岛新鲜事 需要在商家端设置图文,选择所有门店,打开【营销】-【活动推文】,新增活动,填写相关内容,设置图片文章,一个活动对应一篇推文,如需多篇图文进行轮播,可设置多个活动;如该推文是对于某个门店的营销,可选择关联对应门店,设置成功后用户点击该文章时可选择进入该门店; + +![Alt text](img/msj8.png) + + +***** +### 发现美食 +在小程序首页上,有一个板块是推荐的具体商品,用户可点击进入该店铺直接购买,如需调整推荐商品,在商家端具体操作步骤如下; +选择所有门店,【小程序配置】-【首页配置】-【首页商品】,配置选择需要放在首页的商品; + +![Alt text](img/msj9.png) + +### 退款 +如有客户需要退款且没有任何纠纷,可让用户在小程序找出该笔订单点申请退款,商家在企业微信上登录账号后,选择该门店操作同意退款,款项将会原路退回; + diff --git a/bxg/4.美食街退款说明.md b/bxg/4.美食街退款说明.md new file mode 100644 index 0000000..5ae7204 --- /dev/null +++ b/bxg/4.美食街退款说明.md @@ -0,0 +1,29 @@ +--- +sidebar_position: 3 +sidebar_label: 回乡饱岛美食街退款操作说明 +title: 回乡饱岛美食街退款操作说明 +--- + +## 回乡饱岛美食街退款操作说明 +美食街订单退款需要用户在小程序上点击申请退款,商家登录企业微信操作同意退款后,款项会按支付原渠道退回客户账户。 + +### 用户操作 + + 客户在美食街小程序下单付款后,如对订单有疑问,可与商家商议进行申请退款,且订单在 【待使用状态】时才允许申请;找到该笔订单,打开订单详情页点击【申请退款】按钮,等待商家操作同意退款,付款将原路退回; + + 若订单状态已经自动更改为 【已完成】,则不支持客户在用户端主动申请,商家可记录下来订单编号反馈给运营,由更高权限者统一在商家端进行操作; + + +***** + +### 商家操作 + 客户申请完成后,商家打开企业微信, 找到 ***工作台*** >***回乡*** ,点击 **门店操作** > **美食街退款通道**,选择对应门店登录, 登录后可在 【待处理栏】 查看到所有客户申请退款的记录, 商家需仔细核对订单编号和金额后再操作同意退款, 点击同意后款项会从原渠道退回客户账号, 退款完成后订单可在 【已退款栏】 查看; + + +商家需要注意的是; +1. 请仔细对比客人付款流水单号及操作金额,防止退款错误。 +2. 退款同意后,款项将在1分钟左右通过客人原支付渠道退还。 +3. 拒绝退款的订单,可以不进行操作,每日0点未被处理的退款将会被自动全部拒绝。 +4. 执行的退款操作将留存你的企业微信信息,注意正确操作。 + +![Alt text](img/meishijrf.png) diff --git a/bxg/img/gsy-1.png b/bxg/img/gsy-1.png new file mode 100644 index 0000000..f6525d2 Binary files /dev/null and b/bxg/img/gsy-1.png differ diff --git a/bxg/img/gsy-2.png b/bxg/img/gsy-2.png new file mode 100644 index 0000000..3256f95 Binary files /dev/null and b/bxg/img/gsy-2.png differ diff --git a/bxg/img/gsy-3.png b/bxg/img/gsy-3.png new file mode 100644 index 0000000..00f6396 Binary files /dev/null and b/bxg/img/gsy-3.png differ diff --git a/bxg/img/meishijrf.png b/bxg/img/meishijrf.png new file mode 100644 index 0000000..30eeccc Binary files /dev/null and b/bxg/img/meishijrf.png differ diff --git a/bxg/img/msj.png b/bxg/img/msj.png new file mode 100644 index 0000000..4b13081 Binary files /dev/null and b/bxg/img/msj.png differ diff --git a/bxg/img/msj1.png b/bxg/img/msj1.png new file mode 100644 index 0000000..f2a964d Binary files /dev/null and b/bxg/img/msj1.png differ diff --git a/bxg/img/msj2.png b/bxg/img/msj2.png new file mode 100644 index 0000000..51f4089 Binary files /dev/null and b/bxg/img/msj2.png differ diff --git a/bxg/img/msj3.png b/bxg/img/msj3.png new file mode 100644 index 0000000..03a6e47 Binary files /dev/null and b/bxg/img/msj3.png differ diff --git a/bxg/img/msj4.png b/bxg/img/msj4.png new file mode 100644 index 0000000..f5d7254 Binary files /dev/null and b/bxg/img/msj4.png differ diff --git a/bxg/img/msj5.png b/bxg/img/msj5.png new file mode 100644 index 0000000..db6b231 Binary files /dev/null and b/bxg/img/msj5.png differ diff --git a/bxg/img/msj6.png b/bxg/img/msj6.png new file mode 100644 index 0000000..b276fad Binary files /dev/null and b/bxg/img/msj6.png differ diff --git a/bxg/img/msj7.png b/bxg/img/msj7.png new file mode 100644 index 0000000..6f54747 Binary files /dev/null and b/bxg/img/msj7.png differ diff --git a/bxg/img/msj8.png b/bxg/img/msj8.png new file mode 100644 index 0000000..2285029 Binary files /dev/null and b/bxg/img/msj8.png differ diff --git a/bxg/img/msj9.png b/bxg/img/msj9.png new file mode 100644 index 0000000..faf489e Binary files /dev/null and b/bxg/img/msj9.png differ diff --git a/crm/1.登录系统.md b/crm/1.登录系统.md new file mode 100644 index 0000000..c3c2ee0 --- /dev/null +++ b/crm/1.登录系统.md @@ -0,0 +1,35 @@ +# CRM 系统登录与基础指南 + +::: tip 技术支持 +如果您在使用过程中遇到任何问题或需要帮助,请在 **企业微信** 联系技术团队协助。 +::: + +## 1. 登录访问方式 + +### 1.1 网页端登录 +- **访问地址**:[http://crm.lotus-wallet.com](http://crm.lotus-wallet.com) +- **登录方式**:输入您的账号密码,或使用企业微信扫码登录。 + +![登录界面](img/image-1.png) +![扫码登录](img/image-31.png) + +### 1.2 企业微信工作台一键登录 (推荐) +在电脑端企业微信中,点击 `工作台` -> `回乡BPM` -> `回乡管理系统` 即可免密一键登录,极大地提升办公效率。 + +![企微一键登录](img/image-2.png) + +--- + +## 2. 后台操作界面概览 +系统采用响应式布局,左侧为功能菜单,顶部为辅助工具栏,右侧为核心业务操作区。 + +- **首页看板**:涵盖员工个人信息、实时概况、待办事项、任务看板、数据分析及遗忘提醒。 +- **通知中心**:右上角第一个图标,展示最新的业务提醒。 +- **个人中心**:可在右上角用户信息处进入,支持修改基础资料及重置登录密码。 + +::: warning 初始密码建议 +系统初始密码较为简单,为了保障您的客户数据安全,请在首次登录后第一时间进入“个人中心”修改密码。 +::: + +![系统首页概览](img/image.png) +![个人中心修改密码](img/image-7.png) diff --git a/crm/2.客户管理.md b/crm/2.客户管理.md new file mode 100644 index 0000000..62d7e1b --- /dev/null +++ b/crm/2.客户管理.md @@ -0,0 +1,67 @@ +# 客户档案与生命周期管理 + +::: info 客户核心 +CRM 系统的本质是维护深度的客户连接。通过对客户背景、跟进、带看及合作记录的全流程追踪,您可以建立起系统化的销售私域资产。 +::: + +## 1. 客户分类与来源 +系统内的客户主要分为三类: +- **我的客户**:本人新增、上级分配或从公共池领取的客户。 +- **下属客户**:作为部门负责人,可查看下属成员负责的客户流水。 +- **公共客户**:已被原有负责人“放入公共”或已离职流失的客户,所有同事均可领。 + +--- + +## 2. 客户核心操作流程 + +### 2.1 新增/编辑客户档案 +1. 点击“新增”按钮。 +2. **必填项**:客户名称、负责人、客户分类、结识缘由。 +3. **选填项**:手机号、单位名称、下次联系时间等(建议尽可能填补完整)。 + +![新增客户界面](img/image-10.png) + +### 2.2 客户详情:360 度全貌 +在“我的客户”列表点击“详情”进入。作为负责人,您可以深度管理以下模块: +- **联系人管理**:记录客户公司内的多个关键业务对接人及其职务。 +- **团队协作**:新增“团队成员”,并设置只读或读写权限,实现跨部门服务客户。 +- **动态汇总**:系统自动记录该客户的所有跟进、送礼、拜访及合作记录流向。 + +![客户详情界面](img/image-13.png) + +--- + +## 3. 客户行为记录 (全生命周期追踪) + +### 3.1 跟进、拜访与送礼 +- **跟变记录**:选择电话/微信/见面沟通,录入详细结果。 +- **拜访记录**:录入拜访地点、随同人员及客户满意度评分。 +- **送礼记录**:建立客情关系,记录节日礼赠及客户反馈。 + +![跟进记录录入](img/image-21.png) +![拜访记录查询](img/image-23.png) + +### 3.2 任务创建与提醒 +您可以为客户创建特定的“任务”(如:周三回款、周五报价)。 +- 设置责任人、参与人及时间轴。 +- 系统将自动生成待办记录并推送至对应人员的看板。 + +![创建任务界面](img/image-14.png) + +--- + +## 4. 客户资产流动与变更 + +### 4.1 更换负责人与放入公共 +- **更换负责人**:离职交接或团队内转让。 +- **放入公共**:若无法继续跟进,放回资源池供他人认领。 + +![放入公共池](img/image-17.png) + +--- + +## 5. 公共池管理与领用 +- **领用**:直接将公共客户移动至本人客户列表。 +- **分配**:作为上级,可将公海资源定向分配给特定下属。 + +![公共池领用界面](img/image-26.png) \ No newline at end of file diff --git a/crm/3.任务管理.md b/crm/3.任务管理.md new file mode 100644 index 0000000..a3512f6 --- /dev/null +++ b/crm/3.任务管理.md @@ -0,0 +1,51 @@ +# 任务管理与工作流自动化 + +::: info 任务核心 +CRM 系统中的“任务”是达成业务目标的最小单位。它基于关联客户,实现全流程的“创建、指派、参与、转交与完成”闭环。 +::: + +## 1. 任务体系概览 +- **入口**:`任务管理` -> `我的任务`。 +- **作用**:记录客户跟进工作流。 + +![任务列表界面](img/image-29.png) + +--- + +## 2. 任务核心操作流程 + +### 2.1 新增/编辑任务 +1. 点击“新增”按钮。 +2. **必选配置**: + - **关联客户**:必须选择您当前负责的客户。 + - **责任人**:默认本人,可手动更改。 + - **任务类型**:分为跟进、送礼、拜访、合作。 +3. **协作配置**: + - **参与人**:设置多个同事共同执行。 + - **优先级**:标记无、高、中、低。 + +![新增任务界面](img/image-30.png) + +### 2.2 任务详情与动态追踪 +点击“详情”进入,查看任务实时信息: +- **任务状态**:进行中、已完成、延迟、取消。 +- **动态记录**:参与人及其操作流水汇总。 + +![任务状态变更](img/image-37.png) + +### 2.3 任务转交与指派 +如遇岗变或业务调整: +1. 点击“转交任务”。 +2. 输入转交原因。 +3. 指定新的负责人,任务将自动移交至其列表并生成待办。 + +![转交任务界面](img/image-62.png) + +--- + +## 3. 下属任务监管 +针对管理岗: +- **操作路径**:`任务管理` -> `下属的任务`。 +- **作用**:实时穿透下属的工作饱和度、客户跟进进展及其任务完成率。 + +![下属任务情况](img/image-48.png) \ No newline at end of file diff --git a/crm/4.财务管理.md b/crm/4.财务管理.md new file mode 100644 index 0000000..2e60400 --- /dev/null +++ b/crm/4.财务管理.md @@ -0,0 +1,41 @@ +# 财务管理:发票申请与审核 + +::: info 发票原则 +CRM 系统提供了发票申请的全流程监控。用户在完成合作后,可直接在后台发起申请,并由财务进行在线对账与审核。 +::: + +## 1. 发票申请管理概览 +- **入口**:`财务管理` -> `发票申请`。 +- **作用**:记录申请时间、商户、申请人、发票类型(个人/单位)、订单及开票金额等核心资产数据。 + +![发票申请列表](img/image-41.png) + +--- + +## 2. 发票审核与开项 + +### 2.1 审核全流程 +1. 点击“审核”按钮。 +2. **选择结果**: + - **通过**:必须同步上传电子版发票(支持 PNG、JPG、PDF 格式)。 + - **不通过**:必须填写驳回原因,用户可在个人中心查收原因并二次发起。 +3. **确认提交**:审核通过后,发票状态变更为“已开票”。 + +![发票审核界面](img/image-43.png) +![上传电子发票](img/image-44.png) + +--- + +## 3. 错票维护与清除 + +### 3.1 发票冲红 +针对已开具但金额、抬头有误的发票: +1. 在已开票状态下点击“冲红”按钮。 +2. 确认操作后,原发票即刻作废,不可再用(财务需按规定执行冲红记录)。 + +![发票冲红操作](img/image-46.png) + +### 3.2 废票删除 +针对“已作废”或“审核不通过”的记录,如有误录或重复申请,可点击“删除”。该记录将从财务列表中彻底移除。 + +![删除发票界面](img/image-47.png) \ No newline at end of file diff --git a/crm/img/image-1.png b/crm/img/image-1.png new file mode 100644 index 0000000..95e9cbd Binary files /dev/null and b/crm/img/image-1.png differ diff --git a/crm/img/image-10.png b/crm/img/image-10.png new file mode 100644 index 0000000..4089d86 Binary files /dev/null and b/crm/img/image-10.png differ diff --git a/crm/img/image-11.png b/crm/img/image-11.png new file mode 100644 index 0000000..81124ab Binary files /dev/null and b/crm/img/image-11.png differ diff --git a/crm/img/image-12.png b/crm/img/image-12.png new file mode 100644 index 0000000..add872b Binary files /dev/null and b/crm/img/image-12.png differ diff --git a/crm/img/image-13.png b/crm/img/image-13.png new file mode 100644 index 0000000..621e49b Binary files /dev/null and b/crm/img/image-13.png differ diff --git a/crm/img/image-14.png b/crm/img/image-14.png new file mode 100644 index 0000000..7ad18bb Binary files /dev/null and b/crm/img/image-14.png differ diff --git a/crm/img/image-15.png b/crm/img/image-15.png new file mode 100644 index 0000000..0446753 Binary files /dev/null and b/crm/img/image-15.png differ diff --git a/crm/img/image-16.png b/crm/img/image-16.png new file mode 100644 index 0000000..a14b43b Binary files /dev/null and b/crm/img/image-16.png differ diff --git a/crm/img/image-17.png b/crm/img/image-17.png new file mode 100644 index 0000000..b547f7b Binary files /dev/null and b/crm/img/image-17.png differ diff --git a/crm/img/image-18.png b/crm/img/image-18.png new file mode 100644 index 0000000..61c0949 Binary files /dev/null and b/crm/img/image-18.png differ diff --git a/crm/img/image-19.png b/crm/img/image-19.png new file mode 100644 index 0000000..2084f7f Binary files /dev/null and b/crm/img/image-19.png differ diff --git a/crm/img/image-2.png b/crm/img/image-2.png new file mode 100644 index 0000000..3d71d45 Binary files /dev/null and b/crm/img/image-2.png differ diff --git a/crm/img/image-20.png b/crm/img/image-20.png new file mode 100644 index 0000000..abcd1a6 Binary files /dev/null and b/crm/img/image-20.png differ diff --git a/crm/img/image-21.png b/crm/img/image-21.png new file mode 100644 index 0000000..64418f5 Binary files /dev/null and b/crm/img/image-21.png differ diff --git a/crm/img/image-22.png b/crm/img/image-22.png new file mode 100644 index 0000000..69302ad Binary files /dev/null and b/crm/img/image-22.png differ diff --git a/crm/img/image-23.png b/crm/img/image-23.png new file mode 100644 index 0000000..a84884a Binary files /dev/null and b/crm/img/image-23.png differ diff --git a/crm/img/image-24.png b/crm/img/image-24.png new file mode 100644 index 0000000..83d86ae Binary files /dev/null and b/crm/img/image-24.png differ diff --git a/crm/img/image-25.png b/crm/img/image-25.png new file mode 100644 index 0000000..01f2650 Binary files /dev/null and b/crm/img/image-25.png differ diff --git a/crm/img/image-26.png b/crm/img/image-26.png new file mode 100644 index 0000000..9e91f89 Binary files /dev/null and b/crm/img/image-26.png differ diff --git a/crm/img/image-27.png b/crm/img/image-27.png new file mode 100644 index 0000000..f89a174 Binary files /dev/null and b/crm/img/image-27.png differ diff --git a/crm/img/image-29.png b/crm/img/image-29.png new file mode 100644 index 0000000..55524b9 Binary files /dev/null and b/crm/img/image-29.png differ diff --git a/crm/img/image-3.png b/crm/img/image-3.png new file mode 100644 index 0000000..dcf79af Binary files /dev/null and b/crm/img/image-3.png differ diff --git a/crm/img/image-30.png b/crm/img/image-30.png new file mode 100644 index 0000000..15bcb29 Binary files /dev/null and b/crm/img/image-30.png differ diff --git a/crm/img/image-31.png b/crm/img/image-31.png new file mode 100644 index 0000000..2b1c1d7 Binary files /dev/null and b/crm/img/image-31.png differ diff --git a/crm/img/image-32.png b/crm/img/image-32.png new file mode 100644 index 0000000..401c779 Binary files /dev/null and b/crm/img/image-32.png differ diff --git a/crm/img/image-33.png b/crm/img/image-33.png new file mode 100644 index 0000000..80fcd57 Binary files /dev/null and b/crm/img/image-33.png differ diff --git a/crm/img/image-34.png b/crm/img/image-34.png new file mode 100644 index 0000000..8c02ca8 Binary files /dev/null and b/crm/img/image-34.png differ diff --git a/crm/img/image-35.png b/crm/img/image-35.png new file mode 100644 index 0000000..3eb5ce4 Binary files /dev/null and b/crm/img/image-35.png differ diff --git a/crm/img/image-36.png b/crm/img/image-36.png new file mode 100644 index 0000000..71155e2 Binary files /dev/null and b/crm/img/image-36.png differ diff --git a/crm/img/image-37.png b/crm/img/image-37.png new file mode 100644 index 0000000..7ab192b Binary files /dev/null and b/crm/img/image-37.png differ diff --git a/crm/img/image-4.png b/crm/img/image-4.png new file mode 100644 index 0000000..77349bf Binary files /dev/null and b/crm/img/image-4.png differ diff --git a/crm/img/image-41.png b/crm/img/image-41.png new file mode 100644 index 0000000..4c36d85 Binary files /dev/null and b/crm/img/image-41.png differ diff --git a/crm/img/image-42.png b/crm/img/image-42.png new file mode 100644 index 0000000..353e5dc Binary files /dev/null and b/crm/img/image-42.png differ diff --git a/crm/img/image-43.png b/crm/img/image-43.png new file mode 100644 index 0000000..fb0eba0 Binary files /dev/null and b/crm/img/image-43.png differ diff --git a/crm/img/image-44.png b/crm/img/image-44.png new file mode 100644 index 0000000..a79a5de Binary files /dev/null and b/crm/img/image-44.png differ diff --git a/crm/img/image-45.png b/crm/img/image-45.png new file mode 100644 index 0000000..63f4584 Binary files /dev/null and b/crm/img/image-45.png differ diff --git a/crm/img/image-46.png b/crm/img/image-46.png new file mode 100644 index 0000000..aaa1368 Binary files /dev/null and b/crm/img/image-46.png differ diff --git a/crm/img/image-47.png b/crm/img/image-47.png new file mode 100644 index 0000000..61f379b Binary files /dev/null and b/crm/img/image-47.png differ diff --git a/crm/img/image-48.png b/crm/img/image-48.png new file mode 100644 index 0000000..2c8d6fb Binary files /dev/null and b/crm/img/image-48.png differ diff --git a/crm/img/image-49.png b/crm/img/image-49.png new file mode 100644 index 0000000..cf59618 Binary files /dev/null and b/crm/img/image-49.png differ diff --git a/crm/img/image-5.png b/crm/img/image-5.png new file mode 100644 index 0000000..9f31075 Binary files /dev/null and b/crm/img/image-5.png differ diff --git a/crm/img/image-50.png b/crm/img/image-50.png new file mode 100644 index 0000000..11b37d3 Binary files /dev/null and b/crm/img/image-50.png differ diff --git a/crm/img/image-51.png b/crm/img/image-51.png new file mode 100644 index 0000000..aa5734b Binary files /dev/null and b/crm/img/image-51.png differ diff --git a/crm/img/image-52.png b/crm/img/image-52.png new file mode 100644 index 0000000..8d7e3f8 Binary files /dev/null and b/crm/img/image-52.png differ diff --git a/crm/img/image-53.png b/crm/img/image-53.png new file mode 100644 index 0000000..5926653 Binary files /dev/null and b/crm/img/image-53.png differ diff --git a/crm/img/image-54.png b/crm/img/image-54.png new file mode 100644 index 0000000..a83c8f6 Binary files /dev/null and b/crm/img/image-54.png differ diff --git a/crm/img/image-55.png b/crm/img/image-55.png new file mode 100644 index 0000000..08efe20 Binary files /dev/null and b/crm/img/image-55.png differ diff --git a/crm/img/image-56.png b/crm/img/image-56.png new file mode 100644 index 0000000..0d5225e Binary files /dev/null and b/crm/img/image-56.png differ diff --git a/crm/img/image-57.png b/crm/img/image-57.png new file mode 100644 index 0000000..1567793 Binary files /dev/null and b/crm/img/image-57.png differ diff --git a/crm/img/image-58.png b/crm/img/image-58.png new file mode 100644 index 0000000..8c0e3fe Binary files /dev/null and b/crm/img/image-58.png differ diff --git a/crm/img/image-59.png b/crm/img/image-59.png new file mode 100644 index 0000000..505fec6 Binary files /dev/null and b/crm/img/image-59.png differ diff --git a/crm/img/image-6.png b/crm/img/image-6.png new file mode 100644 index 0000000..a36118d Binary files /dev/null and b/crm/img/image-6.png differ diff --git a/crm/img/image-60.png b/crm/img/image-60.png new file mode 100644 index 0000000..d58a060 Binary files /dev/null and b/crm/img/image-60.png differ diff --git a/crm/img/image-61.png b/crm/img/image-61.png new file mode 100644 index 0000000..3d47f8d Binary files /dev/null and b/crm/img/image-61.png differ diff --git a/crm/img/image-62.png b/crm/img/image-62.png new file mode 100644 index 0000000..59b355b Binary files /dev/null and b/crm/img/image-62.png differ diff --git a/crm/img/image-63.png b/crm/img/image-63.png new file mode 100644 index 0000000..61e8301 Binary files /dev/null and b/crm/img/image-63.png differ diff --git a/crm/img/image-64.png b/crm/img/image-64.png new file mode 100644 index 0000000..5eb6019 Binary files /dev/null and b/crm/img/image-64.png differ diff --git a/crm/img/image-7.png b/crm/img/image-7.png new file mode 100644 index 0000000..849d3bb Binary files /dev/null and b/crm/img/image-7.png differ diff --git a/crm/img/image-8.png b/crm/img/image-8.png new file mode 100644 index 0000000..6a360bd Binary files /dev/null and b/crm/img/image-8.png differ diff --git a/crm/img/image-9.png b/crm/img/image-9.png new file mode 100644 index 0000000..395718e Binary files /dev/null and b/crm/img/image-9.png differ diff --git a/crm/img/image.png b/crm/img/image.png new file mode 100644 index 0000000..078718b Binary files /dev/null and b/crm/img/image.png differ diff --git a/erp/1.登录系统.md b/erp/1.登录系统.md new file mode 100644 index 0000000..839e65b --- /dev/null +++ b/erp/1.登录系统.md @@ -0,0 +1,25 @@ +# ERP 登录与进销存概览 + +::: tip 技术支持 +如果您在使用过程中遇到任何问题或需要帮助,请在 **企业微信** 联系技术团队协助。 +::: + +## 1. 登录与访问 +回乡 ERP 系统提供集成的进销存与财务管理方案,助力公司高效管理库存、订单与生产业务。 + +### 1.1 访问地址 +请使用现代浏览器访问以下网址: +> [立即前往回乡 ERP 管理系统](http://erp.tenant.lotus-wallet.com/) + +### 1.2 身份验证 +在登录界面输入您的专属账号与密码即可进入系统。 + +![登录界面](img/image.png) + +--- + +## 2. 系统核心价值 +回乡 ERP 不仅仅是一个软件,它是业务增长的助推器: +- **集成化**:统一管理库存、采购、销售与生产,打破信息孤岛。 +- **数据驱动**:提供精准的财务报表与经营分析。 +- **流程规范**:建立从原料入库到产品出厂的标准操作规程。 \ No newline at end of file diff --git a/erp/2.账期管理.md b/erp/2.账期管理.md new file mode 100644 index 0000000..0226740 --- /dev/null +++ b/erp/2.账期管理.md @@ -0,0 +1,43 @@ +# 会计周期与账期管理 + +::: tip 账期核心 +账期管理是系统财务核算的基础,确保系统中的库存数据与物理实物保持一致。 +::: + +## 1. 账期管理基础 + +- **入口**:左侧菜单栏 -> `账期管理`。 +- **作用**:在将会计周期开启或结束时,确定一个时间段内的库存基准与财务状态。 + +![账期管理主界面](img/image-1.png) + +--- + +## 2. 核心操作流程 + +### 2.1 新增/开启账期 +每个新的会计周期开始前,均需开启“初始化账期”。 +1. 点击“新增”按钮。 +2. 在弹出窗口中点击确认,系统将生成当前周期的账期记录。 + +![新增账期](img/image-6.png) + +### 2.2 数据导入 (期初导入) +如果是首次上线或需要大批量调整期初数据: +1. 点击“导入期初”按钮。 +2. 在窗口中上传预先填写的 Excel 模板。 +3. 提交表单完成导入。 + +![期初导入管理](img/image-2.png) + +### 2.3 查看明细 +您可以随时查看当前或历史账期的详细结存信息,包括各物料的起初期末数值。 + +![详情查看](img/image-3.png) + +### 2.4 结束账期 +完成一个月或周期的核算后,需手动“结束账期”。 +1. 点击“结束账期”按钮。 +2. 待确认倒计时结束(系统此时在进行数据归档),点击提交即可。 + +![结算操作](img/image-4.png) diff --git a/erp/3.成本卡管理.md b/erp/3.成本卡管理.md new file mode 100644 index 0000000..e662381 --- /dev/null +++ b/erp/3.成本卡管理.md @@ -0,0 +1,46 @@ +# 成本卡与 BOM 物料清单管理 + +::: tip 管理目标 +成本卡是衡量生产效益的核心。通过精细化的 BOM (物料清单) 设置,您可以精确跟踪每一件成品的原材料消耗与生产成本。 +::: + +## 1. 成本卡管理概览 +- **入口**:左侧菜单栏 -> `成本卡管理`。 +- **作用**:定义成品与半成品的结构、存储仓库、计量单位以及基准价格。 + +![成本卡管理主界面](img/image-8.png) + +--- + +## 2. 核心操作流程 + +### 2.1 新增成本卡 (成品/半成品) +1. 点击“新增”按钮。 +2. 填写基础信息: + - **产品名称**:如“小番茄”、“有机果汁”等。 + - **计量单位**:支持多单位换算(如:箱、瓶、克)。 + - **入库价格**:设定基准入库成本。 + - **仓库选择**:指定默认入库的生产仓或成品仓。 + +![新增成本卡界面](img/image-7.png) + +### 2.2 BOM (物料清单) 设置 +BOM 定义了产品的“配方”,是自动化生产领料的依据。 +1. 在目标产品后点击“BOM 设置”。 +2. **添加物料**:搜索并选择所需的原材料(成品可包含半成品和原材料,半成品仅包含原材料)。 +3. **设定配比**:输入生产单个单位成品所需的损耗数量。 + +![BOM 详情配置](img/image-9.png) + +### 2.3 产品编辑与状态管理 +- **状态切换**:可随时将产品设为“停用”,防止其在生产计划中被误选。 +- **信息修正**:除自动生成的“产品编码”外,其余字段均可按需更新。 + +![产品编辑界面](img/image-10.png) + +--- + +## 3. 数据导出与备份 +点击“导出”按钮即可将当前的成本卡列表生成 **Excel** 表格。建议定期导出并存档,用于财务审计与离线分析。 + +![导出操作](img/image-11.png) \ No newline at end of file diff --git a/erp/4.物料管理.md b/erp/4.物料管理.md new file mode 100644 index 0000000..0f2875d --- /dev/null +++ b/erp/4.物料管理.md @@ -0,0 +1,44 @@ +# 物料主档案管理 + +::: tip 管理目标 +物料管理是 ERP 系统中最核心的基础模块。准确设置原材料、半成品及成品的品种与规格,是保证后续盘点、领料及销售准确性的唯一前提。 +::: + +## 1. 物料管理概览 +- **入口**:左侧菜单栏 -> `物料管理`。 +- **作用**:全生命周期管理生产和运营所需的全部实物资产。 + +![物料管理主界面](img/image-12.png) + +--- + +## 2. 核心操作流程 + +### 2.1 新增物料 (单条创建) +1. 点击“新增”按钮。 +2. 填写基础属性: + - **物料类型**:可选“原材料”(原料)、“成品”(售出商品)、“半成品”(过程件)。 + - **计量单位**:设定主单位与转换单位。 + - **入库价格**:设置默认基准价格。 + - **税率配置**:按需填写财务相关的税控编码与税率。 + +![新增物料界面](img/image-13.png) + +### 2.2 批量导入与导出 +- **导出**:点击“导出”获取当前所有物料的 Excel 清单,用于核对。 +- **导入**:点击“导入”,下载模板并填报后上传,快速同步历史物料数据。 + +![数据导入导出](img/image-15.png) + +### 2.3 物料编辑与详情查看 +- **编辑**:支持修正产品名称、规格型号及备注。*产品编码作为唯一 ID,不支持修改。* +- **详情追踪**:点击“详情”可查看该物料在当前账期内的所有流向,包括期初结余、累计入库与累计出库。 + +![物料流向追踪](img/image-17.png) + +--- + +## 3. 物料状态管理 +针对已停产、过期或不再使用的物料,建议将其状态设置为**“停用”**,系统将在生产计划与销售界面自动隐藏该项,减少操作员误选的几率。 + +![编辑状态](img/image-16.png) \ No newline at end of file diff --git a/erp/5.仓储管理/1.仓库管理.md b/erp/5.仓储管理/1.仓库管理.md new file mode 100644 index 0000000..938bf4b --- /dev/null +++ b/erp/5.仓储管理/1.仓库管理.md @@ -0,0 +1,39 @@ +# 仓库档案与基础设置 + +::: info 仓储核心 +仓库是物流流向的基点。支持多仓库管理,并可针对每个仓库独立设置负库存策略。 +::: + +## 1. 仓库管理概览 +- **入口**:`仓储管理` -> `仓库管理`。 +- **作用**:维护企业内所有物理仓、逻辑仓(如报损仓、生产仓)的基础信息。 + +![仓库列表](img/image.png) + +--- + +## 2. 核心操作流程 + +### 2.1 新增仓库 +1. 点击“新增仓库”。 +2. 填写必要信息: + - **允许负库存**: + - **允许**:库存不足时系统仍允许出库。 + - **不允许**:库存不足时系统拦截出库并触发库存预警。 + - **地区与地址**:精确到省/市/县,方便后续物流匹配。 + - **仓库状态**:设为“启用”方可被入库/出库单引用。 + +![仓库配置界面](img/image-1.png) + +### 2.2 仓库编辑与详情 +- **信息更新**:可补充联系人电话、修改负库存配置方案。 +- **详情查阅**:查看仓库在当前会计周期内的物料存储分布。 + +![仓库编辑](img/image-2.png) + +--- + +## 3. 仓库删除注意事项 +删除仓库前,请务必执行 **“库存调拨”** 操作,将该仓库下的所有物料余额转移至其他可用仓库。若仓库内仍存在余量,系统将禁止删除以保证账目平衡。 + +![删除操作确认](img/image-3.png) diff --git a/erp/5.仓储管理/2.产品入库.md b/erp/5.仓储管理/2.产品入库.md new file mode 100644 index 0000000..3d5d8bd --- /dev/null +++ b/erp/5.仓储管理/2.产品入库.md @@ -0,0 +1,49 @@ +# 产品及物料入库流程 + +::: info 入库原则 +入库是库存增加的唯一合规通道。通过严密的收货与审核流程,确保每一笔入库均有据可考。 +::: + +## 1. 产品入库概览 +- **入口**:`仓储管理` -> `产品入库`。 +- **作用**:支持采购入库、生产返厂、账期結转等多种来源的库存收入,并支持全流程审核。 + +![入库列表主界面](img/image-5.png) + +--- + +## 2. 核心操作流程 + +### 2.1 新增入库单 (单据创建) +1. 点击“添加”按钮。 +2. 填写关键要素: + - **入库类型**:采购入库、盘存入库、退货入库、生产入库等。 + - **供应商**:关联采购来源。 + - **入库凭证**:支持上传 PDF/图片(如:供应商随货单、物流单)。 +3. **明细录入**: + - 点击“新增产品”,选择入库物料。 + - 填写计量单位、入库数量及含税单价。 + +![新增入库单界面](img/image-6.png) + +### 2.2 暂存与提交 +- **暂存 (保存)**:若物料尚未核点清楚,可先点击“保存”,后续在待办中继续编辑。 +- **确认提交**:点击“确认”后单据进入待审核状态。 + +--- + +## 3. 导入导出与审核 + +### 3.1 资产审核 +所有入库单据在确认后必须经过**审核**流程。 +- **操作路径**:点击“详情” -> “审核”。 +- **审核结果**: + - **通过**:系统即时调增该仓库对应物料的库存余额。 + - **不通过**:需填写驳回原因,单据返回草稿状态。 + +![审核界面](img/image-7.png) + +### 3.2 批量操作 +- **批量导入**:支持 Excel 模版导入,适用于上线初期或大量采购订单的同步。 + +![数据导入确认](img/image-8.png) \ No newline at end of file diff --git a/erp/5.仓储管理/3.产品出库.md b/erp/5.仓储管理/3.产品出库.md new file mode 100644 index 0000000..ae7b29b --- /dev/null +++ b/erp/5.仓储管理/3.产品出库.md @@ -0,0 +1,49 @@ +# 产品及物料出库流程 + +::: warning 出库核心 +出库单是库存减少的标准凭证。通过精确的出库分类(销售、领料等),实现库存成本的对位结转。 +::: + +## 1. 产品出库概览 +- **入口**:`仓储管理` -> `产品出库`。 +- **作用**:处理销售订单、生产领料及退货物流等出库业务。 + +![出库管理列表](img/image-10.png) + +--- + +## 2. 核心操作流程 + +### 2.1 新增出库单 (单据创建) +1. 点击“添加”按钮。 +2. 填写关键要素: + - **出库类型**:销售出库、物料领用、退货出库等。 + - **接收仓库**:出货的起点。 + - **单据凭证**:可上传 PDF/图片(如:用户签收单、物流运单)。 +3. **明细录入**: + - 点击“新增产品”,选择出库物料。 + - 填写计量单位、具体的出库数量。 + +![新增出库单界面](img/image-6.png) + +### 2.2 出库审核流程 +所有出库单据在确认后必须经过**审核**,建议由仓管员或主管负责人操作。 +- **审核结果**: + - **通过**:正式调减该仓库物料余额,生成出库流水。 + - **不通过**:返还单据至草稿,需备注修正建议。 + +![出库审批](img/image-7.png) + +--- + +## 3. 统计与对账 + +### 3.1 数据导出 +点击“导出”生成本期 **Excel** 出库明细表。推荐按日或按周导出,用于核查销售或领用数量。 + +![出库单据导出](img/image-12.png) + +### 3.2 批量同步 +- **历史数据导入**:如果需要追溯在上线前的纸质出库单,可使用“导入”功能批量入账。 + +![数据同步界面](img/image-11.png) diff --git a/erp/5.仓储管理/4.库存盘点.md b/erp/5.仓储管理/4.库存盘点.md new file mode 100644 index 0000000..4144e14 --- /dev/null +++ b/erp/5.仓储管理/4.库存盘点.md @@ -0,0 +1,50 @@ +# 库存盘点与盈亏调结 + +::: info 盘点核心 +库存盘点是保持账实相符的终极手段。通过定期的物理盘点,系统将自动根据盘点额与系统额的差异生成调整流水。 +::: + +## 1. 库存盘点概览 +- **入口**:`仓储管理` -> `库存盘点`。 +- **作用**:记录实际仓位盈亏,自动平衡财务报表中的实物资产。 + +![盘点管理列表](img/image-14.png) + +--- + +## 2. 核心操作流程 + +### 2.1 新增盘点记录 +1. 点击“添加”按钮。 +2. 填写关键要素: + - **盘点日期**:实际进行清点的时间点。 + - **盘点类型**:盘点出入库。 + - **盘点负责员**:记录执行清点的具体责任人。 + - **盘点凭证**:上传现场清点表单或照片。 +3. **明细录入**: + - 点击“新增产品”,选择需要盘点的实物明细。 + - 填写计量单位、输入具体的盘点实物数量。 + +![新增盘点单界面](img/image-15.png) + +### 2.2 盘点审核流程 +所有盘点单据确认后必须通过**审核**,调整才正式生效。 +- **审核通过**:系统自动调整对应物料余额(产生盘盈/盘亏流向)。 +- **审核不通过**:建议重新清点实物后再行提交。 + +![盘点审核界面](img/image-7.png) + +--- + +## 3. 分析与导出 + +### 3.1 盈亏数据分析 +通过“导出”功能生成盘点差异表格,有助于财务部门分析产生盈亏的原因(如漏单、损耗、损坏等)。 + +![数据导出确认](img/image-9.png) + +### 3.2 高频业务场景 +- **月度大盘**:每月账期结束前执行。 +- **动态抽盘**:针对高单价、高流动率物料的不定期核查。 + +![批量导入处理](img/image-8.png) diff --git a/erp/5.仓储管理/5.库存调拨.md b/erp/5.仓储管理/5.库存调拨.md new file mode 100644 index 0000000..b060f03 --- /dev/null +++ b/erp/5.仓储管理/5.库存调拨.md @@ -0,0 +1,49 @@ +# 仓库调拨与内部流动 + +::: info 调拨核心 +仓库调拨记录了物料在不同物理或逻辑仓库间的转移过程。支持多仓库调配,实现资源的合理分布。 +::: + +## 1. 仓库调拨概览 +- **入口**:`仓储管理` -> `库存调拨`。 +- **作用**:调剂库存(如从主仓调入生产仓,或从冷库调入包装车间),并自动平衡各仓余额。 + +![调拨管理列表](img/image-16.png) + +--- + +## 2. 核心操作流程 + +### 2.1 新增调拨单 (单据创建) +1. 点击“添加”按钮。 +2. 填写关键要素: + - **调出仓库**:发出方。 + - **调入仓库**:接收方(不能与发出方相同)。 + - **调拨类型**:调拨出入库。 + - **调拨凭证**:可上传 PDF/图片(如:内部移库单)。 +3. **明细录入**: + - 点击“新增产品”,选择参与转移的物料。 + - 填写具体的调遣数量。 + +![新增调拨单界面](img/image-17.png) + +### 2.2 调拨审核环节 +所有调拨单据在确认后必须经过**审核**,建议由双仓管理员之一或上级负责人操作。 +- **审核通过**:系统自动同步调减调出仓库存,并调增调入仓库存。 +- **审核不通过**:返还单据至草稿,需备注修正建议。 + +![调拨审核操作](img/image-18.png) + +--- + +## 3. 分析与导出 + +### 3.1 数据统计 +点击“导出”生成本期 **Excel** 调拨明细表。按日或按周导出,用于跟踪物料分布状态。 + +![调拨数据导出](img/image-20.png) + +### 3.2 批量同步 +- **历史记录导入**:如果需要追溯过往产生的纸质移库单记录,可使用“导入”功能批量同步。 + +![批量导入处理](img/image-19.png) \ No newline at end of file diff --git a/erp/5.仓储管理/6.库存报损.md b/erp/5.仓储管理/6.库存报损.md new file mode 100644 index 0000000..e4c3526 --- /dev/null +++ b/erp/5.仓储管理/6.库存报损.md @@ -0,0 +1,49 @@ +# 库存报损与坏账管理 + +::: danger 损耗管理 +库存报损用于记录库存的物理损耗、损坏、过期或不可再利的情况。所有报损均需严格审核。 +::: + +## 1. 库存报损概览 +- **入口**:`仓储管理` -> `库存报损`。 +- **作用**:调减无法销售或生产使用的库存,计入企业损耗损益。 + +![报损管理列表](img/image-21.png) + +--- + +## 2. 核心操作流程 + +### 2.1 新增报损单 (单据创建) +1. 点击“添加”按钮。 +2. 填写关键要素: + - **报损日期**:物料损毁或过期的清查日期。 + - **报损仓库**:出货的起点倉位。 + - **报损类型**:报损出库。 + - **单据凭证**:可上传损坏实物照片、质检报告等凭证。 +3. **明细录入**: + - 点击“新增产品”,选择报损物料。 + - 填写具体的报损数量。 + +![新增报损单界面](img/image-22.png) + +### 2.2 报损审核权限 +由于涉及资产净额的调减,所有报损单据必须经过主管负责人**审核**。 +- **审核通过**:正式调减该仓库物料,并产生报损流水以便财务核销。 +- **审核不通过**:返还单据至草稿。 + +![报损审批操作](img/image-23.png) + +--- + +## 3. 分析与导出 + +### 3.1 损耗报表导出 +点击“导出”生成本期 **Excel** 报损统计表。按周或按月导出,用于分析各仓损耗率。 + +![报损分析导出](img/image-12.png) + +### 3.2 批量同步 +- **历史报损导入**:如需同步在上线前的纸质报损记录,使用“导入”功能。 + +![批量入账处理](img/image-24.png) \ No newline at end of file diff --git a/erp/5.仓储管理/img/image-1.png b/erp/5.仓储管理/img/image-1.png new file mode 100644 index 0000000..fdac0eb Binary files /dev/null and b/erp/5.仓储管理/img/image-1.png differ diff --git a/erp/5.仓储管理/img/image-10.png b/erp/5.仓储管理/img/image-10.png new file mode 100644 index 0000000..bf57cd4 Binary files /dev/null and b/erp/5.仓储管理/img/image-10.png differ diff --git a/erp/5.仓储管理/img/image-11.png b/erp/5.仓储管理/img/image-11.png new file mode 100644 index 0000000..f8b2314 Binary files /dev/null and b/erp/5.仓储管理/img/image-11.png differ diff --git a/erp/5.仓储管理/img/image-12.png b/erp/5.仓储管理/img/image-12.png new file mode 100644 index 0000000..226d682 Binary files /dev/null and b/erp/5.仓储管理/img/image-12.png differ diff --git a/erp/5.仓储管理/img/image-13.png b/erp/5.仓储管理/img/image-13.png new file mode 100644 index 0000000..e578081 Binary files /dev/null and b/erp/5.仓储管理/img/image-13.png differ diff --git a/erp/5.仓储管理/img/image-14.png b/erp/5.仓储管理/img/image-14.png new file mode 100644 index 0000000..3d33496 Binary files /dev/null and b/erp/5.仓储管理/img/image-14.png differ diff --git a/erp/5.仓储管理/img/image-15.png b/erp/5.仓储管理/img/image-15.png new file mode 100644 index 0000000..cf02e9e Binary files /dev/null and b/erp/5.仓储管理/img/image-15.png differ diff --git a/erp/5.仓储管理/img/image-16.png b/erp/5.仓储管理/img/image-16.png new file mode 100644 index 0000000..e7f1802 Binary files /dev/null and b/erp/5.仓储管理/img/image-16.png differ diff --git a/erp/5.仓储管理/img/image-17.png b/erp/5.仓储管理/img/image-17.png new file mode 100644 index 0000000..0687ef3 Binary files /dev/null and b/erp/5.仓储管理/img/image-17.png differ diff --git a/erp/5.仓储管理/img/image-18.png b/erp/5.仓储管理/img/image-18.png new file mode 100644 index 0000000..1096e4a Binary files /dev/null and b/erp/5.仓储管理/img/image-18.png differ diff --git a/erp/5.仓储管理/img/image-19.png b/erp/5.仓储管理/img/image-19.png new file mode 100644 index 0000000..d781581 Binary files /dev/null and b/erp/5.仓储管理/img/image-19.png differ diff --git a/erp/5.仓储管理/img/image-2.png b/erp/5.仓储管理/img/image-2.png new file mode 100644 index 0000000..3751ed8 Binary files /dev/null and b/erp/5.仓储管理/img/image-2.png differ diff --git a/erp/5.仓储管理/img/image-20.png b/erp/5.仓储管理/img/image-20.png new file mode 100644 index 0000000..3996786 Binary files /dev/null and b/erp/5.仓储管理/img/image-20.png differ diff --git a/erp/5.仓储管理/img/image-21.png b/erp/5.仓储管理/img/image-21.png new file mode 100644 index 0000000..c79e0b6 Binary files /dev/null and b/erp/5.仓储管理/img/image-21.png differ diff --git a/erp/5.仓储管理/img/image-22.png b/erp/5.仓储管理/img/image-22.png new file mode 100644 index 0000000..5abe737 Binary files /dev/null and b/erp/5.仓储管理/img/image-22.png differ diff --git a/erp/5.仓储管理/img/image-23.png b/erp/5.仓储管理/img/image-23.png new file mode 100644 index 0000000..516ea92 Binary files /dev/null and b/erp/5.仓储管理/img/image-23.png differ diff --git a/erp/5.仓储管理/img/image-24.png b/erp/5.仓储管理/img/image-24.png new file mode 100644 index 0000000..330cc81 Binary files /dev/null and b/erp/5.仓储管理/img/image-24.png differ diff --git a/erp/5.仓储管理/img/image-3.png b/erp/5.仓储管理/img/image-3.png new file mode 100644 index 0000000..7b2afa1 Binary files /dev/null and b/erp/5.仓储管理/img/image-3.png differ diff --git a/erp/5.仓储管理/img/image-4.png b/erp/5.仓储管理/img/image-4.png new file mode 100644 index 0000000..ae27c62 Binary files /dev/null and b/erp/5.仓储管理/img/image-4.png differ diff --git a/erp/5.仓储管理/img/image-5.png b/erp/5.仓储管理/img/image-5.png new file mode 100644 index 0000000..4b344bd Binary files /dev/null and b/erp/5.仓储管理/img/image-5.png differ diff --git a/erp/5.仓储管理/img/image-6.png b/erp/5.仓储管理/img/image-6.png new file mode 100644 index 0000000..a8bfc25 Binary files /dev/null and b/erp/5.仓储管理/img/image-6.png differ diff --git a/erp/5.仓储管理/img/image-7.png b/erp/5.仓储管理/img/image-7.png new file mode 100644 index 0000000..8758d04 Binary files /dev/null and b/erp/5.仓储管理/img/image-7.png differ diff --git a/erp/5.仓储管理/img/image-8.png b/erp/5.仓储管理/img/image-8.png new file mode 100644 index 0000000..a33806b Binary files /dev/null and b/erp/5.仓储管理/img/image-8.png differ diff --git a/erp/5.仓储管理/img/image-9.png b/erp/5.仓储管理/img/image-9.png new file mode 100644 index 0000000..e7b9ef7 Binary files /dev/null and b/erp/5.仓储管理/img/image-9.png differ diff --git a/erp/5.仓储管理/img/image.png b/erp/5.仓储管理/img/image.png new file mode 100644 index 0000000..e2d1e0d Binary files /dev/null and b/erp/5.仓储管理/img/image.png differ diff --git a/erp/6.生产管理/1.生产计划.md b/erp/6.生产管理/1.生产计划.md new file mode 100644 index 0000000..b4c046d --- /dev/null +++ b/erp/6.生产管理/1.生产计划.md @@ -0,0 +1,42 @@ +# 生产计划制定与执行 + +::: info 生产核心 +生产管理模块根据市场需求与物料库存,实现从计划下达到完工入库的全过程闭环。 +::: + +## 1. 生产计划概览 +- **入口**:`生产管理` -> `生产计划`。 +- **作用**:制定合理的生产任务,自动关联 BOM 计算物料需求,并下达领料指令。 + +![生产计划列表](img/image.png) + +--- + +## 2. 核心操作流程 + +### 2.1 新增生产计划 +1. 点击“添加计划”按钮。 +2. 填写关键要素: + - **生产主题**:如“第 2025Q3 批次番茄酱生产”。 + - **计划时间**:设定起止日期。 + - **双仓配置**:指定“领料仓库”(物料出处)与“成品入库仓库”(产出存放处)。 +3. **物料自动计算**: + - 选择成品后,系统将根据预设的 **BOM (物料清单)** 自动带出所需的原材料。 + - 输入“计划生产数量”,系统自动锁定并计算物料预领用量。 + +![新增计划界面](img/image-1.png) + +### 2.2 生产进度管控 (延迟与完工) +- **延迟处理**:若生产受阻,点击“延迟”并输入原因及预计恢复时间。 +- **作废处理**:若任务取消,点击“作废”。系统将根据实际消耗值进行结算,并处理已领用物料的退库。 + +![进度管控](img/image-4.png) + +--- + +## 3. 完工结算与报表 +生产任务达成后,管理员需手动点击“完工”。 +- **产出设置**:录入实际合格品数量及次品报损数量。 +- **物料退库**:若有剩余原材料,需准确输入“退库数量”,系统将自动调回领料仓。 + +![完工界面](img/image-8.png) diff --git a/erp/6.生产管理/2.生产入库.md b/erp/6.生产管理/2.生产入库.md new file mode 100644 index 0000000..b55ca06 --- /dev/null +++ b/erp/6.生产管理/2.生产入库.md @@ -0,0 +1,37 @@ +# 生产完成品入库流程 + +::: info 入库原则 +生产入库是生产计划的收尾环节。它通过自动继承生产计划的设置,确保每一个产出批次均能与相应的生产单据实现对位核算。 +::: + +## 1. 生产入库概览 +- **入口**:`生产管理` -> `生产入库`。 +- **作用**:将已完成的成品、半成品从车间转移进入指定存放仓库。 + +![生产入库列表主界面](img/image-10.png) + +--- + +## 2. 核心操作流程 + +### 2.1 添加入库单 (单据创建) +1. 点击“添加入库”按钮。 +2. 确认核心要素: + - **入库日期**:系统默认为当前日期。 + - **入库仓库**:自动继承生产计划中预设的成品库。 + - **单据凭证**:可上传 PDF/图片(如:生产合格证)。 +3. **明细录入**: + - 输入本次成品/半成品的**实际入库数量**。 + - 填写返厂或退换至领料仓的**退库数量**。 + +![新增入库单界面](img/image-11.png) + +### 2.2 确认入库 +点击“确认入库”后,系统将即时调增对应成品库的余额记录。建议与纸质生产流转卡核对后再行确认。 + +--- + +## 3. 数据导出与备份 +点击“导出”按钮,生成本期 **Excel** 生产入库详情清单。按周、按月导出,用于核对生产报表及库存差异。 + +![生产入库导出](img/image-12.png) diff --git a/erp/6.生产管理/img/image-1.png b/erp/6.生产管理/img/image-1.png new file mode 100644 index 0000000..ca62e66 Binary files /dev/null and b/erp/6.生产管理/img/image-1.png differ diff --git a/erp/6.生产管理/img/image-10.png b/erp/6.生产管理/img/image-10.png new file mode 100644 index 0000000..2ac9c1b Binary files /dev/null and b/erp/6.生产管理/img/image-10.png differ diff --git a/erp/6.生产管理/img/image-11.png b/erp/6.生产管理/img/image-11.png new file mode 100644 index 0000000..77be967 Binary files /dev/null and b/erp/6.生产管理/img/image-11.png differ diff --git a/erp/6.生产管理/img/image-12.png b/erp/6.生产管理/img/image-12.png new file mode 100644 index 0000000..947e57a Binary files /dev/null and b/erp/6.生产管理/img/image-12.png differ diff --git a/erp/6.生产管理/img/image-2.png b/erp/6.生产管理/img/image-2.png new file mode 100644 index 0000000..763d25e Binary files /dev/null and b/erp/6.生产管理/img/image-2.png differ diff --git a/erp/6.生产管理/img/image-3.png b/erp/6.生产管理/img/image-3.png new file mode 100644 index 0000000..36a48ae Binary files /dev/null and b/erp/6.生产管理/img/image-3.png differ diff --git a/erp/6.生产管理/img/image-4.png b/erp/6.生产管理/img/image-4.png new file mode 100644 index 0000000..5582e7e Binary files /dev/null and b/erp/6.生产管理/img/image-4.png differ diff --git a/erp/6.生产管理/img/image-5.png b/erp/6.生产管理/img/image-5.png new file mode 100644 index 0000000..934c75a Binary files /dev/null and b/erp/6.生产管理/img/image-5.png differ diff --git a/erp/6.生产管理/img/image-6.png b/erp/6.生产管理/img/image-6.png new file mode 100644 index 0000000..33350fb Binary files /dev/null and b/erp/6.生产管理/img/image-6.png differ diff --git a/erp/6.生产管理/img/image-7.png b/erp/6.生产管理/img/image-7.png new file mode 100644 index 0000000..9a51bc1 Binary files /dev/null and b/erp/6.生产管理/img/image-7.png differ diff --git a/erp/6.生产管理/img/image-8.png b/erp/6.生产管理/img/image-8.png new file mode 100644 index 0000000..78b5c79 Binary files /dev/null and b/erp/6.生产管理/img/image-8.png differ diff --git a/erp/6.生产管理/img/image-9.png b/erp/6.生产管理/img/image-9.png new file mode 100644 index 0000000..d85343f Binary files /dev/null and b/erp/6.生产管理/img/image-9.png differ diff --git a/erp/6.生产管理/img/image.png b/erp/6.生产管理/img/image.png new file mode 100644 index 0000000..48b2e57 Binary files /dev/null and b/erp/6.生产管理/img/image.png differ diff --git a/erp/7.基础设置/1.原材料分类.md b/erp/7.基础设置/1.原材料分类.md new file mode 100644 index 0000000..9e16451 --- /dev/null +++ b/erp/7.基础设置/1.原材料分类.md @@ -0,0 +1,28 @@ +# 原材料分类与档案维护 + +::: tip 分类逻辑 +清晰的分类是物料主数据管理的第一步。通过对原材料进行细分(如:生鲜类、包材类、调料类),可以显著提升物料查询与报表统计的效率。 +::: + +## 1. 原材料分类概览 +- **入口**:`基础设置` -> `原材料分类`。 +- **作用**:定义物料所属类别,支持多级扩展。 + +![分类管理主界面](img/image-5.png) + +--- + +## 2. 核心操作流程 + +### 2.1 添加分类 +1. 点击“添加”按钮。 +2. 填写**分类名称**(系统将自动分配唯一的分类编码)。 +3. **状态控制**:默认为“启用”。 + +![新增分类](img/image-6.png) + +### 2.2 编辑与维护 +- **修改**:点击“修改”按钮,可以重命名分类名称或更新分类状态。 +- **删除**:仅支持删除未被任何物料引用的空分类。若分类下已有物料档案,请先移除物料后再行删除。 + +![修改操作](img/image-7.png) diff --git a/erp/7.基础设置/2.物料清单明细.md b/erp/7.基础设置/2.物料清单明细.md new file mode 100644 index 0000000..6df991b --- /dev/null +++ b/erp/7.基础设置/2.物料清单明细.md @@ -0,0 +1,31 @@ +# BOM 物料清单明细速查 + +::: tip BOM 核心 +物料清单明细(Bill of Materials, BOM)是生产管理的“配方”。它详细列出了生产某一产品(成品或半成品)所需的全部原辅料。 +::: + +## 1. 物料清单明细概览 +- **入口**:`基础设置` -> `物料清单明细`。 +- **作用**:直观查看并维护所有生产配方的底层详情,是采购需求计算与成本核算的原始数据来源。 + +![BOM 明细列表](img/image-8.png) + +--- + +## 2. 核心操作流程 + +### 2.1 批量维护与新增 +1. 点击“添加”按钮。 +2. 填写单据关联: + - **明细类型**:指定是属于成品 BOM 还是半成品 BOM。 + - **原材料 ID**:系统内已备案的物料主键。 + - **数量与单位**:指定消耗定额。 + - **逻辑仓库**:设定物料领用的默认仓位。 + +![新增 BOM 明细](img/image-9.png) + +--- + +## 3. 业务应用场景 +- **生产领料依据**:生产计划下单时,系统自动根据此处的明细计算预领用量。 +- **成本核算模型**:财务部门通过此明细结合原材料实时成本,计算产出成品的标准生产成本。 diff --git a/erp/7.基础设置/3.计量单位.md b/erp/7.基础设置/3.计量单位.md new file mode 100644 index 0000000..3f599e2 --- /dev/null +++ b/erp/7.基础设置/3.计量单位.md @@ -0,0 +1,40 @@ +# 计量单位与换算体系 + +::: info 计量核心 +统一的计量单位是库存准确性的前提。系统支持“基准单位”与“自定义换算单位”,确保采购、生产与核算之间的单位自动转换。 +::: + +## 1. 计量单位概览 +- **入口**:`基础设置` -> `计量单位`。 +- **作用**:定义系统中所有实物资产的量化标准,避免因单位不一导致的核算偏差。 + +![计量单位列表](img/image-1.png) + +--- + +## 2. 核心操作流程 + +### 2.1 新增基准单位 (公用单位) +基准单位是某一类物料的最小核算单位(如:克、个、米)。 +1. 点击“添加”按钮。 +2. 填写名称(如:千克、升)。 +3. **是否基准**:选择“是”。通常建议在初始化系统时先补全常见的国际度量单位。 + +![新增基准单位](img/image.png) + +### 2.2 新增自定义换算单位 (包装单位) +针对特定物料的包装规格(如:1 盒 = 6 枚、1 箱 = 12 瓶)。 +1. **是否基准**:选择“否”。 +2. **基准单位**:选择该物料的最小单位(如:个)。 +3. **换算系数**:填写倍数关系。例如“1 盒”对应“6 个”,则系数填 6。 +4. **关联物料**:指定该包装单位仅适用于哪些特定物料。 + +![换算单位配置](img/image-2.png) + +--- + +## 3. 编辑与维护 +- **修改**:支持对单位名称、符号及换算关系进行二次调整。 +- **删除**:针对不再使用的单位可执行删除。*注意:若该单位已被单据引用,建议先将其设为“停用”而非直接删除。* + +![修改界面](img/image-3.png) diff --git a/erp/7.基础设置/img/image-1.png b/erp/7.基础设置/img/image-1.png new file mode 100644 index 0000000..ce838f2 Binary files /dev/null and b/erp/7.基础设置/img/image-1.png differ diff --git a/erp/7.基础设置/img/image-2.png b/erp/7.基础设置/img/image-2.png new file mode 100644 index 0000000..12966b7 Binary files /dev/null and b/erp/7.基础设置/img/image-2.png differ diff --git a/erp/7.基础设置/img/image-3.png b/erp/7.基础设置/img/image-3.png new file mode 100644 index 0000000..7c8e844 Binary files /dev/null and b/erp/7.基础设置/img/image-3.png differ diff --git a/erp/7.基础设置/img/image-4.png b/erp/7.基础设置/img/image-4.png new file mode 100644 index 0000000..2a90118 Binary files /dev/null and b/erp/7.基础设置/img/image-4.png differ diff --git a/erp/7.基础设置/img/image-5.png b/erp/7.基础设置/img/image-5.png new file mode 100644 index 0000000..f42f501 Binary files /dev/null and b/erp/7.基础设置/img/image-5.png differ diff --git a/erp/7.基础设置/img/image-6.png b/erp/7.基础设置/img/image-6.png new file mode 100644 index 0000000..1321add Binary files /dev/null and b/erp/7.基础设置/img/image-6.png differ diff --git a/erp/7.基础设置/img/image-7.png b/erp/7.基础设置/img/image-7.png new file mode 100644 index 0000000..96f8976 Binary files /dev/null and b/erp/7.基础设置/img/image-7.png differ diff --git a/erp/7.基础设置/img/image-8.png b/erp/7.基础设置/img/image-8.png new file mode 100644 index 0000000..43851fc Binary files /dev/null and b/erp/7.基础设置/img/image-8.png differ diff --git a/erp/7.基础设置/img/image-9.png b/erp/7.基础设置/img/image-9.png new file mode 100644 index 0000000..1765717 Binary files /dev/null and b/erp/7.基础设置/img/image-9.png differ diff --git a/erp/7.基础设置/img/image.png b/erp/7.基础设置/img/image.png new file mode 100644 index 0000000..8c566e6 Binary files /dev/null and b/erp/7.基础设置/img/image.png differ diff --git a/erp/8.权限管理/1.用户管理.md b/erp/8.权限管理/1.用户管理.md new file mode 100644 index 0000000..7b1a887 --- /dev/null +++ b/erp/8.权限管理/1.用户管理.md @@ -0,0 +1,34 @@ +# ERP 用户账号管理 + +::: warning 账号安全 +所有新创建的账号默认密码均为 **123456**。请在首次登录后立即引导员工前往“个人中心”修改密码,以确保数据安全。 +::: + +## 1. 用户管理概览 +- **入口**:`权限管理` -> `用户管理`。 +- **作用**:维护系统操作员档案,是 ERP 系统安全体系的基础。 + +![用户列表主界面](img/image.png) + +--- + +## 2. 核心操作流程 + +### 2.1 新增系统用户 +1. 点击“添加”按钮。 +2. 填写必要档案: + - **登录账号**:员工的唯一登录凭证。 + - **真实姓名**:便于后续单据审核的行为追溯。 + - **企微关联**:推荐关联企业微信成员,实现组织架构的自动对齐。 +3. **状态管理**:新账号默认为“启用”。 + +![新增用户界面](img/image-1.png) + +### 2.2 离职与权限回收 +- **禁用账号**:当员工转岗或离职时,应第一时间将“账号状态”变更为**“禁用”**。 +- **物理删除**:若账号从未产生业务流水,可直接点击“删除”移除档案。 + +--- + +## 3. 注意事项 +**关键步骤:** 仅创建账号无法正常使用 ERP。账户成功创建后,必须执行 **“门店绑定”** 流程,完成权限的闭环授予。 diff --git a/erp/8.权限管理/2.角色管理.md b/erp/8.权限管理/2.角色管理.md new file mode 100644 index 0000000..5d42e33 --- /dev/null +++ b/erp/8.权限管理/2.角色管理.md @@ -0,0 +1,39 @@ +# 基于角色的权限控制 (RBAC) + +::: info 权限模型 +系统采用标准的 RBAC 模型。您可以通过定义“角色”(如:仓管、财务、计划员)并分配菜单权限,最后将用户关联至角色,实现权限的批量化、规范化管理。 +::: + +## 1. 角色管理概览 +- **入口**:`权限管理` -> `角色管理`。 +- **作用**:定义岗位职能,控制不同层级员工对功能模块(菜单/按钮)的访问权限。 + +![角色列表主界面](img/image-2.png) + +--- + +## 2. 核心操作流程 + +### 2.1 创建业务角色 +1. 点击“添加”按钮。 +2. 填写角色属性: + - **名称**:如“生产主管”、“普通领料员”。 + - **菜单权限**:勾选该角色允许访问的所有功能点。 + - **数据范围**:设定该角色可查看的数据边界(建议设为“全部”或按组织机构划分)。 + +![新增角色界面](img/image-4.png) + +### 2.2 用户与角色分配 +1. 选中目标角色,点击“分配用户”。 +2. **批量关联**:在用户池中勾选目标员工,移入右侧已选栏。 +3. **确认生效**:提交后,对应用户即刻获得该角色的所有操作权限。 + +![分配用户界面](img/image-7.png) + +--- + +## 3. 维护与变更 +- **权限更新**:业务调整时,直接修改角色的“菜单权限”,所有关联用户将同步更新。 +- **角色禁用**:设为“禁用”状态后,该角色下的所有关联用户将失去对应权限,直至恢复启用。 + +![修改操作](img/image-5.png) \ No newline at end of file diff --git a/erp/8.权限管理/3.角色门店.md b/erp/8.权限管理/3.角色门店.md new file mode 100644 index 0000000..752149a --- /dev/null +++ b/erp/8.权限管理/3.角色门店.md @@ -0,0 +1,29 @@ +# 员工门店绑定 (权限关联) + +::: tip 权限细分 +在多门店运营场景下,同一个用户在不同门店可能拥有不同的职责(如:在 A 店是店长,在 B 店仅是库管)。“角色门店”功能实现了这种跨门店的灵活赋权。 +::: + +## 1. 角色门店概览 +- **入口**:`权限管理` -> `角色门店`。 +- **作用**:建立 **[用户] - [角色] - [门店]** 的三元组关联。只有完成此步绑定,员工登录后才能看到对应门店的业务数据并进行操作。 + +![角色门店管理界面](img/image-9.png) + +--- + +## 2. 核心操作流程 + +### 2.1 绑定用户至门店 +1. 点击“添加”按钮。 +2. 选择需要授权的**用户**。 +3. 选择该用户在目标门店中担任的**角色**。 +4. 确认提交。 + +![门店绑定弹出窗](img/image-10.png) + +--- + +## 3. 常见问题 +- **无法登录/无菜单**:如果用户反馈登录后页面空白,请首先检查“角色门店”中是否已正确为其关联了目标门店及具备相应菜单权限的角色。 +- **权限回收**:当员工调岗时,请在列表中找到对应条目并执行“删除”,即可解除其在该门店的所有权限。 diff --git a/erp/8.权限管理/4.门店设置.md b/erp/8.权限管理/4.门店设置.md new file mode 100644 index 0000000..a5b62f4 --- /dev/null +++ b/erp/8.权限管理/4.门店设置.md @@ -0,0 +1,36 @@ +# 门店档案与运营参数配置 + +::: info 管理目标 +门店设置不仅维护了营业地址等基础信息,更决定了库存限制逻辑、仓库启用开关等核心运营参数。 +::: + +## 1. 门店管理概览 +- **入口**:`权限管理` -> `门店设置`。 +- **作用**:标准化管理所有直营与非直营网点。 + +![门店设置主界面](img/image-3.png) + +--- + +## 2. 核心操作流程 + +### 2.1 新增/编辑门店信息 +1. 点击“添加”按钮(或选中目标门店点击“编辑”)。 +2. **基础视觉**:上传店铺 Logo、门面图。 +3. **运营参数**: + - **收单类型**:统一选择“快速服务”。 + - **仓库管理**:务必选为“启用”,否则 ERP 仓储功能无法引用该店。 + - **库存限制**:建议选为“不启用”以防库存数据出现负值偏差。 + - **注册手机号**:输入门店第一负责人。 + +![新增门店界面](img/image-8.png) + +### 2.2 复制与删除 +- **复制门店**:针对连锁运营,可一键复制模版门店,仅修改名称与地址即可快速上线。 +- **删除门店**:涉及历史业务关联,请务必谨慎操作。一旦删除,对应的历史单据将无法回溯到该门店档案。 + +--- + +## 3. 重要配置说明 +- **启用门店**:未启用状态下,所有员工均无法在任何终端访问或下单。 +- **是否显示**:控制该门店是否在小程序前端地图或列表中展示。 diff --git a/erp/8.权限管理/img/image-1.png b/erp/8.权限管理/img/image-1.png new file mode 100644 index 0000000..0a73be3 Binary files /dev/null and b/erp/8.权限管理/img/image-1.png differ diff --git a/erp/8.权限管理/img/image-10.png b/erp/8.权限管理/img/image-10.png new file mode 100644 index 0000000..5dd2a64 Binary files /dev/null and b/erp/8.权限管理/img/image-10.png differ diff --git a/erp/8.权限管理/img/image-2.png b/erp/8.权限管理/img/image-2.png new file mode 100644 index 0000000..8d6db67 Binary files /dev/null and b/erp/8.权限管理/img/image-2.png differ diff --git a/erp/8.权限管理/img/image-3.png b/erp/8.权限管理/img/image-3.png new file mode 100644 index 0000000..15b1572 Binary files /dev/null and b/erp/8.权限管理/img/image-3.png differ diff --git a/erp/8.权限管理/img/image-4.png b/erp/8.权限管理/img/image-4.png new file mode 100644 index 0000000..6161051 Binary files /dev/null and b/erp/8.权限管理/img/image-4.png differ diff --git a/erp/8.权限管理/img/image-5.png b/erp/8.权限管理/img/image-5.png new file mode 100644 index 0000000..9b77442 Binary files /dev/null and b/erp/8.权限管理/img/image-5.png differ diff --git a/erp/8.权限管理/img/image-6.png b/erp/8.权限管理/img/image-6.png new file mode 100644 index 0000000..7523425 Binary files /dev/null and b/erp/8.权限管理/img/image-6.png differ diff --git a/erp/8.权限管理/img/image-7.png b/erp/8.权限管理/img/image-7.png new file mode 100644 index 0000000..c90e0cc Binary files /dev/null and b/erp/8.权限管理/img/image-7.png differ diff --git a/erp/8.权限管理/img/image-8.png b/erp/8.权限管理/img/image-8.png new file mode 100644 index 0000000..80ce62e Binary files /dev/null and b/erp/8.权限管理/img/image-8.png differ diff --git a/erp/8.权限管理/img/image-9.png b/erp/8.权限管理/img/image-9.png new file mode 100644 index 0000000..a03d987 Binary files /dev/null and b/erp/8.权限管理/img/image-9.png differ diff --git a/erp/8.权限管理/img/image.png b/erp/8.权限管理/img/image.png new file mode 100644 index 0000000..8b43b3c Binary files /dev/null and b/erp/8.权限管理/img/image.png differ diff --git a/erp/9.统计报表/1.入库统计.md b/erp/9.统计报表/1.入库统计.md new file mode 100644 index 0000000..269879c --- /dev/null +++ b/erp/9.统计报表/1.入库统计.md @@ -0,0 +1,22 @@ +# 入库业务汇总与财务对账 + +::: info 报表目标 +入库统计是对采购交付、生产回库等业务结果的量化体现。支持按时间、仓库、产品分类等多维度进行分析,准确掌握采购支出与资产流入情况。 +::: + +## 1. 报表功能概览 +- **入口**:`统计报表` -> `入库统计`。 +- **作用**:实时统计所有已审核入库单的物料明细、数量及其对应价值。 + +![入库报表界面](img/image.png) + +--- + +## 2. 统计维度说明 +- **物料流向分析**:详实记录每一类原材料、成品的累计入库总量及占比。 +- **供应商协同看板**:按供应商统计供货频次与质量,为采购决策提供有力支撑。 +- **入库类型分布**:区分采购、退货、结转等不同入库动作的比例。 + +::: tip 导出与审计 +管理员可点击“导出”按钮,将入库统计汇总为 **Excel** 报表,用于月底财务结算与采购对账。 +::: \ No newline at end of file diff --git a/erp/9.统计报表/2.出库统计.md b/erp/9.统计报表/2.出库统计.md new file mode 100644 index 0000000..4b83c15 --- /dev/null +++ b/erp/9.统计报表/2.出库统计.md @@ -0,0 +1,22 @@ +# 出库业务汇总与耗用分析 + +::: info 报表目标 +出库统计集中反映了库存的去向。无论是由于销售、生产领用还是损耗,本表均能清晰呈现各物料在周期内的消耗趋势与库位变动。 +::: + +## 1. 报表功能概览 +- **入口**:`统计报表` -> `出库统计`。 +- **作用**:实时统计所有已审核出库单的明细、数量及其对应账面价值。 + +![出库报表界面](img/image-2.png) + +--- + +## 2. 核心统计维度 +- **出库类型概览**:分门别类展示销售出库、领料出库及报损出库的占比。 +- **物料消耗排行榜**:快速识别高周转物料,为库存补货提供依据。 +- **人员与时间维度对比**:按月度或季度周期,分析各生产车间或责任人的物料领用效率。 + +::: note 数据安全 +所有统计结果均支持 **Excel** 导出,建议在财务决算时下载并进行归档,以备审计。 +::: diff --git a/erp/9.统计报表/3.库存统计.md b/erp/9.统计报表/3.库存统计.md new file mode 100644 index 0000000..f8f865f --- /dev/null +++ b/erp/9.统计报表/3.库存统计.md @@ -0,0 +1,22 @@ +# 库存余额与实物快照 + +::: info 报表目标 +库存统计集成了账面与当前实物的实时快照。通过对全仓各物料、成品的结余统计,协助管理层进行补货决策与资金规划。 +::: + +## 1. 报表功能概览 +- **入口**:`统计报表` -> `库存统计`。 +- **作用**:实时统计全公司各实物仓、逻辑仓(如报损仓、车间仓)中全部物料的现有量及对应的总资产价值。 + +![库存现状汇总](img/image-1.png) + +--- + +## 2. 核心统计维度 +- **物料存量榜**:分门别类显示原材料、半成品、成品。快速锁定库存告急或积压的风险项。 +- **仓位分布透视**:点击具体物料,可查看其在各个启用仓库中的分布明细。 +- **多角度核算**:按分类、账期、存放区域进行透视,提升库存管理颗粒度。 + +::: tip 决策支持 +建议每周至少查阅一次库存统计,并将导出的 **Excel** 表格与当前生产计划进行交叉比对,防止停工待料。 +::: diff --git a/erp/9.统计报表/4.报损统计.md b/erp/9.统计报表/4.报损统计.md new file mode 100644 index 0000000..cbfdb59 --- /dev/null +++ b/erp/9.统计报表/4.报损统计.md @@ -0,0 +1,22 @@ +# 库存损耗分析与报损看板 + +::: danger 损耗管理 +报损统计旨在透视损耗原因,帮助管理层识别运营中的资产风险。通过定期的报损核算,改进质量体系并优化入库标准。 +::: + +## 1. 报表功能概览 +- **入口**:`统计报表` -> `报损统计`。 +- **作用**:汇总所有已审核的报损出库单,实时分析损耗量与损耗价值。 + +![报损统计界面](img/image-4.png) + +--- + +## 2. 统计维度分析 +- **损耗成因汇总**:系统化识别损坏、过期、质量不合格等报损事由。 +- **责任主体追踪**:可按仓库、负责人或产品分类统计报损比例。 +- **资产损失评估**:分月度汇总报损产生的现金价值损失。 + +::: note 降本增效 +所有统计数据支持 **Excel** 导出。通过分析报损的高发物料与仓库点位,可针对性开展质量改进活动。 +::: diff --git a/erp/9.统计报表/5.盘点统计.md b/erp/9.统计报表/5.盘点统计.md new file mode 100644 index 0000000..fe13360 --- /dev/null +++ b/erp/9.统计报表/5.盘点统计.md @@ -0,0 +1,22 @@ +# 库存盘点结果与盈亏汇总 + +::: info 盘点核心 +盘点统计反映了账面数与实物数之间的差异。盈亏数据的透明化是企业财务健康的基础。 +::: + +## 1. 报表功能概览 +- **入口**:`统计报表` -> `盘点统计`。 +- **作用**:汇总所有盘点单中的盈亏明细,清晰呈现账实差异的数量与金额。 + +![盘点统计界面](img/image-3.png) + +--- + +## 2. 核心统计维度 +- **盘盈盘亏详情**:自动区分物料的库存增加(盈)与减少(亏)。 +- **盈亏原因看板**:汇总每一笔调整背后的业务备注。 +- **仓库资产校正**:按会计账期统计盘点调账产生的资产总变动额。 + +::: tip 审计支持 +管理员可点击“导出”按钮,将本年度或本账期的所有盘点结果汇总为 **Excel**,作为账实相符的终极凭证供财务部门使用。 +::: diff --git a/erp/9.统计报表/6.调拨统计.md b/erp/9.统计报表/6.调拨统计.md new file mode 100644 index 0000000..1bd0bb5 --- /dev/null +++ b/erp/9.统计报表/6.调拨统计.md @@ -0,0 +1,22 @@ +# 内部流动与调拨记录分析 + +::: info 调拨中心 +调拨统计展示了资源在跨仓库(如原材料库与车间库)间的配置动态。通过优化调拨路径,可以提升库存利用率。 +::: + +## 1. 报表功能概览 +- **入口**:`统计报表` -> `调拨统计`。 +- **作用**:实时统计所有已审核调拨单的物料明细、数量与调拨金额。 + +![调拨统计列表](img/image-5.png) + +--- + +## 2. 核心统计维度 +- **双向流向分析**:详实记录每一类原材料从调出仓到调入仓的流向细节。 +- **高频库位对比**:分析哪些仓库间的流动最频,有助于仓位规划。 +- **库存资源利用率**:按调拨类型(如领料、返仓)统计资源利用动向。 + +::: tip 数据对账 +所有统计结果均支持 **Excel** 导出,建议在仓库间实物对账时作为基准数据使用。 +::: diff --git a/erp/9.统计报表/img/image-1.png b/erp/9.统计报表/img/image-1.png new file mode 100644 index 0000000..bac3523 Binary files /dev/null and b/erp/9.统计报表/img/image-1.png differ diff --git a/erp/9.统计报表/img/image-2.png b/erp/9.统计报表/img/image-2.png new file mode 100644 index 0000000..6098e00 Binary files /dev/null and b/erp/9.统计报表/img/image-2.png differ diff --git a/erp/9.统计报表/img/image-3.png b/erp/9.统计报表/img/image-3.png new file mode 100644 index 0000000..29e42b4 Binary files /dev/null and b/erp/9.统计报表/img/image-3.png differ diff --git a/erp/9.统计报表/img/image-4.png b/erp/9.统计报表/img/image-4.png new file mode 100644 index 0000000..fb51dd1 Binary files /dev/null and b/erp/9.统计报表/img/image-4.png differ diff --git a/erp/9.统计报表/img/image-5.png b/erp/9.统计报表/img/image-5.png new file mode 100644 index 0000000..7689ca7 Binary files /dev/null and b/erp/9.统计报表/img/image-5.png differ diff --git a/erp/9.统计报表/img/image.png b/erp/9.统计报表/img/image.png new file mode 100644 index 0000000..d0c9988 Binary files /dev/null and b/erp/9.统计报表/img/image.png differ diff --git a/erp/img/image-1.png b/erp/img/image-1.png new file mode 100644 index 0000000..a7f6bf7 Binary files /dev/null and b/erp/img/image-1.png differ diff --git a/erp/img/image-10.png b/erp/img/image-10.png new file mode 100644 index 0000000..ac0ba33 Binary files /dev/null and b/erp/img/image-10.png differ diff --git a/erp/img/image-11.png b/erp/img/image-11.png new file mode 100644 index 0000000..01c1ca2 Binary files /dev/null and b/erp/img/image-11.png differ diff --git a/erp/img/image-12.png b/erp/img/image-12.png new file mode 100644 index 0000000..717fb8e Binary files /dev/null and b/erp/img/image-12.png differ diff --git a/erp/img/image-13.png b/erp/img/image-13.png new file mode 100644 index 0000000..4b9b0b9 Binary files /dev/null and b/erp/img/image-13.png differ diff --git a/erp/img/image-14.png b/erp/img/image-14.png new file mode 100644 index 0000000..aa9ae97 Binary files /dev/null and b/erp/img/image-14.png differ diff --git a/erp/img/image-15.png b/erp/img/image-15.png new file mode 100644 index 0000000..a9bec97 Binary files /dev/null and b/erp/img/image-15.png differ diff --git a/erp/img/image-16.png b/erp/img/image-16.png new file mode 100644 index 0000000..3064a6c Binary files /dev/null and b/erp/img/image-16.png differ diff --git a/erp/img/image-17.png b/erp/img/image-17.png new file mode 100644 index 0000000..aae7b62 Binary files /dev/null and b/erp/img/image-17.png differ diff --git a/erp/img/image-2.png b/erp/img/image-2.png new file mode 100644 index 0000000..6b4fe42 Binary files /dev/null and b/erp/img/image-2.png differ diff --git a/erp/img/image-3.png b/erp/img/image-3.png new file mode 100644 index 0000000..ce931d3 Binary files /dev/null and b/erp/img/image-3.png differ diff --git a/erp/img/image-4.png b/erp/img/image-4.png new file mode 100644 index 0000000..a16976a Binary files /dev/null and b/erp/img/image-4.png differ diff --git a/erp/img/image-5.png b/erp/img/image-5.png new file mode 100644 index 0000000..431bcf1 Binary files /dev/null and b/erp/img/image-5.png differ diff --git a/erp/img/image-6.png b/erp/img/image-6.png new file mode 100644 index 0000000..1c7acda Binary files /dev/null and b/erp/img/image-6.png differ diff --git a/erp/img/image-7.png b/erp/img/image-7.png new file mode 100644 index 0000000..0f67143 Binary files /dev/null and b/erp/img/image-7.png differ diff --git a/erp/img/image-8.png b/erp/img/image-8.png new file mode 100644 index 0000000..891205e Binary files /dev/null and b/erp/img/image-8.png differ diff --git a/erp/img/image-9.png b/erp/img/image-9.png new file mode 100644 index 0000000..43c3cc7 Binary files /dev/null and b/erp/img/image-9.png differ diff --git a/erp/img/image.png b/erp/img/image.png new file mode 100644 index 0000000..06ae755 Binary files /dev/null and b/erp/img/image.png differ diff --git a/hxzx/1.登录后台.md b/hxzx/1.登录后台.md new file mode 100644 index 0000000..ed90f1a --- /dev/null +++ b/hxzx/1.登录后台.md @@ -0,0 +1,36 @@ +# 登录管理后台 + +::: tip 帮助与支持 +如果您在使用过程中遇到任何问题或需要帮助,请直接通过 **企业微信** 联系技术团队进行协助。 +::: + +## 1. 文档概述 +本文档旨在规范 **回乡甄选** 电商后台的运营操作标准。通过明确各功能模块的使用方法、操作流程及注意事项,确保运营工作的高效性与合规性。 + +**适用人员:** +- 商品管理、订单处理人员 +- 营销推广、数据分析岗位 +- 系统运维及管理人员 + +--- + +## 2. 登录流程 + +### 第一步:访问地址 +请使用现代浏览器(推荐使用 Google Chrome)打开以下网址: +> [立即前往回乡甄选后台](http://admin.zx.lotus-wallet.com/dashboard) + +### 第二步:身份验证 +在登录页面输入您的专属账号与密码。 + +### 第三步:进入系统 +登录成功后,系统将自动跳转至**仪表盘**页面。您可以在此直观地查看实时运营数据。 + +![登录后仪表盘](image/分销体系/imghoutai/企业微信截图_20250711141504.png) + +--- + +## 3. 注意事项 +1. **浏览器兼容性**:为了获得最佳体验,请确保您的浏览器处于最新版本。 +2. **账号安全**:请勿将您的登录账号泄露给他人。 +3. **操作规范**:请严格按照后续文档中的各模块操作规范进行操作,确保数据准确性。 \ No newline at end of file diff --git a/hxzx/10.自提管理.md b/hxzx/10.自提管理.md new file mode 100644 index 0000000..e257103 --- /dev/null +++ b/hxzx/10.自提管理.md @@ -0,0 +1,51 @@ +# 自提点管理与订单核销 + +::: tip 业务背景 +自提功能是打通 O2O 闭环的关键。有效的门店设置与权限分配,能确保货品交付的安全与高效。 +::: + +## 1. 自提门店设置 + +配置物理提货点,让用户在下单时能精准选择。 + +- **操作路径**:`自提管理` -> `核销地址` -> `新增门店`。 +- **配置要点**: + - **门店详情**:包括店名、简介、咨询手机号及详细地址。 + - **核销时效**:限定用户下单后可以提货的时间窗口。 + - **营业时间**:务必准确填写,展示在小程序前端以引导用户。 + +![自提门店配置界面](image/分销体系/imghoutai/微信截图_20250710165315.png) + +--- + +## 2. 核销权限管理 + +为门店员工授权,确保只有指定人员可操作订单核销。 + +- **授权逻辑**:每个门店需单独授权(一个员工可同时兼管多家门店)。 +- **配置步骤**: + 1. 进入 `员工列表` -> `新增核销员工`。 + 2. 选择系统内存在的员工,并绑定其所属门店。 + 3. **核销开关**:支持随时手动开启或撤回某位员工的核销权限。 + +![核销员工权限管理](image/分销体系/imghoutai/微信截图_20250710170502.png) + +--- + +## 3. 核销操作指南 + +系统支持“移动端”与“后台端”两种核销方式: + +### 3.1 移动端核销 (推荐) +- **适配场景**:门店现场提货面对面核销。 +- **操作路径**:个人中心 -> 个人资料 -> **员工权益** -> 订单核销。 +- **核销方法**:支持直接**扫码核销**或手动**输入核销码**。 + +![移动端核销流程图](image/分销体系/imghoutai/组合%201440.png) + +### 3.2 后台端核销 +- **适配场景**:异常处理或线上确认。 +- **操作路径**:`自提管理` -> `核销订单`。 +- **执行**:点击特定订单对应的“核销”按钮即可完成系统入账。 + +![后台端核销界面](image/分销体系/imghoutai/微信截图_20250711154022.png) \ No newline at end of file diff --git a/hxzx/11.账号权限管理.md b/hxzx/11.账号权限管理.md new file mode 100644 index 0000000..e54affe --- /dev/null +++ b/hxzx/11.账号权限管理.md @@ -0,0 +1,28 @@ +# 账号体系与权限管理 + +::: warning 访问控制 +权限管理是系统安全的第一道防线。请严格遵循“最小权限原则”,仅为员工分配其工作必需的功能权限。 +::: + +## 1. 权限申请与分配流程 + +为了确保运营合规,权限分配需经过标准的审批流: + +1. **提交申请**:新入职员工需明确所需操作模块(如:商品编辑、订单审核、财务结算)。 +2. **主管审批**:对应业务部门的主管对申请进行初审。 +3. **技术授予**:系统管理员接收到审批结果后,在后台进行权限配置。 +4. **验证生效**:分配完成后,员工重新登录即可访问对应的功能页面。 + +--- + +## 2. 后台系统配置指南 + +系统采用 **RBAC (基于角色的访问控制)** 模型进行管理。 + +- **角色管理 (Roles)**:预设常用角色(如:商品管理员、营销专员、财务审核员)。每个角色绑定了特定的菜单与接口权限。 +- **用户关联 (Users)**:将特定员工账号关联至一个或多个角色,实现权限的动态授予与回收。 +- **即时撤销**:当员工离职或岗位变动时,应第一时间禁用其账号或解除角色关联。 + +::: tip 操作建议 +建议每季度进行一次权限合规性审计,清理不再使用的账号与过度授权的权限。 +::: diff --git a/hxzx/12.安全管理.md b/hxzx/12.安全管理.md new file mode 100644 index 0000000..aa495bb --- /dev/null +++ b/hxzx/12.安全管理.md @@ -0,0 +1,27 @@ +# 系统安全与数据隔离 + +::: danger 极致安全 +系统存储了大量的业务数据。任何不当的泄密行为都可能导致不可估量的损失。 +::: + +## 1. 账号与密码策略 + +为了保障个人账号的安全,请务必执行以下动作: + +- **重置初始密码**:系统预设初始密码仅供首次登录。**强烈建议**在登录后第一时间进行修改。 +- **定期更新**:建议每隔 90 天更新一次密码。 +- **操作路径**:进入 `个人中心` -> `安全设置` -> `修改登录密码`。 + +![密码设置界面](image/分销体系/imghoutai/图片6.png) + +--- + +## 2. 行为准则与数据合规 + +1. **终端保护**:不得在公共设备上缓存密码。 +2. **多终端限制**:系统支持同一账户在多终端登录,但需注意账户间的隔离使用。 +3. **敏感操作报备**:执行大规模退款、商品批量下架或提现大额佣金等操作前,应向业务负责人提前报备。 + +::: note 风险监控 +系统后台会实时记录所有管理员的操作日志(Log)。若出现异常登录或越权操作,技术团队将根据日志进行安全追溯。 +::: \ No newline at end of file diff --git a/hxzx/13.常见问题解答.md b/hxzx/13.常见问题解答.md new file mode 100644 index 0000000..748f266 --- /dev/null +++ b/hxzx/13.常见问题解答.md @@ -0,0 +1,45 @@ +# 常见问题解答与故障排查 (FAQ) + +::: tip 持续更新 +本页面汇总了运营过程中最高频出现的问题。若您的疑问在此未得到解答,请通过 **企业微信** 联系技术支持。 +::: + +## 1. 商品与媒体问题 + +### Q1: 商品图片上传失败怎么办? +- **检查格式**:系统目前仅支持 **JPG/PNG** 格式。 +- **检查尺寸**:封面图比例要求为 **1:1**,且单张图片大小建议控制在 **2MB** 以内。 +- **环境排查**:尝试清除浏览器缓存,或更换为 **Chrome 浏览器**。 +- **联系技术**:若排查无果,请截取完整的错误弹窗通知技术人员。 + +--- + +## 2. 订单与核销问题 + +### Q2: 顾客购买自提商品,现场如何快速核销? +有两种主流方式: +1. **移动端扫码(推荐)**:员工登录回乡甄选小程序 -> 点击个人资料 -> 员工权益 -> 扫码核销。 +2. **后台手动核销**:登录管理后台 -> `自提管理` -> `核销订单` -> 选择对应订单执行核销。 + +### Q3: 为什么员工在小程序里看不到“核销”按钮? +- **检查权限**:确保在后台 `自提管理` -> `员工列表` 中已将该员工与目标门店正确绑定。 +- **权限开关**:核实该员工的“核销权限开关”是否处于开启状态。 + +--- + +## 4. 分销与结算问题 + +### Q4: 为什么订单确认后,佣金没立即到账? +- **对账冻结期**:请在 `分销配置` 中检查 **“冻结时间”** 设置。佣金通常在确认收货后 X 天(如 7 天)才正式进入可用余额。 + +--- + +## 5. 关于本文档 +本知识库具有以下特点,旨在提升您的工作效率: +- **操作导向**:关键模块均包含详细步骤编号和截图。 +- **实时更新**:随着系统版本迭代,文档内容会动态修正。 +- **场景化方案**:结合实际业务逻辑(如分销、拼团)提供实操案例。 + +::: note 备注 +本文档支持根据回乡体系的具体业务流转进行深度定制,确保与您的日常实操无缝衔接。 +::: diff --git a/hxzx/2.订单管理.md b/hxzx/2.订单管理.md new file mode 100644 index 0000000..26c7ced --- /dev/null +++ b/hxzx/2.订单管理.md @@ -0,0 +1,50 @@ +# 订单处理与评论管理 + +::: tip 帮助与支持 +如果您在使用过程中遇到任何问题,请随时在 **企业微信** 联系技术团队。 +::: + +## 1. 订单处理流程 + +高效的订单处理是提升用户满意度的关键。请按照以下步骤管理您的待处理订单: + +### 1.1 筛选与核对 +- **操作路径**:进入 `订单管理` -> `订单列表`。 +- **筛选维度**:您可以根据订单状态(待发货/已发货/已完成)、下单时间、订单类型或关键字进行精准筛选。 + +![订单列表界面](image/分销体系/imghoutai/微信截图_20250716162902.png) + +### 1.2 订单发货 +1. **勾选订单**:在待发货列表中勾选需要发行的订单。 +2. **执行发货**:点击“发货”按钮。 +3. **录入物流**:正确输入运单号,并选择对应的物流公司(如顺丰、中通等)。 + +### 1.3 退款与退货处理 +- **审核申请**:在订单管理中审核用户的退款/退货申请。 +- **确认原因**:核实退款原因(如质量问题、拍错等)。 +- **执行退款**:同意申请后,系统支持**原路退回**或**退回至用户余额**。 + +--- + +## 2. 评论管理 + +及时、专业的互动有助于建立品牌信任感。 + +- **操作路径**:进入 `订单管理` -> `评论管理`。 +- **回复评论**: + 1. 筛选“待回复”的评论。 + 2. 点击“回复”按钮,输入真诚的文字与用户互动。 + +--- + +## 3. 售后管理 (维权订单) + +专门处理用户发起的售后维权。 + +- **操作路径**:进入 `订单管理` -> `售后订单`。 +- **处理步骤**: + 1. 勾选待审核订单。 + 2. 确定退款金额与退款原因。 + 3. 点击“审核”通过后,系统将自动发起退款。 + +![售后订单管理](image/分销体系/image-shouhou.png) \ No newline at end of file diff --git a/hxzx/3.分销体系.md b/hxzx/3.分销体系.md new file mode 100644 index 0000000..83d0df7 --- /dev/null +++ b/hxzx/3.分销体系.md @@ -0,0 +1,77 @@ +# 分销体系架构与操作指南 + +::: info 本文档核心 +本文档详细介绍了**回乡甄选**系统的分销商返佣逻辑、推广员体系以及后台相关配置说明。 +::: + +## 1. 分销商返佣模型 (上下级关系) + +分销商按照层级进行返佣。核心原则是:**分销商团队内的成员下单,分销商获得销售分成。** + +### 1.1 案例演示 +假设上下级关系如下: +`A -> B(分销商) -> C -> D -> E` + +| 下单人 | 佣金分配详情 | 事业部/分销商抽成逻辑 | +| :--- | :--- | :--- | +| **A 下单** | A 的上级是 B,但 B 不会获得佣金(A 在 B 之上)。 | - | +| **B 下单** | A 获得一级分佣。B 作为下单者兼分销商。 | A 是 B 的上级,B 不会对他抽成。 | +| **C 下单** | A 获得二级返佣(不抽),B 获得 **销售分成 + 一级返佣**。 | 获佣者是分销商成员时,分销商进行抽成。 | +| **D 下单** | B 获得二级返佣,C 获得一级返佣。 | B 同时获得销售分成及对 C 佣金的抽成。 | +| **E 下单** | C 获得二级返佣,D 获得一级返佣。 | 分销商 B 获得销售分成及对 C、D 的抽成。 | + +::: tip 关键变动 +当链路中的成员(如 D)自行成为分销商后,原本属于 B 的团队成员(D、E、F)会自动归属到 D 的新分销团队中。 +::: + +--- + +## 2. 推广员与事业部体系 + +### 2.1 推广员 (Promoters) +- **核心逻辑**:推广员分享商品,他人下单后推广员获取佣金。**逻辑与分销上下级无关。** +- **自购优惠**:推广员自己下单不产生佣金,而是作为**专属折扣**直接抵扣订单金额。 + +### 2.2 事业部 (Business Units) +事业部是推广员的管理单位。 +- **负责人/团长**:创建事业部时关联的用户。 +- **返佣比例限制**:限制团队中推广员的最大返佣比例。 +- **团队分成比例**:事业部对推广员**自购**时的抽成。 + +--- + +## 3. 后台分销配置说明 + +在后台管理系统中,可以通过以下参数全局控制分销逻辑: + +- **分销总开关**:开启或关闭平台所有佣金结算。 +- **默认返佣比例**:设定一级、二级分销员的默认提成百分比。 +- **提现门槛**:设定用户佣金提现的最低金额。 +- **结算冻结期**:订单确认收货或核销后,佣金入账的延迟天数(设为 0 则立即入账)。 + +--- + +## 4. 商品级分销设置 + +针对特定商品,可以进行精细化的分销控制: + +| 设置项 | 说明 | +| :--- | :--- | +| **是否参与分销** | 打开此开关,系统才会为该商品计算佣金。 | +| **邀请返佣** | 给一级和二级分销商的总返佣金额。 | +| **销售分成** | 团队成员下单时,分销商直接领取的固定奖金。 | +| **事业部内部价** | 推广员自购时的固定结算价,优惠金额即为佣金部分。 | + +::: warning 安全提示 +在设置时请注意:**邀请返佣 + 销售分成** 的总和不能超过商品的实际售价。 +::: + +--- + +## 5. 配置界面参考 + +![分销全局配置](./image/%E5%88%86%E9%94%80%E4%BD%93%E7%B3%BB/image-20250527160753690.png) +*上图:后台分销全局管理界面* + +![商品分销设置](./image/%E5%88%86%E9%94%80%E4%BD%93%E7%B3%BB/image-20250527160506728.png) +*上图:单品分销属性设置界面* diff --git a/hxzx/4.商品管理.md b/hxzx/4.商品管理.md new file mode 100644 index 0000000..7a0bdc1 --- /dev/null +++ b/hxzx/4.商品管理.md @@ -0,0 +1,53 @@ +# 商品全生命周期管理 + +::: tip 提示 +有效的商品管理能显著提升转化率。如有操作障碍,请通过 **企业微信** 联系技术支持。 +::: + +## 1. 商品新增与编辑 + +添加商品是运营的基础。请严格遵守以下规范以保证展示效果。 + +### 1.1 基本流程 +1. **入口**:`商品管理` -> `商品列表` -> `新增商品`。 +2. **分类**:必须先选择商品所属分类。*若无合适分类,请先在“商品分类”中添加。* + +### 1.2 关键字段填写规范 +- **标题**:建议模板为“品牌 + 核心卖点 + 关键词”。*(例:回乡甄选 夏季冷食系列 纯天然果脯)* +- **价格与库存**:设定初始价格与库存。 +- **商品标签**:简明扼要,建议控制在 4 字以内。 + +### 1.3 详情与媒体 +- **图片**: + - **封面图**:1:1 高清大图,要求无水印。 + - **轮播图**:建议 5-8 张,多角度全景展示。 +- **商品详情**:建议采用“图+文”模式,详细描述商品的性能、用途与规格。 + +![新增商品界面](image/分销体系/imghoutai/微信截图_20250710153839.png) + +--- + +## 2. 规格与营销配置 + +### 2.1 规格设置 +您可以选择“单规格”或“多规格”。多规格商品可针对颜色、尺寸等维度分别定价。 + +### 2.2 营销辅助功能 +- **虚拟销量**:可增加商品前台显示的销量数值。 +- **积分返还**:设置购买该商品后赠送给用户的积分。 +- **购买记录**:可自由选择是否在详情页展示用户的下单历史。 + +--- + +## 3. 状态管理与限制 + +### 3.1 商品上下架 +- **临时下架**:针对缺货或需调整的商品。 +- **商品删除**:彻底移除商品。*建议优先设置为下架状态以保留历史经营数据。* + +![下架操作](image/分销体系/imghoutai/微信截图_20250710154636.png) + +### 3.2 商品限购策略 +为了防止恶意抢购或控制库存流动,您可以针对单用户按“周期”或“总量”进行限购。 + +![限购设置](image/分销体系/imghoutai/微信截图_20250711112330.png) \ No newline at end of file diff --git a/hxzx/5.会员管理.md b/hxzx/5.会员管理.md new file mode 100644 index 0000000..0164f8c --- /dev/null +++ b/hxzx/5.会员管理.md @@ -0,0 +1,49 @@ +# 会员管理与用户画像 + +::: note 会员价值 +会员体系是提升用户粘性、优化运营决策的核心工具。通过管理会员,您可以更精准地进行活动推送。 +::: + +## 1. 会员信息管理 + +系统自动整合各类用户数据,方便您进行全维度的会员维护: + +- **基础档案**:包含姓名、联系方式、登录记录、来源及推荐人。 +- **财务状况**:实时查看会员的佣金余额、积分余额。 +- **关系网络**:支持查看会员的上下级关系及推荐体系。 +- **后台权限**:支持手动变更邀请人及调整会员余额(需经过内部流程)。 + +![会员列表管理](image/分销体系/imghoutai/微信截图_20250711144032.png) + +--- + +## 2. 会员行为追踪 + +通过行为数据沉淀用户画像,为个性化营销提供依据。 + +- **浏览记录**:实时记录用户的足迹(查看商品、详情页访问等)。 +- **购物行为**:记录加入地址、购物车调整、下单支付及售后操作全过程。 + +![全行为记录](image/分销体系/imghoutai/微信截图_20250711143324.png) + +--- + +## 3. 会员商品收藏 + +收藏功能帮助用户暂存心仪商品,商家可通过此数据分析商品潜能。 + +- **用户侧操作**:在小程序商品详情页直接点击“收藏”。 +- **管理侧应用**:分析收藏数据的变化,优化推荐策略。 + +![小程序端收藏展示](image/分销体系/imghoutai/微信截图_20250711144833.png) + +--- + +## 4. 用户账单明细 + +透明的账单体系是建立信任的基础。您可以追踪任何一笔资金变动: + +- **变动类型**:充值、消费、退款、佣金发放及扣除。 +- **积分轨迹**:积分的获取途径、消耗记录及有效期。 + +![详细账单列表](image/分销体系/imghoutai/微信截图_20250711145631.png) \ No newline at end of file diff --git a/hxzx/6.积分管理.md b/hxzx/6.积分管理.md new file mode 100644 index 0000000..076f212 --- /dev/null +++ b/hxzx/6.积分管理.md @@ -0,0 +1,37 @@ +# 积分管理与运营策略 + +::: tip 积分定义 +积分是系统内部的激励体系。通过科学配置积分获取与抵扣规则,可以极大提升用户的日活与复购率。 +::: + +## 1. 积分规则配置 + +商家可自主灵活定义积分的核心属性,确保其与业务目标的平衡。 + +- **积分比例设置**:定义积分的购买力(如 1 积分可抵扣多少元)。 +- **抵扣限制条件**:设定“消费满多少余额才可使用”。开启此项能提升客单价。*(设置为 0 代表无门槛抵扣)* + +![积分配置主界面](image/分销体系/imghoutai/微信截图_20250711093244.png) + +--- + +## 2. 积分获取:签到激励 + +通过签到任务吸引用户回归小程序。 + +- **多天阶梯奖励**:支持配置连续签到天数对应的积分奖励(如:第 1 天 1 积分,连续第 7 天翻倍)。 +- **灵活调整**:随活动节点动态调整签到积分值,瞬间拉高粘性。 + +![签到天数管理](image/分销体系/imghoutai/微信截图_20250711094841.png) + +--- + +## 3. 积分追踪与对账 + +完整的审计日志确保每一分积分的流动都有据可查。 + +- **获取记录**:精确记录用户何时通过何种方式(如签到、购物)获取了多少积分。 +- **消耗明细**:追踪积分抵扣、兑换或过期的全过程。 +- **多端查看**:后台管理员可全局管理,用户也可在小程序个人中心实时查看。 + +![积分变更明细](image/分销体系/imghoutai/微信截图_20250711094736.png) diff --git a/hxzx/7.营销管理.md b/hxzx/7.营销管理.md new file mode 100644 index 0000000..76ddadc --- /dev/null +++ b/hxzx/7.营销管理.md @@ -0,0 +1,61 @@ +# 营销活动与运营中心 + +::: warning 安全合规 +在开展营销活动(如礼品卡、拼团等)前,请务必核实商品库存与资金池。如有疑问,请通过 **企业微信** 联系支持。 +::: + +## 1. 优惠券管理 (电子券体系) + +优惠券是激活非活跃用户和提升转化率的重要工具。 + +### 1.1 核心配置 +- **入口**:`电子券管理` -> `优惠券制作`。 +- **券类型**: + - **通用券**:平台所有商品通用。 + - **商品券**:仅针对指定特定商品。 +- **必填项**:设定面值、最低消费门槛、有效期。确保勾选“开启”后方可领取。 + +![优惠券后台界面](image/分销体系/imghoutai/图片9.png) + +--- + +## 2. 拼团活动策划 + +利用社交裂变快速获取流量。 + +### 2.1 拼团设置流程 +1. **入口**:`营销管理` -> `拼团产品` -> `新增活动`。 +2. **限定人数**:设定成团人数(如:2 人成团)。 +3. **时效管理**:设定成团时限 X 小时,超时则自动解散退款。 +4. **媒体物料**:拼团主图与轮播图比例要求 **1:1**。 + +![拼团管理](image/分销体系/imghoutai/图片7.png) + +--- + +## 3. 礼品卡体系 (离线与在线发卡) + +礼品卡提供了一种便捷的福利/赠送通道,支持实体导出或系统内发放。 + +- **发卡模式**:支持导出卡密表格(线下发放)或在后台直接发到指定用户。 +- **卡类型**: + - **绿币卡**:充值绿币,支持海峡姐妹 APP 查询。 + - **余额卡**:支持定义余额使用范围。 + +![卡券系统配置](image/分销体系/imghoutai/微信截图_20250711150325.png) + +### 3.1 用户体验预览 +用户可在小程序“我的钱包”中即时兑换并查看到账详情。 + +![小程序 UI 示例](image/分销体系/微信图片_20250908111500_30_237.jpg#width=300) + +::: tip 外部推广 +在外部推广文案中,请务必附带以下专属 QR 码,方便引导用户直达小程序兑换礼品卡: +![兑换专享 QR 码](image/分销体系/giftQr.png) +::: + +--- + +## 4. 运营安全须知 +1. **数据脱敏**:导出礼品卡卡密表格时,请务必妥善保管,防止数据泄露。 +2. **未激活提示**:请在导语中引导用户妥善保管未激活卡密,防止财产损失。 diff --git a/hxzx/8.财务中心.md b/hxzx/8.财务中心.md new file mode 100644 index 0000000..f88a824 --- /dev/null +++ b/hxzx/8.财务中心.md @@ -0,0 +1,42 @@ +# 财务中心与结算管理 + +::: tip 财务准则 +财务管理模块是系统资金流的“总闸口”。请在操作每一项提现审核与佣金发放前,务必仔细核对。 +::: + +## 1. 分销与结算记录 + +全量化记录每一分佣金的流动,确保账目可追溯。 + +- **销售流水**:关联分销商生成的每一笔订单(包含订单号、成交金额、获佣人及佣金状态)。 +- **推广数据**:统计各分销商的引流效果(新用户数、转化率等)。 +- **佣金明细**:可按分销商筛选汇总其待结算与已结算收益。 + +![分销记录明细](image/分销体系/imghoutai/微信截图_20250711151927.png) + +--- + +## 2. 资金提现管理 + +本模块提供严格的审批流程,确保资金安全合规地流向用户。 + +- **申请审核**:当用户发起提现申请时,管理员需在后台核实用户余额及历史分佣记录。 +- **状态追踪**:从发起申请到平台打款的每一个环节均支持状态更新。 + +![提现审核界面](image/分销体系/微信截图_20250711152727.png) + +--- + +## 3. 会员充值中心 + +灵活的充值机制能显著提升用户的储值意愿和资金沉淀。 + +### 3.1 充值列表管理 +记录所有会员的充值明细,包含支付时间、订单号及金额。这些数据将为用户的账单提供核心依据。 + +![充值流水](image/分销体系/imghoutai/微信截图_20250711153334.png) + +### 3.2 充值活动配置 +支持自定义充值营销活动(例如:充值 1000 送 100)。配置完成后,小程序充值页面将即时同步更新。 + +![活动配置界面](image/分销体系/imghoutai/微信截图_20250711153616.png) diff --git a/hxzx/9.终端管理.md b/hxzx/9.终端管理.md new file mode 100644 index 0000000..b23e650 --- /dev/null +++ b/hxzx/9.终端管理.md @@ -0,0 +1,50 @@ +# 终端装修与页面管理 + +::: tip 装修建议 +良好的 UI 交互能有效增加用户停留时间。建议在进行大规模页面调整前,先在测试环境或特定时间段进行小范围验证。 +::: + +## 1. 首页可视化装修 + +通过“拖拽式”或“组件化”的方式,实时调整小程序首页展示效果。 + +### 1.1 核心组件配置 +- **轮播图 (Banner)**:建议尺寸 **750×350 px**。支持设置切换间隔及点击跳转地址。 +- **公告栏**:支持文字或图片类型。 + - 滚动方式:横向滚动或上下滚动。 + - 点击效果:展示详细公告内容或跳转至指定活动页。 +- **搜索栏热词**:根据当季主推或搜索热度,自由更换搜索框底纹词。 + +![首页装修概览](image/图片2.png) + +### 1.2 商品展示策略 +您可以灵活控制首页商品的展示逻辑: +- **全部展示**:展示系统内所有上架商品。 +- **分类/自定义展示**:手动挑选爆款商品进行展示。*系统默认将最新添加的商品排在首位。* + +![商品模块配置](image/分销体系/imghoutai/1111.png) + +--- + +## 2. 个人中心定制 + +打造具有品牌特色的“我的”页面。 + +- **Icon 与名称**:所有功能图标(如订单、优惠券、我的收藏)均可自定义更换。 +- **“我的服务”导航**: + - **排版模式**:支持横排、竖排,图文、纯图等多种组合。 + - **展示效果**:可配置为多行平铺或单行滑动展示。 + - **精细控制**:每行展示数量(3/4/5 个)随心调整。 + +![个人中心自定义](image/分销体系/imghoutai/图片12.png) + +--- + +## 3. 微页面制作 (自由组装) + +微页面是独立于首页的活动专题页,适用于节日大促或新品发布。 + +- **组件化库**:提供基础组件(文本、图片、视频)与商城组件(商品列表、券领、抢购)。 +- **灵活创建**:点击“新增微页面”即可开启自由拼装模式。 + +![微页面编辑器](image/分销体系/imghoutai/图片10.png) \ No newline at end of file diff --git a/hxzx/image/image-1.png b/hxzx/image/image-1.png new file mode 100644 index 0000000..7d41d53 Binary files /dev/null and b/hxzx/image/image-1.png differ diff --git a/hxzx/image/image.png b/hxzx/image/image.png new file mode 100644 index 0000000..7d41d53 Binary files /dev/null and b/hxzx/image/image.png differ diff --git a/hxzx/image/分销体系/gift.png b/hxzx/image/分销体系/gift.png new file mode 100644 index 0000000..cf1140b Binary files /dev/null and b/hxzx/image/分销体系/gift.png differ diff --git a/hxzx/image/分销体系/giftQr.png b/hxzx/image/分销体系/giftQr.png new file mode 100644 index 0000000..446e644 Binary files /dev/null and b/hxzx/image/分销体系/giftQr.png differ diff --git a/hxzx/image/分销体系/image-20250527150106124.png b/hxzx/image/分销体系/image-20250527150106124.png new file mode 100644 index 0000000..648689d Binary files /dev/null and b/hxzx/image/分销体系/image-20250527150106124.png differ diff --git a/hxzx/image/分销体系/image-20250527150132219.png b/hxzx/image/分销体系/image-20250527150132219.png new file mode 100644 index 0000000..634217a Binary files /dev/null and b/hxzx/image/分销体系/image-20250527150132219.png differ diff --git a/hxzx/image/分销体系/image-20250527151053638.png b/hxzx/image/分销体系/image-20250527151053638.png new file mode 100644 index 0000000..e8322c2 Binary files /dev/null and b/hxzx/image/分销体系/image-20250527151053638.png differ diff --git a/hxzx/image/分销体系/image-20250527151345632.png b/hxzx/image/分销体系/image-20250527151345632.png new file mode 100644 index 0000000..122fa87 Binary files /dev/null and b/hxzx/image/分销体系/image-20250527151345632.png differ diff --git a/hxzx/image/分销体系/image-20250527151626159.png b/hxzx/image/分销体系/image-20250527151626159.png new file mode 100644 index 0000000..a677afc Binary files /dev/null and b/hxzx/image/分销体系/image-20250527151626159.png differ diff --git a/hxzx/image/分销体系/image-20250527152654437.png b/hxzx/image/分销体系/image-20250527152654437.png new file mode 100644 index 0000000..fa511ac Binary files /dev/null and b/hxzx/image/分销体系/image-20250527152654437.png differ diff --git a/hxzx/image/分销体系/image-20250527152928832.png b/hxzx/image/分销体系/image-20250527152928832.png new file mode 100644 index 0000000..2ad14b1 Binary files /dev/null and b/hxzx/image/分销体系/image-20250527152928832.png differ diff --git a/hxzx/image/分销体系/image-20250527153013134.png b/hxzx/image/分销体系/image-20250527153013134.png new file mode 100644 index 0000000..0eb176c Binary files /dev/null and b/hxzx/image/分销体系/image-20250527153013134.png differ diff --git a/hxzx/image/分销体系/image-20250527153803795.png b/hxzx/image/分销体系/image-20250527153803795.png new file mode 100644 index 0000000..af8ceb4 Binary files /dev/null and b/hxzx/image/分销体系/image-20250527153803795.png differ diff --git a/hxzx/image/分销体系/image-20250527155013753.png b/hxzx/image/分销体系/image-20250527155013753.png new file mode 100644 index 0000000..b560b38 Binary files /dev/null and b/hxzx/image/分销体系/image-20250527155013753.png differ diff --git a/hxzx/image/分销体系/image-20250527155102520.png b/hxzx/image/分销体系/image-20250527155102520.png new file mode 100644 index 0000000..f6a9a79 Binary files /dev/null and b/hxzx/image/分销体系/image-20250527155102520.png differ diff --git a/hxzx/image/分销体系/image-20250527155140983.png b/hxzx/image/分销体系/image-20250527155140983.png new file mode 100644 index 0000000..f6a9a79 Binary files /dev/null and b/hxzx/image/分销体系/image-20250527155140983.png differ diff --git a/hxzx/image/分销体系/image-20250527155651610.png b/hxzx/image/分销体系/image-20250527155651610.png new file mode 100644 index 0000000..eb2d989 Binary files /dev/null and b/hxzx/image/分销体系/image-20250527155651610.png differ diff --git a/hxzx/image/分销体系/image-20250527160239897.png b/hxzx/image/分销体系/image-20250527160239897.png new file mode 100644 index 0000000..7528a67 Binary files /dev/null and b/hxzx/image/分销体系/image-20250527160239897.png differ diff --git a/hxzx/image/分销体系/image-20250527160456683.png b/hxzx/image/分销体系/image-20250527160456683.png new file mode 100644 index 0000000..9bf10b5 Binary files /dev/null and b/hxzx/image/分销体系/image-20250527160456683.png differ diff --git a/hxzx/image/分销体系/image-20250527160506728.png b/hxzx/image/分销体系/image-20250527160506728.png new file mode 100644 index 0000000..e8312a4 Binary files /dev/null and b/hxzx/image/分销体系/image-20250527160506728.png differ diff --git a/hxzx/image/分销体系/image-20250527160721110.png b/hxzx/image/分销体系/image-20250527160721110.png new file mode 100644 index 0000000..50999b4 Binary files /dev/null and b/hxzx/image/分销体系/image-20250527160721110.png differ diff --git a/hxzx/image/分销体系/image-20250527160753690.png b/hxzx/image/分销体系/image-20250527160753690.png new file mode 100644 index 0000000..7f52ae5 Binary files /dev/null and b/hxzx/image/分销体系/image-20250527160753690.png differ diff --git a/hxzx/image/分销体系/image-20250527161303403.png b/hxzx/image/分销体系/image-20250527161303403.png new file mode 100644 index 0000000..f0663d7 Binary files /dev/null and b/hxzx/image/分销体系/image-20250527161303403.png differ diff --git a/hxzx/image/分销体系/image-20250527161404207.png b/hxzx/image/分销体系/image-20250527161404207.png new file mode 100644 index 0000000..aae7476 Binary files /dev/null and b/hxzx/image/分销体系/image-20250527161404207.png differ diff --git a/hxzx/image/分销体系/image-20250527161446075.png b/hxzx/image/分销体系/image-20250527161446075.png new file mode 100644 index 0000000..1ad2d57 Binary files /dev/null and b/hxzx/image/分销体系/image-20250527161446075.png differ diff --git a/hxzx/image/分销体系/image-20250527161450524.png b/hxzx/image/分销体系/image-20250527161450524.png new file mode 100644 index 0000000..dff2178 Binary files /dev/null and b/hxzx/image/分销体系/image-20250527161450524.png differ diff --git a/hxzx/image/分销体系/image-20250527161852090.png b/hxzx/image/分销体系/image-20250527161852090.png new file mode 100644 index 0000000..29c9c01 Binary files /dev/null and b/hxzx/image/分销体系/image-20250527161852090.png differ diff --git a/hxzx/image/分销体系/image-shouhou.png b/hxzx/image/分销体系/image-shouhou.png new file mode 100644 index 0000000..6dfb551 Binary files /dev/null and b/hxzx/image/分销体系/image-shouhou.png differ diff --git a/hxzx/image/分销体系/image.png b/hxzx/image/分销体系/image.png new file mode 100644 index 0000000..8abd4d4 Binary files /dev/null and b/hxzx/image/分销体系/image.png differ diff --git a/hxzx/image/分销体系/imghoutai/1111.png b/hxzx/image/分销体系/imghoutai/1111.png new file mode 100644 index 0000000..b34631d Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/1111.png differ diff --git a/hxzx/image/分销体系/imghoutai/image.png b/hxzx/image/分销体系/imghoutai/image.png new file mode 100644 index 0000000..e9d3cb1 Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/image.png differ diff --git a/hxzx/image/分销体系/imghoutai/企业微信截图_20250711141504.png b/hxzx/image/分销体系/imghoutai/企业微信截图_20250711141504.png new file mode 100644 index 0000000..6c89bc8 Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/企业微信截图_20250711141504.png differ diff --git a/hxzx/image/分销体系/imghoutai/图片10.png b/hxzx/image/分销体系/imghoutai/图片10.png new file mode 100644 index 0000000..2cdbef2 Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/图片10.png differ diff --git a/hxzx/image/分销体系/imghoutai/图片11.png b/hxzx/image/分销体系/imghoutai/图片11.png new file mode 100644 index 0000000..c156206 Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/图片11.png differ diff --git a/hxzx/image/分销体系/imghoutai/图片12.png b/hxzx/image/分销体系/imghoutai/图片12.png new file mode 100644 index 0000000..44d7d3e Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/图片12.png differ diff --git a/hxzx/image/分销体系/imghoutai/图片3.png b/hxzx/image/分销体系/imghoutai/图片3.png new file mode 100644 index 0000000..0f42607 Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/图片3.png differ diff --git a/hxzx/image/分销体系/imghoutai/图片4.png b/hxzx/image/分销体系/imghoutai/图片4.png new file mode 100644 index 0000000..b34631d Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/图片4.png differ diff --git a/hxzx/image/分销体系/imghoutai/图片6.png b/hxzx/image/分销体系/imghoutai/图片6.png new file mode 100644 index 0000000..754f5d7 Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/图片6.png differ diff --git a/hxzx/image/分销体系/imghoutai/图片7.png b/hxzx/image/分销体系/imghoutai/图片7.png new file mode 100644 index 0000000..1a91718 Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/图片7.png differ diff --git a/hxzx/image/分销体系/imghoutai/图片8.png b/hxzx/image/分销体系/imghoutai/图片8.png new file mode 100644 index 0000000..d6ec423 Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/图片8.png differ diff --git a/hxzx/image/分销体系/imghoutai/图片9.png b/hxzx/image/分销体系/imghoutai/图片9.png new file mode 100644 index 0000000..c651ad1 Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/图片9.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250710152635.png b/hxzx/image/分销体系/imghoutai/微信截图_20250710152635.png new file mode 100644 index 0000000..3594f25 Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250710152635.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250710152838.png b/hxzx/image/分销体系/imghoutai/微信截图_20250710152838.png new file mode 100644 index 0000000..1690a9d Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250710152838.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250710153324.png b/hxzx/image/分销体系/imghoutai/微信截图_20250710153324.png new file mode 100644 index 0000000..356c8b4 Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250710153324.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250710153839.png b/hxzx/image/分销体系/imghoutai/微信截图_20250710153839.png new file mode 100644 index 0000000..1f50e2b Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250710153839.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250710154636.png b/hxzx/image/分销体系/imghoutai/微信截图_20250710154636.png new file mode 100644 index 0000000..ef35abb Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250710154636.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250710165315.png b/hxzx/image/分销体系/imghoutai/微信截图_20250710165315.png new file mode 100644 index 0000000..54fa2d2 Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250710165315.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250710170502.png b/hxzx/image/分销体系/imghoutai/微信截图_20250710170502.png new file mode 100644 index 0000000..0ade74d Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250710170502.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250710170934.png b/hxzx/image/分销体系/imghoutai/微信截图_20250710170934.png new file mode 100644 index 0000000..6860a3e Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250710170934.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250710170946.png b/hxzx/image/分销体系/imghoutai/微信截图_20250710170946.png new file mode 100644 index 0000000..cb45c1f Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250710170946.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250710170955.png b/hxzx/image/分销体系/imghoutai/微信截图_20250710170955.png new file mode 100644 index 0000000..8aac80d Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250710170955.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250711093244.png b/hxzx/image/分销体系/imghoutai/微信截图_20250711093244.png new file mode 100644 index 0000000..4b7f366 Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250711093244.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250711094736.png b/hxzx/image/分销体系/imghoutai/微信截图_20250711094736.png new file mode 100644 index 0000000..e8d1bf2 Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250711094736.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250711094841.png b/hxzx/image/分销体系/imghoutai/微信截图_20250711094841.png new file mode 100644 index 0000000..8baa449 Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250711094841.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250711112330.png b/hxzx/image/分销体系/imghoutai/微信截图_20250711112330.png new file mode 100644 index 0000000..2a542d9 Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250711112330.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250711143324.png b/hxzx/image/分销体系/imghoutai/微信截图_20250711143324.png new file mode 100644 index 0000000..308a474 Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250711143324.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250711144032.png b/hxzx/image/分销体系/imghoutai/微信截图_20250711144032.png new file mode 100644 index 0000000..2464925 Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250711144032.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250711144833.png b/hxzx/image/分销体系/imghoutai/微信截图_20250711144833.png new file mode 100644 index 0000000..d2d83b1 Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250711144833.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250711145631.png b/hxzx/image/分销体系/imghoutai/微信截图_20250711145631.png new file mode 100644 index 0000000..1868a8f Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250711145631.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250711150325.png b/hxzx/image/分销体系/imghoutai/微信截图_20250711150325.png new file mode 100644 index 0000000..30c32c6 Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250711150325.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250711151346.png b/hxzx/image/分销体系/imghoutai/微信截图_20250711151346.png new file mode 100644 index 0000000..7f368fe Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250711151346.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250711151927.png b/hxzx/image/分销体系/imghoutai/微信截图_20250711151927.png new file mode 100644 index 0000000..1b6302f Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250711151927.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250711152727.png b/hxzx/image/分销体系/imghoutai/微信截图_20250711152727.png new file mode 100644 index 0000000..3ff1c5a Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250711152727.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250711153334.png b/hxzx/image/分销体系/imghoutai/微信截图_20250711153334.png new file mode 100644 index 0000000..46f095e Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250711153334.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250711153616.png b/hxzx/image/分销体系/imghoutai/微信截图_20250711153616.png new file mode 100644 index 0000000..63266c5 Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250711153616.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250711154022.png b/hxzx/image/分销体系/imghoutai/微信截图_20250711154022.png new file mode 100644 index 0000000..7215020 Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250711154022.png differ diff --git a/hxzx/image/分销体系/imghoutai/微信截图_20250716162902.png b/hxzx/image/分销体系/imghoutai/微信截图_20250716162902.png new file mode 100644 index 0000000..c746d2a Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/微信截图_20250716162902.png differ diff --git a/hxzx/image/分销体系/imghoutai/组合 1440.png b/hxzx/image/分销体系/imghoutai/组合 1440.png new file mode 100644 index 0000000..8b7271f Binary files /dev/null and b/hxzx/image/分销体系/imghoutai/组合 1440.png differ diff --git a/hxzx/image/分销体系/wechat_2025-09-08_105507_138.png b/hxzx/image/分销体系/wechat_2025-09-08_105507_138.png new file mode 100644 index 0000000..09fe352 Binary files /dev/null and b/hxzx/image/分销体系/wechat_2025-09-08_105507_138.png differ diff --git a/hxzx/image/分销体系/微信图片_20250908111500_30_237.jpg b/hxzx/image/分销体系/微信图片_20250908111500_30_237.jpg new file mode 100644 index 0000000..6dfab45 Binary files /dev/null and b/hxzx/image/分销体系/微信图片_20250908111500_30_237.jpg differ diff --git a/hxzx/image/分销体系/微信截图_20250711150325.png b/hxzx/image/分销体系/微信截图_20250711150325.png new file mode 100644 index 0000000..b530ab0 Binary files /dev/null and b/hxzx/image/分销体系/微信截图_20250711150325.png differ diff --git a/hxzx/image/分销体系/微信截图_20250711152727.png b/hxzx/image/分销体系/微信截图_20250711152727.png new file mode 100644 index 0000000..3ff1c5a Binary files /dev/null and b/hxzx/image/分销体系/微信截图_20250711152727.png differ diff --git a/hxzx/image/图片2.png b/hxzx/image/图片2.png new file mode 100644 index 0000000..b220a8f Binary files /dev/null and b/hxzx/image/图片2.png differ diff --git a/index.md b/index.md new file mode 100644 index 0000000..1a1659e --- /dev/null +++ b/index.md @@ -0,0 +1,30 @@ +--- +# https://vitepress.dev/reference/default-theme-home-page +layout: home + +hero: + name: "回乡知识中心" + text: "探索业务与技术的深度融合" + tagline: "为回乡体系提供全面、详尽的业务系统操作指南与技术沉淀" + actions: + - theme: brand + text: 快速开始 (回乡甄选) + link: /hxzx/1.登录后台 + - theme: alt + text: 移动 App 指南 + link: /app/1.移动APP介绍 + +features: + - title: 回乡甄选 (HXZX) + details: 全面的电商后台管理系统。包含商品管理、订单处理、分销体系、积分与营销工具,以及完整的财务对账中心。 + - title: CRM & ERP 系统 + details: 核心业务支撑体系。提供精细化的客户关系管理(CRM)与企业资源规划(ERP),助力销售与供应链高效协同。 + - title: Odoo & BPM 流程 + details: 基于 Odoo 的全流程管理平台。集成采购、销售、仓库及制造流程,实现企业内部流程的闭环管理与自动化。 + - title: POS 系统 + details: 门店终端与零售管理。支持收银流程、库存盘点、电子发票及多维度的报表分析,提升一线门店运营效率。 + - title: 移动 APP 生态 + details: 包含“好生意”商家版与平台端应用。支持手机端即时处理订单、核销票券、管理积分商城及查看实时报表。 + - title: 编程与技术指南 + details: 记录系统架构设计、服务器部署(Nginx/Docker)、开发环境搭建及常见技术问题解决方案,持续沉淀知识。 +--- diff --git a/markdown-examples.md b/markdown-examples.md new file mode 100644 index 0000000..aa0d031 --- /dev/null +++ b/markdown-examples.md @@ -0,0 +1,46 @@ +# Markdown Examples + +This page demonstrates some of the built-in markdown extensions provided by VitePress. + +## Custom Containers + +::: info +This is an info box. +::: + +::: tip +This is a tip. +::: + +::: warning +This is a warning. +::: + +::: danger +This is a dangerous warning. +::: + +::: details Click to expand +This is a details container. +::: + +## Tables + +| Header 1 | Header 2 | +| -------- | -------- | +| Item 1 | Item 2 | + +## Checklists + +- [x] Item 1 +- [ ] Item 2 + +## Customizing Code Blocks + +```js {1,4-5} +// line 1 is highlighted +const x = 1 +const y = 2 +// lines 4-5 are highlighted +const z = 3 +``` diff --git a/odoo/1.Odoo简介.md b/odoo/1.Odoo简介.md new file mode 100644 index 0000000..f3c32b3 --- /dev/null +++ b/odoo/1.Odoo简介.md @@ -0,0 +1,9 @@ +--- +sidebar_position: 0 +sidebar_label: Odoo +title: Odoo +--- +## **Odoo** +Odoo 是基于 Python 写的一系列开源商业应用程序套装,前身是 OpenERP。 + +此套装可满足中小型企业的一切应用需求,例如,企业基本的进销存、采购、销售、MRP 生产制造、品保质量保障、企业招聘、员工合同、休假、午餐管理、内部论坛、车队管理、内部聊天 IM 沟通、客诉追溯管理、CRM 客户关系管理、VOIP、E-Shop 电子商务、网店、企业官方网站,财务会计、银行对账、资产管理、HR 工资管理、预算管理、WMS 仓库库存管理、POS 街边小摊、社区商店、项目管理、条码、PLM 等等 \ No newline at end of file diff --git a/odoo/10.采购及入库.md b/odoo/10.采购及入库.md new file mode 100644 index 0000000..225519a --- /dev/null +++ b/odoo/10.采购及入库.md @@ -0,0 +1,26 @@ +--- +sidebar_position: 8 +sidebar_label: 采购及入库 +title: 采购及入库 +--- + +### 采购流程 + + 打开菜单【采购】,点击“新的”按钮, 输入供应商信息,采购产品及对应数量,点击保存按钮 + +![Alt text](img/purchase1.png) + + 点击“确认订单”按钮后,再点击“接收产品”按钮进入收货入库界面 + +![Alt text](img/purchase2.png) +![Alt text](img/purchase3.png) +***** + +### 收货入库 + + 点击“设置数量”后,再点击“验证”按钮:设置数量为收货入库的数量,可根据实际收货情况调整。 + 验证收货之后若收货数量不足,可创建欠单,后续继续收货;若后续不会再有产品入库可不必创建欠单,直接完成收货。 + +![Alt text](img/purchase4.png) + +***** \ No newline at end of file diff --git a/odoo/11.销售及出库.md b/odoo/11.销售及出库.md new file mode 100644 index 0000000..e8b381d --- /dev/null +++ b/odoo/11.销售及出库.md @@ -0,0 +1,27 @@ +--- +sidebar_position: 9 +sidebar_label: 销售及出库 +title: 销售及出库 +--- + +### 销售流程 + + 打开【销售】--【订单】--【报价】菜单,点击新的按钮创建新的销售订单,输入客户,销售产品及对应数量,点击保存。 + +![Alt text](img/sale1.png) + + 点击“确认”按钮,完成销售流程;再点击右边“交货”按钮。 + +![Alt text](img/sale2.png) + +***** + +### 发货出库 + + 点击“设置数量”按钮后,再点击“验证”按钮完成销售出库流程。 + +![img.png](img/sale3.png) + + 对于门店向总仓采购的情况来说,总仓出库完成之后,门店才有收货的入口进行入库操作。 + +***** \ No newline at end of file diff --git a/odoo/12.总结销售汇总.md b/odoo/12.总结销售汇总.md new file mode 100644 index 0000000..efd307e --- /dev/null +++ b/odoo/12.总结销售汇总.md @@ -0,0 +1,70 @@ +--- +sidebar_position: 10 +sidebar_label: 总仓销售汇总 +title: 总仓销售汇总 +--- + +### 待汇总的销售记录 + “总仓汇总用户”打开菜单【销售】--【汇总采购】--【待汇总销售单】 +![img.png](img/summary1.png) + + 可以看到按“发货仓库》客户》订单日期”分组的待汇总记录,若觉得默认分组不方便操作,去掉默认筛选然后自己根据需求 + 调整分组。合理的分组可以有效的减少鼠标点击量。 + 处理汇总时需要勾选待汇总的记录,从而对这些记录进行操作。 +***** + +### 生成汇总单 + 调整右上角分组之后,根据实际情况选中需要处理的记录,点击“动作”按钮打开动作列表,再点击“生成汇总采购”,生成汇总单。 +![img.png](img/summary2.png) + + 汇总单如图所示: +![img.png](img/summary3.png) + + 需要为汇总单的每一行配置供应商和收货的仓库,对于某些产品需要分摊到多个供应商的情况, 可以点击该行最右边的“拆 + 分”按钮,拆分的主要是调整供应商,如图所示: +![img.png](img/summary4.png) + + 拆分结果图: +![img.png](img/summary5.png) +***** + +### 汇总单生成采购单 + 勾选处理完待采购的汇总单,点击“生成采购单”按钮; +![img.png](img/summary6.png) + + 可以看到按供应商区分生成的汇总采购单,需要对每一个采购单进行处理; +![img.png](img/summary7.png) + + 打开采购单,点击“打印询价”按钮,将采购详情发给供应商。然后点击“确认订单”按钮,完成采购流程; +![img.png](img/summary8.png) +***** + +### 采购单入库 + + 在采购单页面点击“接受产品”按钮或者右上角的“收货”按钮,进行收货采购入库; +![img.png](img/summary9.png) + + 根据实际收货情况输入完成数量, 点击左上角的“验证”按钮完成入库; +![img.png](img/summary10.png) + + 将所有的采购流程和收货流程完成。 +***** + +### 销售单出库 + 所有的采购流程完成之后,回到采购单列表页面,或者打开菜单【销售】--【汇总采购】--【汇总的采购单】 + ,此时状态“采购订单”表示订单已完成。 +![img.png](img/summary11.png) + + 打开每个采购订单,点击右上角的销售按钮,打开关联的销售单; +![img.png](img/summary12.png) + + 再对关联的每个销售单进行交货出库操作 +![img.png](img/summary13.png) +![img.png](img/summary14.png) + + 打开交货单输入完成数量,点击验证按钮,完成出库操作。 +![img.png](img/summary15.png) + + 可以打开【库存】菜单,查看对应仓库的“收货”和“交货”的待处理作业,对未完成的进行处理即可。 +![img.png](img/summary16.png) +***** \ No newline at end of file diff --git a/odoo/13.库存盘点.md b/odoo/13.库存盘点.md new file mode 100644 index 0000000..d1ef1af --- /dev/null +++ b/odoo/13.库存盘点.md @@ -0,0 +1,60 @@ +--- +sidebar_position: 11 +sidebar_label: 库存盘点 +title: 库存盘点 +--- + +### 盘点菜单地址 + 打开菜单【库存】--【作业】--【库存盘点】菜单 +![img.png](img/inv1.png) + + 此菜单可以对可库存产品进行库存盘点,按照仓库或产品类别来筛选查看所有可库存产品的库存请况。 + 打开菜单默认展示有库存的产品,勾选“包含零库存”,可以看到对应仓库里所有的可库存产品。 + +***** + +### 库存盘点 + 1. 勾选需要盘点的产品,点击左上角的“生成盘点单”按钮 + +![img.png](img/inv2.png) + +![img.png](img/inv3.png) + + - 盘点类型: 期初/期末,最初始导入数据当作期初,后续盘点当作期末,期初只有一次,系统无限制; + - 期间:是起始到截止日期的时间范围,表示盘点属于这个时间范围,此次盘点保存之后所属的计价时间记为截止日期。 + 再次页面重复生成盘点单,若之前存在未处理完的盘点单, 会进入之前未处理完的盘点记录。 +---- + + 2. 点击“确认”按钮生成盘点单 + +![img.png](img/inv4.png) + + 打开盘点单可以看到需要盘点的产品范围, 以及在所选区间的时间范围之内的系统库存数。 +---- + + 3. 点击“下载”按钮,下载盘点表,进行线下盘点。 + +![img.png](img/inv5.png) + + 盘点表头如图所示,导入盘点只需将盘点库存维护好即可。 + 值得主义的是,有包装的盘点,数量是包装数量,无包装的盘点,数量是单位数量。 + 盘点结果如下: +![img.png](img/inv6.png) + + 4. 点击上传按钮,打开上传文件页面, 点击此页面的“上传文件”按钮进行上传。 +![img.png](img/inv7.png) + + 有效字段是“ID”和“盘点数量”,如下图所示,匹配上即可,再点击左上角“导入”按钮。 +![img.png](img/inv8.png) + + 5. 导入完成之后,点击左上角的“提交盘点”按钮,输入一些备注信息 +![img.png](img/inv9.png) + + 这是提交之后的盘点单, 可以在【盘点记录】菜单看到生成的盘点单,可以在【待审核盘点】菜单下看到需要审核的盘点单 +![img.png](img/inv10.png) + + 6. 盘点单审核,需要选择审核意见:同意/不同意,不同意时需要填写不同意的“说明”, 点击“保存”按钮 +![img.png](img/inv11.png) + + 7. 审核同意之后再点击“保存盘点”按钮 +![img.png](img/inv12.png) \ No newline at end of file diff --git a/odoo/14.月末成本结算.md b/odoo/14.月末成本结算.md new file mode 100644 index 0000000..c4219e0 --- /dev/null +++ b/odoo/14.月末成本结算.md @@ -0,0 +1,34 @@ +--- +sidebar_position: 12 +sidebar_label: 月末成本结算 +title: 月末成本结算 +--- + +## 月末成本结算 + 说明:月末成本结算主要的作用是结算的时刻计算产品的上期平均单价, 并用计算出的单价计算出上期出入库的成本 + +### 结算的范围 + 会将产品的“产品类型”属性中的‘成本方法’等于“月末平均成本”的产品进行结算,如下图所示 + +![Alt text](img/set1.png) + +### 菜单地址 + 【库存】- 【作业】 - 【月度成本核算】 +![Alt text](img/set2.png) + +### 结算操作 +![Alt text](img/set3.png) + + 点击右上角的“月度成本核算”按钮,输入“期间”和“备注”信息,点击运行结算 + +![Alt text](img/set4.png) + + 1. 可以有列表和透视表两种展示形式可选; + 2. 表头字段可以根据需求新增; + 3. 可以打开计价详情页面。 + +### 保存核算结果 + +![Alt text](img/set5.png) + + 点击“保存核算结果”按钮,将核算的产品单价写道产品上及上期非采购出入库的计价结果写到计价表上 \ No newline at end of file diff --git a/odoo/15.搜索视图.md b/odoo/15.搜索视图.md new file mode 100644 index 0000000..8d7554e --- /dev/null +++ b/odoo/15.搜索视图.md @@ -0,0 +1,60 @@ +--- +sidebar_position: 13 +sidebar_label: 搜索视图 +title: 搜索 +--- + + +## 这里介绍odoo自带的搜索视图 + 以采购表单页面为参考来介绍 + +![Alt text](img/sc1.png) + + 搜索视图分为四部分: + 1. 关键字搜索,即截图中输入框; + 2. 预定义筛选,即截图红框中的筛选; + 3. 分组,即截图红框中的分组; + 4. 收藏,主要作用是保存预定义的筛选,可以供下次或其他人使用。 + +### 关键字搜索 + +![Alt text](img/sc2.png) + + 如上图所示,在最上方搜索输入框输入“糖”,匹配“产品”名字包含糖的采购单会被过滤出来, + 同样的可以按关键字搜索供应商,或按编号搜索具体的采购单 + +![Alt text](img/sc3.png) + +![Alt text](img/sc4.png) + + 上图展示了产品包含“糖”且订单号包含“007”的采购单的过滤结果 + + +### 筛选 +![Alt text](img/sc5.png) + + 筛选为一些系统预定义的选择器,可以根据实际请况使用。值得说的是,预定义的筛选器之间存在分隔符, + 同一个分隔符之间的选项为‘或关系’,不同分隔符内的选项之间的关系是‘且关系’。 +#### 或关系 + 如下图所示 +![Alt text](img/sc6.png) + +#### 且关系 + 如下图所示 +![Alt text](img/sc7.png) + +### 分组 +![Alt text](img/sc8.png) + + 如上图所示,将采购单按供应商分组,也可以支持多层分组 +![Alt text](img/sc9.png) + +### 收藏 + 可以将设置的搜索条件保存下来,可以将它保存为默认打开,或与所有用户共享。 + 1. 默认打开的情况下, 打开页面就默认添加了这个筛选; + 2. 与所有用户共享是指保存下搜索条件,下次打开此页面或其他用户打开此页面可以直接在收藏栏下找到并使用该筛选。 + +![Alt text](img/sc10.png) + + 保存为“与所有用户共享”的搜索条件可以在收藏栏下找到,直接选中就可以得到上面设置的搜索条件的结果,避免重复操作 +![Alt text](img/sc11.png) \ No newline at end of file diff --git a/odoo/16.客户导入.md b/odoo/16.客户导入.md new file mode 100644 index 0000000..3e00cf9 --- /dev/null +++ b/odoo/16.客户导入.md @@ -0,0 +1,29 @@ +--- +sidebar_position: 14 +sidebar_label: 客户导入 +title: 客户导入 +--- + +## 客户导入 + 导入说明: + 1. 通过“公司类别”字段来区分个人客户和公司客户。 + 2. 可以给个人客户可以添加所属公司,因此导入时需要先导入公司类型的客户,再导入个人客户。 + 3. 称谓字段,系统默认有:先生、博士、女士、小姐、教授,可以在“联系人-称谓-联系人称谓”维护。 + 4. 标签字段,可以在“联系人-称谓-联系人标签”菜单下维护标签,可以给联系人贴标签。 + 5. 待办事项的活动类型,系统默认有:Eamil、电话、会议、加售订单、待办、上传单据,可以在 + “CRM-配置-活动类型”菜单下面修改或新增可选项。 +---- + + 示例表头如下 +![Alt text](img/custm.png) + + 打开“联系人-联系人-客户”菜单,打开“导入记录”页面,如下图所示 +![Alt text](img/custm1.png) + + 点击上传文件按钮,选择客户列表进行上传,上传的部分字段需要手动匹配,如下图: +![Alt text](img/custm2.png) + + 结果如下图: +![Alt text](img/custm3.png) + + 点击左上角导入按钮即可 \ No newline at end of file diff --git a/odoo/2.登录.md b/odoo/2.登录.md new file mode 100644 index 0000000..4bb4568 --- /dev/null +++ b/odoo/2.登录.md @@ -0,0 +1,13 @@ +--- +sidebar_position: 1 +sidebar_label: 登录 +title: 登录 +--- + +### 打开网址, 输入账号密码登录 + +打开 网站[odoo](http://bpm.lotus-wallet.com/),输入账号密码后登录。 + +![login](./img/login.png) + +***** \ No newline at end of file diff --git a/odoo/3.用户管理.md b/odoo/3.用户管理.md new file mode 100644 index 0000000..9bb125c --- /dev/null +++ b/odoo/3.用户管理.md @@ -0,0 +1,53 @@ +--- +sidebar_position: 2 +sidebar_label: 用户管理 +title: 用户及权限管理 +--- + +### 创建用户 + + 菜单地址: 【设置】--【用户&公司】--【用户】,打开菜单之后可以看到用户列表, 点击“新的”按钮创建用户; + +![img.png](img/user1.png) + +***** + +#### 1. 创建账号 + + 输入“名称”和“Email地址”创建用户,点击左上角倒数第二个图标进行保存, + 其中“Email地址”为新用户的登录账号, + “Email地址”不一定是真的邮箱地址也可以是姓名; + +![Alttext](img/user2.png) + +***** + +#### 2. 更新密码 + + 点击右上角的“动作”按钮,选中下拉菜单的’更改密码‘选项输入新用户的密码; + 建议新用户密码及时给到新用户,密码设置为新用户的身份证后六位或手机号; + +![Alttext](img/user3.png) + +***** + +### 权限配置 + +#### 1. 门店用户权限 + + 需要给给门店用户配置四个权限: + 采购--管理员; + 销售--管理员; + 库存--管理员; + 制造--管理员; +![Alttext](img/user4.png) + +***** + +#### 2. 总仓汇总用户权限 + + 配置总仓汇总权限,只需要勾选“销售汇总”--“处理销售汇总”,然后点击左上角倒数第二个图标进行保存即可。 + +![Alttext](img/user5.png) + +***** \ No newline at end of file diff --git a/odoo/4.数据导入导出.md b/odoo/4.数据导入导出.md new file mode 100644 index 0000000..a99986a --- /dev/null +++ b/odoo/4.数据导入导出.md @@ -0,0 +1,82 @@ +--- +sidebar_position: 3 +sidebar_label: 数据导入 +title: 产品数据导入 +--- + +### 产品类别导入 + + 进入【库存】--【配置】-- 【产品】-- 【产品类别】菜单,点击收藏--导入记录,点击上传文件, 如图所示: + +![Alt text](img/import1.png) + + 产品类别导入表头请按以下来设置 + +| 名称 | 上级品类 | +|:----:|:--------------:| +| 花果茶类 | All / Saleable | +| 花果茶类 | All / Saleable | +| 日用品 | All / Expenses | +| ... | ... | + +***** + +### 产品计量单位导入 + + 进入菜单【销售】--【配置】--【计量单位】--【计量单位】,点击收藏--导入记录,点击上传文件; + 若无法找到计量单位菜单,请联系管理员; + +![Alt text](img/import2.png) + + 产品计量单位请按下面的表头来导入 + +| 类别 | 计量单位 | 类型 | 比例 | +|:---:|:----:|:--------:|:-----:| +| 单位 | 个 | 小于参照计量单位 | 1 | +| 重量 | 斤 | 小于参照计量单位 | 2 | +| 单位 | 打 | 大于参照单位 | 0.083 | +| ... | ... | + + 特别说明: + 1. 导入的单位存在分类与单位换算,每个类别的单位存在一个“这个类别的参照计量单位”, 根据参考单位来换算比例; + 2. 请不要将无法定量的包裹(如:包、盒、袋、瓶、桶、块、箱、条、颗、盆、套、捆、 叠、卷等)设置成单位,可 + 以用重量,体积等单位来替代包裹,后续可以设置包裹来对这些非标准的单位进行实现,并且也不会影响系统使用; + 3. 导入的产品清单为原材料,在后续门店使用时是需要使用该原材料来生成销售产品套件清单, 套件清单为合成销售 + 产品的原材料列表,需要原材料的单位可以定量,例如:一杯珍珠奶茶 由20g糖、30g珍珠、40ml牛奶这样的套件清单组 + 成,那么像糖、珍珠、牛奶这些原材料的单位一定是可以定量的g或ml等。 + +***** + +### 产品导入 + + 进入菜单【库存】--【产品】--【产品】,点击收藏--导入记录,点击上传文件, 如图所示: + +![Alt text](img/import3.png) + + 产品请按下面的表头来导入 + +| 内部参考 | 产品类别 | 产品类型 | 名称 | 采购单位 | 计量单位 | 说明 | +|:------:|:--------------------:|:----------------:|:--------------------:|:----:|:----:|:-------:| +| 104001 | All / Expenses / 调科类 | Storable Product | 肉桂粉 | ml | ml | 380ml/瓶 | +| 203002 | All / Expenses / 吸管类 | Storable Product | logo纸质细吸管23cm(用完不购买) | 支 | 支 | 100支/包 | +| 205017 | All / Expenses / 包材类 | Storable Product | 一次性木勺16cm | 个 | 个 | 100个/包 | +| ... | ... | ... | | | | | + +***** + +### 产品包装导入 + + 进入菜单【库存】--【配置】--【产品】--【产品包装】,点击收藏--导入记录,点击上传文件, 如图所示: + +![Alt text](img/import4.png) + + 产品包装请按下面的表头来导入 + +| 产品 | 包含的数量 | 产品包装 | +|:----------:|:-----:|:-------:| +| 粗辣椒王片 | 10 | 一袋10斤 | +| 冷泡茶茶杯500ml | 500 | 一箱五百个 | +| 冷泡茶茶杯500ml | 200 | 一小箱200个 | +| ... | ... | | + +***** \ No newline at end of file diff --git a/odoo/5.门店及SKU同步.md b/odoo/5.门店及SKU同步.md new file mode 100644 index 0000000..402542f --- /dev/null +++ b/odoo/5.门店及SKU同步.md @@ -0,0 +1,30 @@ +--- +sidebar_position: 4 +sidebar_label: 门店及sku同步 +title: 门店及sku同步 +--- + +### 门店同步 + + 将回乡销售系统的商户数据同步到odoo的公司,将odoo系统默认的的仓库设置为总公司或者叫总仓,按照总仓为多公司的最上 + 级,即将商户的上级公司设置为总仓,然后将门店的上级公司设置成对应的商户,这样子来实现odoo多公司的层级关系,同步过 + 程全部代码实现,完全不需要人为介入。 + 由于商户及门店数据会变动,所以增加了定时任务每日跑一遍数据同步操作,以确保两个系统之间数据的准确性。在【设置】 + --【技术】--【自动化】--【安排的动作】菜单下可以看到实现的定时任务脚本“回乡商户及门店”。 + +![Alt text](img/store1.png) + +***** + +### 门店产品及sku同步 + + 销售系统的订单产品是分产品和加了属性的产品sku,实现产品同步实际上是把回乡产品和odoo产品一对一关联起来,然后回乡 + sku和odoo产品变体一对一关联起来,不同的门店有不同的产品和sku,所以把对接生成的产品和变体都加上公司属性,让产品专属 + 于某一个子公司,达到公司产品私有的目的。 + 回乡产品及sku的变动是非常频繁的,odoo系统在实现回乡产品对接的时候实现了定时任务“回乡产品”每日运行一次,此外在同 + 步销售订单或者查询sku库存时,当查询的产品还没同步到odoo系统中时,odoo系统会调用回乡产品同步接口来同步产品数据,然 + 后再查对应产品的库存,或销售单。 + +![Alt text](img/store2.png) + +***** \ No newline at end of file diff --git a/odoo/6.BOM物料清单.md b/odoo/6.BOM物料清单.md new file mode 100644 index 0000000..2afccd7 --- /dev/null +++ b/odoo/6.BOM物料清单.md @@ -0,0 +1,71 @@ +--- +sidebar_position: 5 +sidebar_label: BOM +title: BOM +--- + +## BOM + + BOM分为: 套件清单和物料清单 + 套件清单是在销售奶茶或面包时,直接出库其原材料时用到的 + 物料清单是指制造半成品时用到的,会涉及到到原材料的出库和半成品的入库 + +### 套件清单 + 可以简单理解下套件清单的工作原理,但后续不再需要手动配置套件清单,使用下面的BOM模板就是实现想要达成的效果: +[BOM模板](#bom_template) +#### `为什么用套件清单` + + 可以在【销售】--【产品】--【产品】菜单下看到不同公司的销售产品是不同的,这些可出售的产品都是由原材料简单加 + 工而成,我们不用复杂的制造流程来监控生产过程。 + 直接给每个可销售产品配置一个套件清单,或者给每个产品变体(sku)配置相应的套件清单,即可替代销售产品的加工 + 过程。 + 套件清单表明该产品是由哪些原材料组成的,而在销售的过程中,实际出库的也是按照套件清单里的原材料来出库的。 + +#### `套件清单配置` + + 打开【销售】--【产品】--【套件清单】菜单,点击新的按钮,输入产品、产品变体、数量、组件明细(产品,数量,计 + 量单位),如图所示: + +![Alt text](img/bom1.png) + + 注意,产品的组成组件应遵循以下原则: + 1. 该套件清单的套件产品数量尽量设置为1,即组成一件该产品需要用到组件的多少原材料; + 2. 可调整组件的可换算单位,来保证生产一件该产品用到的组件的数量更精确; + +***** + +### 物料清单 + 物料清单是生产某个产品时需要用到的原材料配方。 + +#### `设置物料清单` + 菜单地址在【制造】--【产品】--【物料清单】,注意在配置物料清单时,请将“BOM 类型”设置为“制造此产品”, + 其它配置和"套件清单配置"的配置基本一致。 +[套件清单配置](#phantom) + +## BOM模板 + BOM模板的作用:当门店sku品类过多时,为每个sku配置一个套件清单已经不切实际,因此我们改到在产品那里关联 + 到bom模板,作为默认的bom模板,当产品不同属性使用不同的Bom模板时,可以在产品属性那里单独配置bom模板, + 配置完保存就会生成对应的“套件清单”, 可以在套件清单的菜单下面看到新生成的记录。在销售出库时,就会使用该“套件 + 清单”进行出库。 + 所需要做的事:1. 上传bom模板;2. 产品关联bom模板,使用不同bom模板的sku须在产品属性那里关联bom模板。 + +### BOM模板设置 + 打开菜单【制造】-【产品】-【BOM模板】,在此菜单下新建BOM模板,需要注意的是,“模板名”和“编号”必填,其它的 + 内容参考套件清单来配置。 +[套件清单配置](#phantom) +![Alt text](img/bom2.png) + +### 产品及sku配置BOM模板 + 打开门店端【销售】-【产品】-【产品】菜单,选择需要配置BOM模板的产品,配置“模板bom”,如下图: +![Alt text](img/bom3.png) + + 打开上图中的温度属性的“配置”页面,选择需要配置bom的属性值打开之后配置BOM,如下所示 +![Alt text](img/bom4.png) + +![Alt text](img/bom5.png) + + 对需要加冰属性配置不同的bom表,保存之后会生成对应类型的bom,可以在“套件清单”或“物料清单”菜单下看到。 +![Alt text](img/bom6.png) +![Alt text](img/bom7.png) + + 图中可以看到,按模板自动生成的bom,同时新生成的bom会自动生成编号。 \ No newline at end of file diff --git a/odoo/7.自动补货设置.md b/odoo/7.自动补货设置.md new file mode 100644 index 0000000..db2cdd9 --- /dev/null +++ b/odoo/7.自动补货设置.md @@ -0,0 +1,30 @@ +--- +sidebar_position: 5 +sidebar_label: 门店自动补货设置 +title: 自动补货 +--- + +### 设置自动补货的原因 + + 门店需要确保仓库每日库存维持在一个稳定的水平,自动补货规则可以维护原材料的最小库存数及最大数量,当门店仓库 + 库存数小于最小库存数量时,触发自动补货规则,将库存数量补货到最大数量,因此门店配置了产品的自动补货规则之后可 + 以减少每日手动补货的工作量。每个门店都可以设置自己单独的自动补货规则,不会造成混乱。 + 可以在【库存】--【产品】--【产品菜单】找到需要配置自动补货的产品,点击重订货规则,点击新建,如下图所示: + +![Alt text](img/op.png) +**** + +### 自动补货设置 + + 需要设置的内容: + 位置: 默认即可,是指补货单收货的位置; + 首选路线:选择"购买"; + 供应商:别选供应商,门店自动补货规则自动触发供应商为总仓; + +| 不选供应商 | 选择了供应商 | +|:----------------------:|:-------------:| +| 使用默认的供应商向上级公司做集团内部采购申请 | 使用选择的供应商做采购申请 | + +![Alt text](img/op2.png) + +***** \ No newline at end of file diff --git a/odoo/8.库存仓库设置.md b/odoo/8.库存仓库设置.md new file mode 100644 index 0000000..e5bfd83 --- /dev/null +++ b/odoo/8.库存仓库设置.md @@ -0,0 +1,16 @@ +--- +sidebar_position: 6 +sidebar_label: 总仓仓库设置 +title: 仓库设置 +--- + +### 设置总仓多仓库 + + 打开菜单【库存】--【配置】--【仓库管理】--【仓库】,点击新的按钮进行新增操作; + +![Alt text](img/wh.png) + + 总仓在设置仓库的时候需要设置“仓库”、“缩写”、“从此仓调货的子公司”这三个字段,其中“缩写”应确保唯一性, + “从此仓调货的子公司”是指这些子仓库向总仓做采购申请的时候,总仓发货的仓库为本仓库。 + +***** \ No newline at end of file diff --git a/odoo/9.供应商设置.md b/odoo/9.供应商设置.md new file mode 100644 index 0000000..8dd7aa8 --- /dev/null +++ b/odoo/9.供应商设置.md @@ -0,0 +1,14 @@ +--- +sidebar_position: 7 +sidebar_label: 供应商设置 +title: 供应商设置 +--- + +### 供应商设置 + 打开菜单【联系人】,点击新的按钮,输入基础信息即可。 +![Alt text](img/partner.png) + + 其中需要说明的是,在“销售和采购”子页面,有个“供货的仓库”字段,需要配置该供应商的供货仓库字段,表明该供应商为 + 哪些仓库供货。此字段对总仓采购汇总起到作用。 + +***** \ No newline at end of file diff --git a/odoo/Git.log b/odoo/Git.log new file mode 100644 index 0000000..538124c --- /dev/null +++ b/odoo/Git.log @@ -0,0 +1,6075 @@ +2025-07-10 12:05:16.199 [info] [main] 日志级别: Info +2025-07-10 12:05:16.199 [info] [main] 正在验证在以下位置找到的 git: "C:\Program Files\Git\cmd\git.exe" +2025-07-10 12:05:17.162 [info] [main] 使用来自 "C:\Program Files\Git\cmd\git.exe" 的 git "2.47.0.windows.1" +2025-07-10 12:05:17.162 [info] [Model][doInitialScan] Initial repository scan started +2025-07-10 12:05:17.226 [info] > git rev-parse --show-toplevel [55ms] +2025-07-10 12:05:17.226 [info] fatal: not a git repository (or any of the parent directories): .git +2025-07-10 12:05:17.228 [info] [Model][doInitialScan] Initial repository scan completed - repositories (0), closed repositories (0), parent repositories (0), unsafe repositories (0) +2025-07-10 13:57:48.614 [info] > git rev-parse --show-toplevel [997ms] +2025-07-10 13:57:48.614 [info] fatal: not a git repository (or any of the parent directories): .git +2025-07-10 14:31:05.411 [info] [GitProtocolHandler][handleUri] URI:(vscode://vscode.git/clone?url%3Dhttps%3A%2F%2Fgit.lotus-wallet.com%2FLoki%2Fzsw-docs.git) +2025-07-10 14:31:05.419 [info] [GitProtocolHandler][clone] Executing git.clone for https://git.lotus-wallet.com/Loki/zsw-docs.git +2025-07-10 14:31:39.122 [info] > git clone https://git.lotus-wallet.com/Loki/zsw-docs.git c:\Users\zsw\Desktop\zsw-docs --progress [27546ms] (cancelled) +2025-07-10 14:32:31.278 [info] [GitProtocolHandler][handleUri] URI:(vscode://vscode.git/clone?url%3Dhttps%3A%2F%2Fgit.lotus-wallet.com%2FLoki%2Fzsw-docs.git) +2025-07-10 14:32:31.281 [info] [GitProtocolHandler][clone] Executing git.clone for https://git.lotus-wallet.com/Loki/zsw-docs.git +2025-07-10 14:36:21.137 [info] > git clone https://git.lotus-wallet.com/Loki/zsw-docs.git c:\Users\zsw\Desktop\zsw-docs-1 --progress [224822ms] (cancelled) +2025-07-10 14:37:04.706 [info] [main] 日志级别: Info +2025-07-10 14:37:04.706 [info] [main] 正在验证在以下位置找到的 git: "C:\Program Files\Git\cmd\git.exe" +2025-07-10 14:37:04.706 [info] [main] 使用来自 "C:\Program Files\Git\cmd\git.exe" 的 git "2.47.0.windows.1" +2025-07-10 14:37:04.706 [info] [Model][doInitialScan] Initial repository scan started +2025-07-10 14:37:04.706 [info] > git rev-parse --show-toplevel [132ms] +2025-07-10 14:37:04.859 [info] > git rev-parse --git-dir --git-common-dir [150ms] +2025-07-10 14:37:04.868 [info] [Model][openRepository] Opened repository (path): c:\Users\zsw\Desktop\zsw-docs +2025-07-10 14:37:04.868 [info] [Model][openRepository] Opened repository (real path): c:\Users\zsw\Desktop\zsw-docs +2025-07-10 14:37:04.872 [info] [Model][doInitialScan] Initial repository scan completed - repositories (1), closed repositories (0), parent repositories (0), unsafe repositories (0) +2025-07-10 14:37:04.883 [warning] [Git][getHEAD] Failed to parse HEAD file: Repository is using reftable format. +2025-07-10 14:37:04.954 [info] > git config --get commit.template [75ms] +2025-07-10 14:37:04.954 [info] > git symbolic-ref --short HEAD [70ms] +2025-07-10 14:37:04.954 [info] fatal: No such ref: HEAD +2025-07-10 14:37:05.013 [info] > git rev-parse HEAD [57ms] +2025-07-10 14:37:05.013 [info] fatal: ambiguous argument 'HEAD': unknown revision or path not in the working tree. +Use '--' to separate paths from revisions, like this: +'git [...] -- [...]' +2025-07-10 14:37:05.071 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [53ms] +2025-07-10 14:37:05.072 [info] > git status -z -uall [56ms] +2025-07-10 14:37:05.132 [info] > git symbolic-ref --short HEAD [55ms] +2025-07-10 14:37:05.132 [info] fatal: No such ref: HEAD +2025-07-10 14:37:05.135 [info] > git config --get commit.template [56ms] +2025-07-10 14:37:05.188 [info] > git rev-parse HEAD [55ms] +2025-07-10 14:37:05.188 [info] fatal: ambiguous argument 'HEAD': unknown revision or path not in the working tree. +Use '--' to separate paths from revisions, like this: +'git [...] -- [...]' +2025-07-10 14:37:05.251 [info] > git status -z -uall [61ms] +2025-07-10 14:37:05.252 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 14:38:03.775 [info] > git check-ignore -v -z --stdin [75ms] +2025-07-10 14:38:04.970 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 14:38:05.144 [info] > git symbolic-ref --short HEAD [58ms] +2025-07-10 14:38:05.147 [info] > git config --get commit.template [58ms] +2025-07-10 14:38:05.202 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 14:38:05.204 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:38:05.257 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 14:38:05.321 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [60ms] +2025-07-10 14:38:05.806 [info] > git status -z -uall [547ms] +2025-07-10 14:38:05.865 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 14:38:05.878 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 14:38:05.935 [info] > git config --get --local branch.master.vscode-merge-base [54ms] +2025-07-10 14:38:05.935 [warning] [Git][config] git config failed: Failed to execute git +2025-07-10 14:38:05.996 [info] > git reflog master --grep-reflog=branch: Created from *. [59ms] +2025-07-10 14:38:06.052 [info] > git symbolic-ref --short refs/remotes/origin/HEAD [53ms] +2025-07-10 14:38:06.111 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/origin/master refs/remotes/origin/master [57ms] +2025-07-10 14:38:06.170 [info] > git config --add --local branch.master.vscode-merge-base origin/master [56ms] +2025-07-10 14:38:06.249 [info] > git config --get commit.template [74ms] +2025-07-10 14:38:06.250 [info] > git symbolic-ref --short HEAD [78ms] +2025-07-10 14:38:06.306 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [54ms] +2025-07-10 14:38:06.308 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:38:06.360 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 14:38:06.426 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [60ms] +2025-07-10 14:38:06.912 [info] > git status -z -uall [549ms] +2025-07-10 14:38:06.977 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [61ms] +2025-07-10 14:38:06.980 [info] > git merge-base refs/heads/master refs/remotes/origin/master [61ms] +2025-07-10 14:38:07.037 [info] > git config --get --local branch.master.vscode-merge-base [58ms] +2025-07-10 14:38:07.040 [info] > git diff --name-status -z --diff-filter=ADMR 84e81a2b2f02798acbb48e1045be9ddac82d8632...refs/remotes/origin/master [58ms] +2025-07-10 14:38:07.091 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/origin/master refs/remotes/origin/master [52ms] +2025-07-10 14:38:07.909 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 14:38:08.580 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 14:38:09.859 [info] > git ls-files --stage -- blog/2019-05-29-long-blog-post.md [69ms] +2025-07-10 14:38:09.865 [info] > git show --textconv :blog/2019-05-29-long-blog-post.md [78ms] +2025-07-10 14:38:09.931 [info] > git cat-file -s 26ffb1b1f65347e4f834542113930327a6ea5e79 [69ms] +2025-07-10 14:38:10.985 [info] > git ls-files --stage -- blog/2019-05-28-first-blog-post.md [60ms] +2025-07-10 14:38:10.988 [info] > git show --textconv :blog/2019-05-28-first-blog-post.md [66ms] +2025-07-10 14:38:11.041 [info] > git cat-file -s 02f3f81bd27b49aff20ffe18fcf62452df9e11ca [54ms] +2025-07-10 14:38:16.376 [info] > git ls-files --stage -- .gitignore [55ms] +2025-07-10 14:38:16.378 [info] > git show --textconv :.gitignore [59ms] +2025-07-10 14:38:16.435 [info] > git cat-file -s b68152863b898067904ae769c86d10935119de91 [57ms] +2025-07-10 14:38:17.888 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 14:38:25.389 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 14:38:26.179 [info] > git check-ignore -v -z --stdin [62ms] +2025-07-10 14:38:27.014 [info] > git show --textconv :src/components/HomepageFeatures/index.js [215ms] +2025-07-10 14:38:27.015 [info] > git ls-files --stage -- src/components/HomepageFeatures/index.js [214ms] +2025-07-10 14:38:27.139 [info] > git cat-file -s 06b51ccb27640a494756ed920a5faadb4e6ae881 [122ms] +2025-07-10 14:38:27.738 [info] > git show --textconv :src/components/HomepageFeatures/styles.module.css [148ms] +2025-07-10 14:38:27.746 [info] > git ls-files --stage -- src/components/HomepageFeatures/styles.module.css [146ms] +2025-07-10 14:38:27.826 [info] > git cat-file -s b248eb2e5dee2c37f58ab867ab87be47ef804386 [76ms] +2025-07-10 14:38:29.013 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 14:38:29.427 [info] > git ls-files --stage -- src/css/custom.css [60ms] +2025-07-10 14:38:29.430 [info] > git show --textconv :src/css/custom.css [66ms] +2025-07-10 14:38:29.490 [info] > git cat-file -s 2bc6a4cfdef4e06006b9a2501525889aa5e597c9 [60ms] +2025-07-10 14:38:30.847 [info] > git check-ignore -v -z --stdin [52ms] +2025-07-10 14:38:31.253 [info] > git ls-files --stage -- src/pages/index.js [61ms] +2025-07-10 14:38:31.255 [info] > git show --textconv :src/pages/index.js [66ms] +2025-07-10 14:38:31.312 [info] > git cat-file -s 06d0e9aa7adc72561e65657ec86eb051d4bb7aa5 [57ms] +2025-07-10 14:38:33.996 [info] > git show --textconv :src/pages/index.module.css [60ms] +2025-07-10 14:38:33.997 [info] > git ls-files --stage -- src/pages/index.module.css [59ms] +2025-07-10 14:38:34.054 [info] > git cat-file -s 9f71a5da775bd99379fa5c4d5bb73dc816d78bdd [54ms] +2025-07-10 14:38:35.005 [info] > git ls-files --stage -- src/pages/markdown-page.md [54ms] +2025-07-10 14:38:35.008 [info] > git show --textconv :src/pages/markdown-page.md [59ms] +2025-07-10 14:38:35.067 [info] > git cat-file -s 9756c5b6685a7fa67f41e11bc2cb6b990c2b12b2 [60ms] +2025-07-10 14:38:36.842 [info] > git ls-files --stage -- static/.nojekyll [56ms] +2025-07-10 14:38:36.844 [info] > git show --textconv :static/.nojekyll [60ms] +2025-07-10 14:38:36.899 [info] > git cat-file -s e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 [55ms] +2025-07-10 14:38:37.600 [info] > git check-ignore -v -z --stdin [55ms] +2025-07-10 14:38:43.910 [info] > git check-ignore -v -z --stdin [58ms] +2025-07-10 14:38:44.649 [info] > git check-ignore -v -z --stdin [51ms] +2025-07-10 14:38:45.818 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 14:38:46.579 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 14:38:51.255 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 14:39:03.350 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 14:39:03.951 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [62ms] +2025-07-10 14:39:03.954 [info] > git show --textconv :docs/hxzx/分销体系.md [68ms] +2025-07-10 14:39:04.012 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [58ms] +2025-07-10 14:39:04.907 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 14:39:12.444 [info] > git check-ignore -v -z --stdin [51ms] +2025-07-10 14:39:34.109 [info] > git show --textconv :docs/hxzx/登录 [59ms] +2025-07-10 14:39:34.112 [info] > git ls-files --stage -- docs/hxzx/登录 [61ms] +2025-07-10 14:39:34.170 [info] > git hash-object -t tree /dev/null [58ms] +2025-07-10 14:39:34.170 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:39:34.171 [info] > git hash-object -t tree /dev/null [56ms] +2025-07-10 14:39:34.171 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:39:34.409 [info] > git check-ignore -v -z --stdin [58ms] +2025-07-10 14:39:34.954 [info] > git config --get commit.template [56ms] +2025-07-10 14:39:34.955 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-10 14:39:35.012 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 14:39:35.014 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:39:35.067 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 14:39:35.126 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [54ms] +2025-07-10 14:39:35.612 [info] > git status -z -uall [543ms] +2025-07-10 14:39:49.916 [info] > git check-ignore -v -z --stdin [63ms] +2025-07-10 14:39:50.724 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 14:39:51.470 [info] > git check-ignore -v -z --stdin [52ms] +2025-07-10 14:39:54.736 [info] > git show --textconv :docs/bxgo/商品管理/_category_.json [62ms] +2025-07-10 14:39:54.781 [info] > git ls-files --stage -- docs/bxgo/商品管理/_category_.json [60ms] +2025-07-10 14:39:54.841 [info] > git cat-file -s 9038f98f8e26d700c7bb5eff9ebcfe83fb0e4c5d [58ms] +2025-07-10 14:39:55.892 [info] > git ls-files --stage -- docs/bxgo/商品管理/管理商品.md [56ms] +2025-07-10 14:39:55.895 [info] > git show --textconv :docs/bxgo/商品管理/管理商品.md [61ms] +2025-07-10 14:39:55.949 [info] > git cat-file -s 06c065d07716033ac3e709ab01d5a44a5228e505 [55ms] +2025-07-10 14:40:07.191 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/bxgo/商品管理/管理商品.md [63ms] +2025-07-10 14:40:24.458 [info] > git ls-files --stage -- docs/bxgo/1、登录系统.md [56ms] +2025-07-10 14:40:24.461 [info] > git show --textconv :docs/bxgo/1、登录系统.md [62ms] +2025-07-10 14:40:24.517 [info] > git cat-file -s dcc83ab8f7bf58fc8c20a32e8243a563edf86f19 [57ms] +2025-07-10 14:40:29.683 [info] > git ls-files --stage -- docs/bxgo/2、首页.md [54ms] +2025-07-10 14:40:29.686 [info] > git show --textconv :docs/bxgo/2、首页.md [59ms] +2025-07-10 14:40:29.739 [info] > git cat-file -s a509c1c2dcdba1ce221eaf48221cc8fd45302e30 [53ms] +2025-07-10 14:40:31.521 [info] > git ls-files --stage -- docs/bxgo/1、登录系统.md [72ms] +2025-07-10 14:40:31.524 [info] > git show --textconv :docs/bxgo/1、登录系统.md [77ms] +2025-07-10 14:40:31.581 [info] > git cat-file -s dcc83ab8f7bf58fc8c20a32e8243a563edf86f19 [58ms] +2025-07-10 14:40:33.959 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/bxgo/1、登录系统.md [59ms] +2025-07-10 14:41:05.450 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [74ms] +2025-07-10 14:41:05.452 [info] > git show --textconv :docs/hxzx/分销体系.md [80ms] +2025-07-10 14:41:05.505 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [53ms] +2025-07-10 14:41:17.154 [info] > git check-ignore -v -z --stdin [52ms] +2025-07-10 14:41:26.292 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [56ms] +2025-07-10 14:41:26.295 [info] > git show --textconv :docs/hxzx/分销体系.md [61ms] +2025-07-10 14:41:26.351 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [56ms] +2025-07-10 14:42:34.119 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [60ms] +2025-07-10 14:42:34.121 [info] > git show --textconv :docs/hxzx/分销体系.md [65ms] +2025-07-10 14:42:34.176 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [54ms] +2025-07-10 14:42:34.886 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 14:42:50.769 [info] > git show --textconv :docs/hxzx/分销体系 copy.md [63ms] +2025-07-10 14:42:50.770 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%88%86%E9%94%80%E4%BD%93%E7%B3%BB%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%88%86%E9%94%80%E4%BD%93%E7%B3%BB%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:42:50.772 [info] > git ls-files --stage -- docs/hxzx/分销体系 copy.md [62ms] +2025-07-10 14:42:50.772 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%88%86%E9%94%80%E4%BD%93%E7%B3%BB%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%88%86%E9%94%80%E4%BD%93%E7%B3%BB%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:42:51.098 [info] > git check-ignore -v -z --stdin [55ms] +2025-07-10 14:42:51.648 [info] > git symbolic-ref --short HEAD [61ms] +2025-07-10 14:42:51.651 [info] > git config --get commit.template [62ms] +2025-07-10 14:42:51.706 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 14:42:51.708 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:42:51.763 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 14:42:51.827 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 14:42:52.308 [info] > git status -z -uall [543ms] +2025-07-10 14:43:10.740 [info] > git config --get commit.template [57ms] +2025-07-10 14:43:10.741 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 14:43:10.799 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 14:43:10.802 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:43:10.856 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 14:43:10.917 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 14:43:11.396 [info] > git status -z -uall [537ms] +2025-07-10 14:43:12.850 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [56ms] +2025-07-10 14:43:12.852 [info] > git show --textconv :docs/hxzx/分销体系.md [62ms] +2025-07-10 14:43:12.906 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [54ms] +2025-07-10 14:43:58.471 [info] > git show --textconv :docs/hxzx/登录后台.md [56ms] +2025-07-10 14:43:58.471 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:43:58.472 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [56ms] +2025-07-10 14:43:58.472 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:43:58.539 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/登录后台.md [63ms] +2025-07-10 14:43:58.539 [info] fatal: no such path docs/hxzx/登录后台.md in 84e81a2b2f02798acbb48e1045be9ddac82d8632 +2025-07-10 14:43:58.773 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 14:43:59.322 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 14:43:59.324 [info] > git config --get commit.template [59ms] +2025-07-10 14:43:59.380 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 14:43:59.383 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:43:59.435 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 14:43:59.498 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 14:43:59.983 [info] > git status -z -uall [545ms] +2025-07-10 14:46:23.059 [info] > git ls-files --stage -- docs/bxgo/2、首页.md [65ms] +2025-07-10 14:46:23.061 [info] > git show --textconv :docs/bxgo/2、首页.md [71ms] +2025-07-10 14:46:23.117 [info] > git cat-file -s a509c1c2dcdba1ce221eaf48221cc8fd45302e30 [56ms] +2025-07-10 14:46:32.517 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [54ms] +2025-07-10 14:46:32.520 [info] > git show --textconv :docs/hxzx/分销体系.md [58ms] +2025-07-10 14:46:32.574 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [55ms] +2025-07-10 14:46:47.202 [info] > git show --textconv :docs/hxzx/登录后台 copy.md [61ms] +2025-07-10 14:46:47.202 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:46:47.203 [info] > git ls-files --stage -- docs/hxzx/登录后台 copy.md [60ms] +2025-07-10 14:46:47.203 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:46:47.528 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 14:46:48.086 [info] > git config --get commit.template [54ms] +2025-07-10 14:46:48.086 [info] > git symbolic-ref --short HEAD [56ms] +2025-07-10 14:46:48.141 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [53ms] +2025-07-10 14:46:48.143 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:46:48.196 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 14:46:48.257 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-10 14:46:48.741 [info] > git status -z -uall [543ms] +2025-07-10 14:47:00.328 [info] > git ls-files --stage -- docs/hxzx/.md [64ms] +2025-07-10 14:47:00.329 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:47:00.329 [info] > git show --textconv :docs/hxzx/.md [67ms] +2025-07-10 14:47:00.329 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:47:00.615 [info] > git check-ignore -v -z --stdin [58ms] +2025-07-10 14:47:08.700 [info] > git config --get commit.template [68ms] +2025-07-10 14:47:08.701 [info] > git symbolic-ref --short HEAD [73ms] +2025-07-10 14:47:08.763 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-10 14:47:08.765 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:47:08.821 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 14:47:08.887 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [61ms] +2025-07-10 14:47:09.361 [info] > git status -z -uall [538ms] +2025-07-10 14:47:29.364 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [61ms] +2025-07-10 14:47:29.367 [info] > git show --textconv :docs/hxzx/分销体系.md [65ms] +2025-07-10 14:47:29.427 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [60ms] +2025-07-10 14:47:29.590 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 14:47:30.198 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-10 14:47:30.201 [info] > git config --get commit.template [61ms] +2025-07-10 14:47:30.259 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [58ms] +2025-07-10 14:47:30.261 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:47:30.318 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 14:47:30.380 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-10 14:47:30.870 [info] > git status -z -uall [550ms] +2025-07-10 14:47:30.882 [info] > git show --textconv :docs/hxzx/账号权限管理.md [55ms] +2025-07-10 14:47:30.882 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:47:30.882 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [54ms] +2025-07-10 14:47:30.883 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:49:13.755 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [60ms] +2025-07-10 14:49:13.758 [info] > git show --textconv :docs/hxzx/分销体系.md [64ms] +2025-07-10 14:49:13.815 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [57ms] +2025-07-10 14:49:20.217 [info] > git ls-files --stage -- docs/bxgo/5、商城配置.md [57ms] +2025-07-10 14:49:20.219 [info] > git show --textconv :docs/bxgo/5、商城配置.md [62ms] +2025-07-10 14:49:20.277 [info] > git cat-file -s 223e98885dd122cd0ed2af571f4e3601f6ef77cc [58ms] +2025-07-10 14:49:32.001 [info] > git show --textconv :docs/hxzx/账号权限管理 copy.md [62ms] +2025-07-10 14:49:32.001 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:49:32.002 [info] > git ls-files --stage -- docs/hxzx/账号权限管理 copy.md [61ms] +2025-07-10 14:49:32.002 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:49:32.322 [info] > git check-ignore -v -z --stdin [60ms] +2025-07-10 14:49:32.873 [info] > git symbolic-ref --short HEAD [62ms] +2025-07-10 14:49:32.875 [info] > git config --get commit.template [61ms] +2025-07-10 14:49:32.929 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [54ms] +2025-07-10 14:49:32.931 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:49:32.985 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 14:49:33.049 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 14:49:33.531 [info] > git status -z -uall [544ms] +2025-07-10 14:49:42.934 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [57ms] +2025-07-10 14:49:42.938 [info] > git show --textconv :docs/hxzx/分销体系.md [64ms] +2025-07-10 14:49:42.992 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [54ms] +2025-07-10 14:49:58.754 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [60ms] +2025-07-10 14:49:58.757 [info] > git show --textconv :docs/hxzx/分销体系.md [65ms] +2025-07-10 14:49:58.814 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [57ms] +2025-07-10 14:50:03.256 [info] > git log --format=%H%n%aN%n%aE%n%at%n%ct%n%P%n%D%n%B -z -n51 --shortstat --follow -- c:\Users\zsw\Desktop\zsw-docs\docs\hxzx\账号权限管理 copy.md [60ms] +2025-07-10 14:50:12.168 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [57ms] +2025-07-10 14:50:12.171 [info] > git show --textconv :docs/hxzx/分销体系.md [63ms] +2025-07-10 14:50:12.225 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [54ms] +2025-07-10 14:54:59.273 [info] > git config --get commit.template [71ms] +2025-07-10 14:54:59.274 [info] > git symbolic-ref --short HEAD [75ms] +2025-07-10 14:54:59.337 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [61ms] +2025-07-10 14:54:59.339 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:54:59.392 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 14:54:59.457 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [61ms] +2025-07-10 14:54:59.947 [info] > git status -z -uall [554ms] +2025-07-10 14:56:24.258 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [59ms] +2025-07-10 14:56:24.259 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:56:24.259 [info] > git show --textconv :docs/hxzx/商品管理.md [61ms] +2025-07-10 14:56:24.259 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:56:24.322 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/商品管理.md [59ms] +2025-07-10 14:56:24.322 [info] fatal: no such path docs/hxzx/商品管理.md in 84e81a2b2f02798acbb48e1045be9ddac82d8632 +2025-07-10 14:56:24.540 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 14:56:25.092 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-10 14:56:25.096 [info] > git config --get commit.template [60ms] +2025-07-10 14:56:25.151 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 14:56:25.154 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:56:25.209 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 14:56:25.273 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 14:56:25.768 [info] > git status -z -uall [557ms] +2025-07-10 14:56:29.861 [info] > git show --textconv :docs/hxzx/分销体系.md [58ms] +2025-07-10 14:56:29.861 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [56ms] +2025-07-10 14:56:29.919 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [55ms] +2025-07-10 14:56:33.424 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 14:56:34.082 [info] > git check-ignore -v -z --stdin [68ms] +2025-07-10 14:56:38.411 [info] > git check-ignore -v -z --stdin [52ms] +2025-07-10 14:56:40.628 [info] > git check-ignore -v -z --stdin [81ms] +2025-07-10 14:57:04.890 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 14:57:07.717 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [58ms] +2025-07-10 14:57:07.720 [info] > git show --textconv :docs/hxzx/分销体系.md [62ms] +2025-07-10 14:57:07.773 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [53ms] +2025-07-10 14:57:09.254 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [65ms] +2025-07-10 14:57:25.790 [info] > git ls-files --stage -- docs/bxgo/4、订单管理.md [55ms] +2025-07-10 14:57:25.792 [info] > git show --textconv :docs/bxgo/4、订单管理.md [59ms] +2025-07-10 14:57:25.848 [info] > git cat-file -s 87f5fec7255d6e3c4cbf8d57dc95aab5774443af [56ms] +2025-07-10 14:57:28.937 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/bxgo/4、订单管理.md [84ms] +2025-07-10 14:57:32.769 [info] > git ls-files --stage -- docs/bxgo/5、商城配置.md [59ms] +2025-07-10 14:57:32.771 [info] > git show --textconv :docs/bxgo/5、商城配置.md [63ms] +2025-07-10 14:57:32.829 [info] > git cat-file -s 223e98885dd122cd0ed2af571f4e3601f6ef77cc [58ms] +2025-07-10 14:57:34.595 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [56ms] +2025-07-10 14:57:34.597 [info] > git show --textconv :docs/hxzx/分销体系.md [62ms] +2025-07-10 14:57:34.671 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [74ms] +2025-07-10 14:57:42.465 [info] > git show --textconv :docs/hxzx/商品管理 copy.md [64ms] +2025-07-10 14:57:42.466 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:57:42.466 [info] > git ls-files --stage -- docs/hxzx/商品管理 copy.md [62ms] +2025-07-10 14:57:42.466 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:57:42.790 [info] > git check-ignore -v -z --stdin [61ms] +2025-07-10 14:57:43.302 [info] > git config --get commit.template [56ms] +2025-07-10 14:57:43.303 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-10 14:57:43.360 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [54ms] +2025-07-10 14:57:43.362 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:57:43.414 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 14:57:43.477 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [58ms] +2025-07-10 14:57:43.943 [info] > git status -z -uall [528ms] +2025-07-10 14:58:28.186 [info] > git show --textconv :docs/hxzx/订单管理.md [62ms] +2025-07-10 14:58:28.187 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:58:28.187 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [60ms] +2025-07-10 14:58:28.187 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:58:28.249 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/订单管理.md [58ms] +2025-07-10 14:58:28.249 [info] fatal: no such path docs/hxzx/订单管理.md in 84e81a2b2f02798acbb48e1045be9ddac82d8632 +2025-07-10 14:58:28.475 [info] > git check-ignore -v -z --stdin [58ms] +2025-07-10 14:58:29.031 [info] > git config --get commit.template [55ms] +2025-07-10 14:58:29.032 [info] > git symbolic-ref --short HEAD [58ms] +2025-07-10 14:58:29.112 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [78ms] +2025-07-10 14:58:29.115 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:58:29.174 [info] > git rev-parse refs/remotes/origin/master [58ms] +2025-07-10 14:58:29.237 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 14:58:29.729 [info] > git status -z -uall [553ms] +2025-07-10 14:58:58.689 [info] > git ls-files --stage -- docs/bxgo/2、首页.md [56ms] +2025-07-10 14:58:58.692 [info] > git show --textconv :docs/bxgo/2、首页.md [61ms] +2025-07-10 14:58:58.747 [info] > git cat-file -s a509c1c2dcdba1ce221eaf48221cc8fd45302e30 [55ms] +2025-07-10 14:59:00.043 [info] > git ls-files --stage -- docs/bxgo/1、登录系统.md [59ms] +2025-07-10 14:59:00.046 [info] > git show --textconv :docs/bxgo/1、登录系统.md [64ms] +2025-07-10 14:59:00.135 [info] > git cat-file -s dcc83ab8f7bf58fc8c20a32e8243a563edf86f19 [89ms] +2025-07-10 14:59:02.694 [info] > git ls-files --stage -- docs/bxgo/2、首页.md [60ms] +2025-07-10 14:59:02.697 [info] > git show --textconv :docs/bxgo/2、首页.md [65ms] +2025-07-10 14:59:02.752 [info] > git cat-file -s a509c1c2dcdba1ce221eaf48221cc8fd45302e30 [55ms] +2025-07-10 14:59:03.265 [info] > git show --textconv :docs/bxgo/4、订单管理.md [66ms] +2025-07-10 14:59:03.267 [info] > git ls-files --stage -- docs/bxgo/4、订单管理.md [65ms] +2025-07-10 14:59:03.333 [info] > git cat-file -s 87f5fec7255d6e3c4cbf8d57dc95aab5774443af [64ms] +2025-07-10 14:59:03.892 [info] > git ls-files --stage -- docs/bxgo/5、商城配置.md [59ms] +2025-07-10 14:59:03.896 [info] > git show --textconv :docs/bxgo/5、商城配置.md [64ms] +2025-07-10 14:59:03.955 [info] > git cat-file -s 223e98885dd122cd0ed2af571f4e3601f6ef77cc [59ms] +2025-07-10 14:59:05.452 [info] > git ls-files --stage -- docs/bxgo/4、订单管理.md [56ms] +2025-07-10 14:59:05.455 [info] > git show --textconv :docs/bxgo/4、订单管理.md [61ms] +2025-07-10 14:59:05.513 [info] > git cat-file -s 87f5fec7255d6e3c4cbf8d57dc95aab5774443af [59ms] +2025-07-10 14:59:06.311 [info] > git show --textconv :docs/bxgo/2、首页.md [63ms] +2025-07-10 14:59:06.311 [info] > git ls-files --stage -- docs/bxgo/2、首页.md [61ms] +2025-07-10 14:59:06.374 [info] > git cat-file -s a509c1c2dcdba1ce221eaf48221cc8fd45302e30 [61ms] +2025-07-10 14:59:07.394 [info] > git ls-files --stage -- docs/bxgo/1、登录系统.md [59ms] +2025-07-10 14:59:07.397 [info] > git show --textconv :docs/bxgo/1、登录系统.md [65ms] +2025-07-10 14:59:07.458 [info] > git cat-file -s dcc83ab8f7bf58fc8c20a32e8243a563edf86f19 [61ms] +2025-07-10 14:59:08.020 [info] > git ls-files --stage -- docs/bxgo/商品管理/同城配送.md [57ms] +2025-07-10 14:59:08.023 [info] > git show --textconv :docs/bxgo/商品管理/同城配送.md [61ms] +2025-07-10 14:59:08.082 [info] > git cat-file -s 1ff277bccc5f1e6e4bc84d602c5604b4d05fdcb3 [60ms] +2025-07-10 14:59:08.730 [info] > git ls-files --stage -- docs/bxgo/商品管理/商品规格.md [63ms] +2025-07-10 14:59:08.733 [info] > git show --textconv :docs/bxgo/商品管理/商品规格.md [69ms] +2025-07-10 14:59:08.804 [info] > git cat-file -s 4392859e74c4265f5c6ccb727297896c15f5de37 [72ms] +2025-07-10 14:59:09.845 [info] > git ls-files --stage -- docs/bxgo/商品管理/商品分类.md [61ms] +2025-07-10 14:59:09.847 [info] > git show --textconv :docs/bxgo/商品管理/商品分类.md [66ms] +2025-07-10 14:59:09.905 [info] > git cat-file -s 08411d866a8ce2f6629676b0757a2b343aaae83a [57ms] +2025-07-10 14:59:11.184 [info] > git ls-files --stage -- docs/bxgo/商品管理/管理商品.md [66ms] +2025-07-10 14:59:11.186 [info] > git show --textconv :docs/bxgo/商品管理/管理商品.md [70ms] +2025-07-10 14:59:11.240 [info] > git cat-file -s 06c065d07716033ac3e709ab01d5a44a5228e505 [53ms] +2025-07-10 14:59:12.970 [info] > git ls-files --stage -- docs/bxgo/商品管理/商品规格.md [55ms] +2025-07-10 14:59:12.972 [info] > git show --textconv :docs/bxgo/商品管理/商品规格.md [60ms] +2025-07-10 14:59:13.029 [info] > git cat-file -s 4392859e74c4265f5c6ccb727297896c15f5de37 [56ms] +2025-07-10 14:59:13.839 [info] > git show --textconv :docs/bxgo/商品管理/同城配送.md [58ms] +2025-07-10 14:59:13.840 [info] > git ls-files --stage -- docs/bxgo/商品管理/同城配送.md [56ms] +2025-07-10 14:59:13.897 [info] > git cat-file -s 1ff277bccc5f1e6e4bc84d602c5604b4d05fdcb3 [55ms] +2025-07-10 14:59:15.105 [info] > git ls-files --stage -- docs/bxgo/商品管理/运费模版.md [55ms] +2025-07-10 14:59:15.107 [info] > git show --textconv :docs/bxgo/商品管理/运费模版.md [59ms] +2025-07-10 14:59:15.162 [info] > git cat-file -s 45bfde72ad5db666f96b345c16b6fb9a77a09663 [55ms] +2025-07-10 14:59:20.745 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [57ms] +2025-07-10 14:59:20.748 [info] > git show --textconv :docs/hxzx/分销体系.md [62ms] +2025-07-10 14:59:20.801 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [54ms] +2025-07-10 14:59:22.234 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [54ms] +2025-07-10 14:59:22.237 [info] > git show --textconv :docs/hxzx/分销体系.md [59ms] +2025-07-10 14:59:22.289 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [53ms] +2025-07-10 15:00:06.610 [info] > git ls-files --stage -- docs/hxzx/账号权限管理 copy.md [57ms] +2025-07-10 15:00:06.610 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 15:00:06.610 [info] > git show --textconv :docs/hxzx/账号权限管理 copy.md [60ms] +2025-07-10 15:00:06.611 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 15:00:07.462 [info] > git config --get commit.template [55ms] +2025-07-10 15:00:07.463 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-10 15:00:07.518 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [53ms] +2025-07-10 15:00:07.520 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:00:07.572 [info] > git rev-parse refs/remotes/origin/master [51ms] +2025-07-10 15:00:07.631 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 15:00:08.099 [info] > git status -z -uall [526ms] +2025-07-10 15:01:55.826 [info] > git check-ignore -v -z --stdin [61ms] +2025-07-10 15:01:56.330 [info] > git show --textconv :docs/hxzx/营销管理.md [59ms] +2025-07-10 15:01:56.330 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 15:01:56.331 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [57ms] +2025-07-10 15:01:56.331 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 15:01:56.395 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/营销管理.md [61ms] +2025-07-10 15:01:56.395 [info] fatal: no such path docs/hxzx/营销管理.md in 84e81a2b2f02798acbb48e1045be9ddac82d8632 +2025-07-10 15:01:56.400 [info] > git symbolic-ref --short HEAD [58ms] +2025-07-10 15:01:56.403 [info] > git config --get commit.template [58ms] +2025-07-10 15:01:56.460 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 15:01:56.462 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:01:56.521 [info] > git rev-parse refs/remotes/origin/master [59ms] +2025-07-10 15:01:56.584 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 15:01:57.103 [info] > git status -z -uall [580ms] +2025-07-10 15:01:57.150 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [87ms] +2025-07-10 15:01:57.150 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 15:01:57.151 [info] > git show --textconv :docs/hxzx/营销管理.md [89ms] +2025-07-10 15:01:57.151 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 15:02:52.900 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 15:03:00.345 [info] > git ls-files --stage -- docs/bxgo/商品管理/管理商品.md [57ms] +2025-07-10 15:03:00.348 [info] > git show --textconv :docs/bxgo/商品管理/管理商品.md [62ms] +2025-07-10 15:03:00.401 [info] > git cat-file -s 06c065d07716033ac3e709ab01d5a44a5228e505 [54ms] +2025-07-10 15:04:35.132 [info] > git ls-files --stage -- docs/bxgo/4、订单管理.md [53ms] +2025-07-10 15:04:35.134 [info] > git show --textconv :docs/bxgo/4、订单管理.md [59ms] +2025-07-10 15:04:35.193 [info] > git cat-file -s 87f5fec7255d6e3c4cbf8d57dc95aab5774443af [59ms] +2025-07-10 15:05:38.006 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 15:05:45.500 [info] > git ls-files --stage -- docs/bxgo/商品管理/同城配送.md [61ms] +2025-07-10 15:05:45.503 [info] > git show --textconv :docs/bxgo/商品管理/同城配送.md [67ms] +2025-07-10 15:05:45.564 [info] > git cat-file -s 1ff277bccc5f1e6e4bc84d602c5604b4d05fdcb3 [61ms] +2025-07-10 15:05:46.781 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/bxgo/商品管理/同城配送.md [66ms] +2025-07-10 15:06:45.038 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 15:06:45.696 [info] > git check-ignore -v -z --stdin [55ms] +2025-07-10 15:14:38.745 [info] > git show --textconv :docs/app/好生意App/扫码核销.md [62ms] +2025-07-10 15:14:38.745 [info] > git ls-files --stage -- docs/app/好生意App/扫码核销.md [59ms] +2025-07-10 15:14:38.824 [info] > git cat-file -s 9f9921c2c2f2cb8daffae7dba7fccc28ef65cfd5 [76ms] +2025-07-10 15:15:33.936 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/app/好生意App/扫码核销.md [57ms] +2025-07-10 15:17:37.220 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 15:17:37.778 [info] > git config --get commit.template [55ms] +2025-07-10 15:17:37.779 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-10 15:17:37.836 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 15:17:37.838 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:17:37.893 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 15:17:37.953 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-10 15:17:38.426 [info] > git status -z -uall [531ms] +2025-07-10 15:17:52.050 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 15:17:52.554 [info] > git config --get commit.template [57ms] +2025-07-10 15:17:52.555 [info] > git symbolic-ref --short HEAD [61ms] +2025-07-10 15:17:52.615 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 15:17:52.618 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:17:52.674 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 15:17:52.738 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 15:17:53.218 [info] > git status -z -uall [541ms] +2025-07-10 15:18:20.580 [info] > git check-ignore -v -z --stdin [60ms] +2025-07-10 15:18:21.126 [info] > git symbolic-ref --short HEAD [78ms] +2025-07-10 15:18:21.129 [info] > git config --get commit.template [78ms] +2025-07-10 15:18:21.195 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [67ms] +2025-07-10 15:18:21.198 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:18:21.252 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 15:18:21.316 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 15:18:21.795 [info] > git status -z -uall [540ms] +2025-07-10 15:22:07.283 [info] > git check-ignore -v -z --stdin [55ms] +2025-07-10 15:22:14.417 [info] > git ls-files --stage -- docs/bxgo/1、登录系统.md [57ms] +2025-07-10 15:22:14.420 [info] > git show --textconv :docs/bxgo/1、登录系统.md [63ms] +2025-07-10 15:22:14.482 [info] > git cat-file -s dcc83ab8f7bf58fc8c20a32e8243a563edf86f19 [62ms] +2025-07-10 15:22:15.272 [info] > git ls-files --stage -- docs/bxgo/2、首页.md [60ms] +2025-07-10 15:22:15.275 [info] > git show --textconv :docs/bxgo/2、首页.md [66ms] +2025-07-10 15:22:15.331 [info] > git cat-file -s a509c1c2dcdba1ce221eaf48221cc8fd45302e30 [57ms] +2025-07-10 15:22:15.784 [info] > git ls-files --stage -- docs/bxgo/4、订单管理.md [56ms] +2025-07-10 15:22:15.787 [info] > git show --textconv :docs/bxgo/4、订单管理.md [62ms] +2025-07-10 15:22:15.841 [info] > git cat-file -s 87f5fec7255d6e3c4cbf8d57dc95aab5774443af [54ms] +2025-07-10 15:22:16.185 [info] > git show --textconv :docs/bxgo/5、商城配置.md [60ms] +2025-07-10 15:22:16.186 [info] > git ls-files --stage -- docs/bxgo/5、商城配置.md [58ms] +2025-07-10 15:22:16.243 [info] > git cat-file -s 223e98885dd122cd0ed2af571f4e3601f6ef77cc [55ms] +2025-07-10 15:22:18.100 [info] > git ls-files --stage -- docs/bxgo/4、订单管理.md [55ms] +2025-07-10 15:22:18.102 [info] > git show --textconv :docs/bxgo/4、订单管理.md [60ms] +2025-07-10 15:22:18.158 [info] > git cat-file -s 87f5fec7255d6e3c4cbf8d57dc95aab5774443af [55ms] +2025-07-10 15:22:19.548 [info] > git ls-files --stage -- docs/bxgo/2、首页.md [55ms] +2025-07-10 15:22:19.551 [info] > git show --textconv :docs/bxgo/2、首页.md [59ms] +2025-07-10 15:22:19.605 [info] > git cat-file -s a509c1c2dcdba1ce221eaf48221cc8fd45302e30 [55ms] +2025-07-10 15:22:23.212 [info] > git ls-files --stage -- docs/bxgo/4、订单管理.md [56ms] +2025-07-10 15:22:23.214 [info] > git show --textconv :docs/bxgo/4、订单管理.md [61ms] +2025-07-10 15:22:23.269 [info] > git cat-file -s 87f5fec7255d6e3c4cbf8d57dc95aab5774443af [55ms] +2025-07-10 15:22:23.634 [info] > git ls-files --stage -- docs/bxgo/5、商城配置.md [56ms] +2025-07-10 15:22:23.636 [info] > git show --textconv :docs/bxgo/5、商城配置.md [61ms] +2025-07-10 15:22:23.693 [info] > git cat-file -s 223e98885dd122cd0ed2af571f4e3601f6ef77cc [56ms] +2025-07-10 15:22:24.300 [info] > git ls-files --stage -- docs/bxgo/4、订单管理.md [56ms] +2025-07-10 15:22:24.303 [info] > git show --textconv :docs/bxgo/4、订单管理.md [61ms] +2025-07-10 15:22:24.357 [info] > git cat-file -s 87f5fec7255d6e3c4cbf8d57dc95aab5774443af [55ms] +2025-07-10 15:22:24.700 [info] > git ls-files --stage -- docs/bxgo/5、商城配置.md [58ms] +2025-07-10 15:22:24.703 [info] > git show --textconv :docs/bxgo/5、商城配置.md [63ms] +2025-07-10 15:22:24.760 [info] > git cat-file -s 223e98885dd122cd0ed2af571f4e3601f6ef77cc [57ms] +2025-07-10 15:22:25.083 [info] > git ls-files --stage -- docs/bxgo/4、订单管理.md [56ms] +2025-07-10 15:22:25.086 [info] > git show --textconv :docs/bxgo/4、订单管理.md [61ms] +2025-07-10 15:22:25.141 [info] > git cat-file -s 87f5fec7255d6e3c4cbf8d57dc95aab5774443af [54ms] +2025-07-10 15:22:25.451 [info] > git ls-files --stage -- docs/bxgo/2、首页.md [57ms] +2025-07-10 15:22:25.454 [info] > git show --textconv :docs/bxgo/2、首页.md [63ms] +2025-07-10 15:22:25.510 [info] > git cat-file -s a509c1c2dcdba1ce221eaf48221cc8fd45302e30 [56ms] +2025-07-10 15:22:25.999 [info] > git ls-files --stage -- docs/bxgo/1、登录系统.md [71ms] +2025-07-10 15:22:26.001 [info] > git show --textconv :docs/bxgo/1、登录系统.md [76ms] +2025-07-10 15:22:26.056 [info] > git cat-file -s dcc83ab8f7bf58fc8c20a32e8243a563edf86f19 [55ms] +2025-07-10 15:22:29.818 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [55ms] +2025-07-10 15:22:29.822 [info] > git show --textconv :docs/hxzx/分销体系.md [61ms] +2025-07-10 15:22:29.876 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [55ms] +2025-07-10 15:22:32.769 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [55ms] +2025-07-10 15:22:32.772 [info] > git show --textconv :docs/hxzx/分销体系.md [61ms] +2025-07-10 15:22:32.826 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [54ms] +2025-07-10 15:23:01.438 [info] > git log --format=%H%n%aN%n%aE%n%at%n%ct%n%P%n%D%n%B -z --shortstat --diff-merges=first-parent -n50 --skip=0 --topo-order --decorate=full --stdin [1066ms] +2025-07-10 15:23:59.178 [info] > git log --format=%H%n%aN%n%aE%n%at%n%ct%n%P%n%D%n%B -z --shortstat --diff-merges=first-parent -n50 --skip=0 --topo-order --decorate=full --stdin [1080ms] +2025-07-10 15:24:01.626 [info] > git log --format=%H%n%aN%n%aE%n%at%n%ct%n%P%n%D%n%B -z --shortstat --diff-merges=first-parent -n50 --skip=0 --topo-order --decorate=full --stdin [1062ms] +2025-07-10 15:24:12.754 [info] > git log --format=%H%n%aN%n%aE%n%at%n%ct%n%P%n%D%n%B -z --shortstat --diff-merges=first-parent -n50 --skip=0 --topo-order --decorate=full --stdin [1049ms] +2025-07-10 15:24:28.082 [info] > git diff-tree -r --name-status -z --diff-filter=ADMR --find-renames=50% 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 84e81a2b2f02798acbb48e1045be9ddac82d8632 [55ms] +2025-07-10 15:24:28.650 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 15:24:29.158 [info] > git show --textconv 84e81a2b2f02798acbb48e1045be9ddac82d8632:docs/hxzx/分销体系.md [100ms] +2025-07-10 15:24:29.158 [info] > git show --textconv 3091e1b89a47e6798a989bdbbd067c4b5c5d8178:docs/hxzx/分销体系.md [102ms] +2025-07-10 15:24:29.164 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [104ms] +2025-07-10 15:24:29.165 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [101ms] +2025-07-10 15:24:29.659 [info] > git check-ignore -v -z --stdin [81ms] +2025-07-10 15:24:34.302 [info] > git diff-tree -r --name-status -z --diff-filter=ADMR --find-renames=50% 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 84e81a2b2f02798acbb48e1045be9ddac82d8632 [59ms] +2025-07-10 15:24:34.368 [info] > git show --textconv 3091e1b89a47e6798a989bdbbd067c4b5c5d8178:docs/hxzx/分销体系.md [61ms] +2025-07-10 15:24:34.369 [info] > git show --textconv 84e81a2b2f02798acbb48e1045be9ddac82d8632:docs/hxzx/分销体系.md [61ms] +2025-07-10 15:24:34.374 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 15:24:34.376 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [63ms] +2025-07-10 15:24:34.808 [info] > git check-ignore -v -z --stdin [52ms] +2025-07-10 15:24:58.126 [info] > git add -A -- docs/hxzx/登录后台.md [521ms] +2025-07-10 15:24:58.201 [info] > git symbolic-ref --short HEAD [72ms] +2025-07-10 15:24:58.204 [info] > git config --get commit.template [73ms] +2025-07-10 15:24:58.267 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [63ms] +2025-07-10 15:24:58.269 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:24:58.324 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 15:24:58.386 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 15:24:58.390 [info] > git status -z -uall [63ms] +2025-07-10 15:24:58.508 [info] > git show --textconv :docs/hxzx/登录后台.md [62ms] +2025-07-10 15:24:58.511 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [62ms] +2025-07-10 15:24:58.511 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:24:58.512 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [62ms] +2025-07-10 15:24:58.515 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [61ms] +2025-07-10 15:24:58.515 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:24:58.567 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [53ms] +2025-07-10 15:24:59.438 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [64ms] +2025-07-10 15:24:59.439 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 15:24:59.439 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [60ms] +2025-07-10 15:24:59.502 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [61ms] +2025-07-10 15:24:59.505 [info] > git show --textconv 3091e1b89a47e6798a989bdbbd067c4b5c5d8178:docs/hxzx/分销体系.md [62ms] +2025-07-10 15:24:59.507 [info] > git show --textconv 84e81a2b2f02798acbb48e1045be9ddac82d8632:docs/hxzx/分销体系.md [60ms] +2025-07-10 15:24:59.559 [info] > git show --textconv :docs/hxzx/登录后台.md [54ms] +2025-07-10 15:25:00.446 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-10 15:25:00.449 [info] > git config --get commit.template [57ms] +2025-07-10 15:25:00.512 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [63ms] +2025-07-10 15:25:00.514 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:25:00.567 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 15:25:00.629 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 15:25:00.632 [info] > git status -z -uall [63ms] +2025-07-10 15:25:03.956 [info] > git add -A -- docs/hxzx/订单管理.md [57ms] +2025-07-10 15:25:04.013 [info] > git symbolic-ref --short HEAD [55ms] +2025-07-10 15:25:04.016 [info] > git config --get commit.template [56ms] +2025-07-10 15:25:04.068 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [53ms] +2025-07-10 15:25:04.071 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:25:04.125 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 15:25:04.184 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [54ms] +2025-07-10 15:25:04.187 [info] > git status -z -uall [61ms] +2025-07-10 15:25:04.341 [info] > git show --textconv :docs/hxzx/订单管理.md [62ms] +2025-07-10 15:25:04.345 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [61ms] +2025-07-10 15:25:04.347 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [65ms] +2025-07-10 15:25:04.347 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:25:04.348 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [61ms] +2025-07-10 15:25:04.348 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:25:04.400 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [53ms] +2025-07-10 15:25:05.216 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [60ms] +2025-07-10 15:25:05.216 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [59ms] +2025-07-10 15:25:05.220 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [60ms] +2025-07-10 15:25:05.279 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [57ms] +2025-07-10 15:25:05.282 [info] > git show --textconv 3091e1b89a47e6798a989bdbbd067c4b5c5d8178:docs/hxzx/分销体系.md [63ms] +2025-07-10 15:25:05.283 [info] > git show --textconv 84e81a2b2f02798acbb48e1045be9ddac82d8632:docs/hxzx/分销体系.md [58ms] +2025-07-10 15:25:05.338 [info] > git show --textconv :docs/hxzx/订单管理.md [57ms] +2025-07-10 15:25:05.891 [info] > git add -A -- docs/hxzx/商品管理.md [57ms] +2025-07-10 15:25:05.948 [info] > git config --get commit.template [53ms] +2025-07-10 15:25:05.949 [info] > git symbolic-ref --short HEAD [55ms] +2025-07-10 15:25:06.005 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [53ms] +2025-07-10 15:25:06.007 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:25:06.061 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 15:25:06.124 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 15:25:06.126 [info] > git status -z -uall [62ms] +2025-07-10 15:25:06.257 [info] > git config --get commit.template [86ms] +2025-07-10 15:25:06.258 [info] > git symbolic-ref --short HEAD [88ms] +2025-07-10 15:25:06.320 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-10 15:25:06.322 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:25:06.377 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 15:25:06.440 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 15:25:06.443 [info] > git status -z -uall [63ms] +2025-07-10 15:25:07.138 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [61ms] +2025-07-10 15:25:07.138 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [60ms] +2025-07-10 15:25:07.140 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 15:25:07.199 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [58ms] +2025-07-10 15:25:07.202 [info] > git show --textconv 84e81a2b2f02798acbb48e1045be9ddac82d8632:docs/hxzx/分销体系.md [59ms] +2025-07-10 15:25:07.204 [info] > git show --textconv 3091e1b89a47e6798a989bdbbd067c4b5c5d8178:docs/hxzx/分销体系.md [59ms] +2025-07-10 15:25:07.260 [info] > git show --textconv :docs/hxzx/订单管理.md [57ms] +2025-07-10 15:25:08.261 [info] > git add -A -- docs/hxzx/营销管理.md [59ms] +2025-07-10 15:25:08.318 [info] > git symbolic-ref --short HEAD [55ms] +2025-07-10 15:25:08.321 [info] > git config --get commit.template [56ms] +2025-07-10 15:25:08.374 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [53ms] +2025-07-10 15:25:08.377 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:25:08.436 [info] > git rev-parse refs/remotes/origin/master [59ms] +2025-07-10 15:25:08.498 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 15:25:08.501 [info] > git status -z -uall [62ms] +2025-07-10 15:25:09.625 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 15:25:09.629 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [60ms] +2025-07-10 15:25:09.631 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [65ms] +2025-07-10 15:25:09.691 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [59ms] +2025-07-10 15:25:09.691 [info] > git show --textconv 3091e1b89a47e6798a989bdbbd067c4b5c5d8178:docs/hxzx/分销体系.md [63ms] +2025-07-10 15:25:09.695 [info] > git show --textconv 84e81a2b2f02798acbb48e1045be9ddac82d8632:docs/hxzx/分销体系.md [61ms] +2025-07-10 15:25:09.780 [info] > git show --textconv :docs/hxzx/订单管理.md [86ms] +2025-07-10 15:25:10.283 [info] > git add -A -- docs/hxzx/账号权限管理.md [57ms] +2025-07-10 15:25:10.339 [info] > git symbolic-ref --short HEAD [54ms] +2025-07-10 15:25:10.342 [info] > git config --get commit.template [54ms] +2025-07-10 15:25:10.395 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [53ms] +2025-07-10 15:25:10.397 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:25:10.451 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 15:25:10.509 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [53ms] +2025-07-10 15:25:10.512 [info] > git status -z -uall [59ms] +2025-07-10 15:25:11.512 [info] > git symbolic-ref --short HEAD [64ms] +2025-07-10 15:25:11.515 [info] > git config --get commit.template [66ms] +2025-07-10 15:25:11.530 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 15:25:11.534 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [65ms] +2025-07-10 15:25:11.537 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [70ms] +2025-07-10 15:25:11.574 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-10 15:25:11.576 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:25:11.593 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [56ms] +2025-07-10 15:25:11.596 [info] > git show --textconv 3091e1b89a47e6798a989bdbbd067c4b5c5d8178:docs/hxzx/分销体系.md [62ms] +2025-07-10 15:25:11.597 [info] > git show --textconv 84e81a2b2f02798acbb48e1045be9ddac82d8632:docs/hxzx/分销体系.md [58ms] +2025-07-10 15:25:11.628 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 15:25:11.649 [info] > git show --textconv :docs/hxzx/订单管理.md [54ms] +2025-07-10 15:25:11.686 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [54ms] +2025-07-10 15:25:11.689 [info] > git status -z -uall [58ms] +2025-07-10 15:25:14.964 [info] > git add -A -- docs/hxzx/image/分销体系/image-shouhou.png [61ms] +2025-07-10 15:25:15.022 [info] > git config --get commit.template [53ms] +2025-07-10 15:25:15.022 [info] > git symbolic-ref --short HEAD [56ms] +2025-07-10 15:25:15.078 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [53ms] +2025-07-10 15:25:15.080 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:25:15.136 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 15:25:15.195 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 15:25:15.198 [info] > git status -z -uall [61ms] +2025-07-10 15:25:16.200 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [58ms] +2025-07-10 15:25:16.203 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [60ms] +2025-07-10 15:25:16.206 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [60ms] +2025-07-10 15:25:16.274 [info] > git show --textconv 3091e1b89a47e6798a989bdbbd067c4b5c5d8178:docs/hxzx/分销体系.md [71ms] +2025-07-10 15:25:16.275 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [67ms] +2025-07-10 15:25:16.279 [info] > git show --textconv 84e81a2b2f02798acbb48e1045be9ddac82d8632:docs/hxzx/分销体系.md [72ms] +2025-07-10 15:25:16.313 [info] > git show --textconv :docs/hxzx/商品管理.md [68ms] +2025-07-10 15:25:16.317 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [68ms] +2025-07-10 15:25:16.335 [info] > git show --textconv :docs/hxzx/订单管理.md [57ms] +2025-07-10 15:25:16.373 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [54ms] +2025-07-10 15:25:16.824 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 15:25:17.048 [info] > git show --textconv :docs/hxzx/登录后台.md [96ms] +2025-07-10 15:25:17.051 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [96ms] +2025-07-10 15:25:17.105 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [52ms] +2025-07-10 15:25:17.203 [info] > git symbolic-ref --short HEAD [58ms] +2025-07-10 15:25:17.205 [info] > git config --get commit.template [58ms] +2025-07-10 15:25:17.262 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 15:25:17.264 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:25:17.321 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 15:25:17.383 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [58ms] +2025-07-10 15:25:17.387 [info] > git status -z -uall [63ms] +2025-07-10 15:25:17.530 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 15:25:21.363 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [71ms] +2025-07-10 15:25:21.365 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 15:25:21.365 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [72ms] +2025-07-10 15:25:21.423 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [59ms] +2025-07-10 15:25:34.426 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/image-shouhou.png [64ms] +2025-07-10 15:25:34.429 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/image-shouhou.png [64ms] +2025-07-10 15:25:34.490 [info] > git cat-file -s 6dfb5513bd110e562b0efdc94beb54652633947d [62ms] +2025-07-10 15:25:34.493 [info] > git cat-file -s 6dfb5513bd110e562b0efdc94beb54652633947d [61ms] +2025-07-10 15:25:34.592 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/image-shouhou.png [54ms] +2025-07-10 15:25:34.594 [info] > git show --textconv :docs/hxzx/image/分销体系/image-shouhou.png [59ms] +2025-07-10 15:25:34.646 [info] > git cat-file -s 6dfb5513bd110e562b0efdc94beb54652633947d [52ms] +2025-07-10 15:25:34.925 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 15:26:04.404 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [65ms] +2025-07-10 15:26:04.405 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [68ms] +2025-07-10 15:26:27.858 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 15:26:27.861 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 15:26:41.913 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [69ms] +2025-07-10 15:26:41.913 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [73ms] +2025-07-10 15:26:56.605 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [68ms] +2025-07-10 15:26:56.605 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [65ms] +2025-07-10 15:27:02.844 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [70ms] +2025-07-10 15:27:02.846 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 15:27:03.540 [info] > git check-ignore -v -z --stdin [58ms] +2025-07-10 15:27:04.121 [info] > git symbolic-ref --short HEAD [74ms] +2025-07-10 15:27:04.124 [info] > git config --get commit.template [74ms] +2025-07-10 15:27:04.179 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 15:27:04.182 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:27:04.238 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 15:27:04.303 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [60ms] +2025-07-10 15:27:04.304 [info] > git status -z -uall [64ms] +2025-07-10 15:27:14.336 [info] > git show --textconv :docs/hxzx/登录后台.md [61ms] +2025-07-10 15:27:14.340 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [62ms] +2025-07-10 15:27:14.340 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:27:14.341 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [61ms] +2025-07-10 15:27:14.346 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [62ms] +2025-07-10 15:27:14.346 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:27:14.397 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [54ms] +2025-07-10 15:27:23.868 [info] > git show --textconv :docs/hxzx/订单管理.md [62ms] +2025-07-10 15:27:23.871 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [63ms] +2025-07-10 15:27:23.871 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:27:23.874 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [63ms] +2025-07-10 15:27:23.877 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [64ms] +2025-07-10 15:27:23.877 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:27:23.933 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [57ms] +2025-07-10 15:27:55.408 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [74ms] +2025-07-10 15:27:55.410 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [73ms] +2025-07-10 15:28:03.112 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [64ms] +2025-07-10 15:28:03.113 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 15:28:16.888 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [66ms] +2025-07-10 15:28:16.889 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [63ms] +2025-07-10 15:28:42.629 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 15:28:42.630 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [65ms] +2025-07-10 15:28:51.666 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [65ms] +2025-07-10 15:28:51.666 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [63ms] +2025-07-10 15:28:54.951 [info] > git show --textconv :docs/hxzx/订单管理.md [62ms] +2025-07-10 15:28:54.955 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [64ms] +2025-07-10 15:28:54.955 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:28:54.956 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [62ms] +2025-07-10 15:28:54.959 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [62ms] +2025-07-10 15:28:54.959 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:28:55.014 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [56ms] +2025-07-10 15:28:57.350 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 15:28:57.905 [info] > git symbolic-ref --short HEAD [66ms] +2025-07-10 15:28:57.907 [info] > git config --get commit.template [66ms] +2025-07-10 15:28:57.965 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 15:28:57.967 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:28:58.021 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 15:28:58.087 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [61ms] +2025-07-10 15:28:58.089 [info] > git status -z -uall [65ms] +2025-07-10 15:29:18.728 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [56ms] +2025-07-10 15:29:18.731 [info] > git show --textconv :docs/hxzx/分销体系.md [61ms] +2025-07-10 15:29:18.785 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [54ms] +2025-07-10 15:29:24.142 [info] > git ls-files --stage -- docs/bxgo/4、订单管理.md [55ms] +2025-07-10 15:29:24.145 [info] > git show --textconv :docs/bxgo/4、订单管理.md [60ms] +2025-07-10 15:29:24.201 [info] > git cat-file -s 87f5fec7255d6e3c4cbf8d57dc95aab5774443af [57ms] +2025-07-10 15:29:42.842 [info] > git show --textconv :docs/hxzx/登录后台.md [70ms] +2025-07-10 15:29:42.848 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [70ms] +2025-07-10 15:29:42.851 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [76ms] +2025-07-10 15:29:42.851 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:29:42.853 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [73ms] +2025-07-10 15:29:42.853 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:29:42.907 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [56ms] +2025-07-10 15:29:45.365 [info] > git show --textconv :docs/hxzx/订单管理.md [64ms] +2025-07-10 15:29:45.366 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [61ms] +2025-07-10 15:29:45.366 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:29:45.369 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [62ms] +2025-07-10 15:29:45.371 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [63ms] +2025-07-10 15:29:45.371 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:29:45.425 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [54ms] +2025-07-10 15:30:04.656 [info] > git ls-files --stage -- docs/bxgo/2、首页.md [53ms] +2025-07-10 15:30:04.659 [info] > git show --textconv :docs/bxgo/2、首页.md [58ms] +2025-07-10 15:30:04.714 [info] > git cat-file -s a509c1c2dcdba1ce221eaf48221cc8fd45302e30 [55ms] +2025-07-10 15:30:05.462 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/bxgo/2、首页.md [58ms] +2025-07-10 15:30:19.842 [info] > git ls-files --stage -- docs/bxgo/1、登录系统.md [57ms] +2025-07-10 15:30:19.844 [info] > git show --textconv :docs/bxgo/1、登录系统.md [61ms] +2025-07-10 15:30:19.906 [info] > git cat-file -s dcc83ab8f7bf58fc8c20a32e8243a563edf86f19 [62ms] +2025-07-10 15:30:21.294 [info] > git ls-files --stage -- docs/bxgo/4、订单管理.md [58ms] +2025-07-10 15:30:21.297 [info] > git show --textconv :docs/bxgo/4、订单管理.md [63ms] +2025-07-10 15:30:21.351 [info] > git cat-file -s 87f5fec7255d6e3c4cbf8d57dc95aab5774443af [54ms] +2025-07-10 15:30:31.766 [info] > git show --textconv :docs/hxzx/订单管理.md [63ms] +2025-07-10 15:30:31.769 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [63ms] +2025-07-10 15:30:31.769 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:30:31.769 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [62ms] +2025-07-10 15:30:31.772 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [63ms] +2025-07-10 15:30:31.772 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:30:31.825 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [54ms] +2025-07-10 15:33:05.284 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [83ms] +2025-07-10 15:33:05.284 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [87ms] +2025-07-10 15:33:27.114 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [83ms] +2025-07-10 15:33:27.115 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [75ms] +2025-07-10 15:33:35.505 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [76ms] +2025-07-10 15:33:35.505 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [86ms] +2025-07-10 15:33:38.631 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 15:33:39.206 [info] > git config --get commit.template [58ms] +2025-07-10 15:33:39.208 [info] > git symbolic-ref --short HEAD [62ms] +2025-07-10 15:33:39.267 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 15:33:39.270 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:33:39.323 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 15:33:39.387 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [58ms] +2025-07-10 15:33:39.391 [info] > git status -z -uall [65ms] +2025-07-10 15:33:52.851 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 15:33:52.852 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [60ms] +2025-07-10 15:33:53.540 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 15:33:54.192 [info] > git config --get commit.template [56ms] +2025-07-10 15:33:54.192 [info] > git symbolic-ref --short HEAD [58ms] +2025-07-10 15:33:54.254 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [58ms] +2025-07-10 15:33:54.257 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:33:54.311 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 15:33:54.375 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 15:33:54.379 [info] > git status -z -uall [65ms] +2025-07-10 15:34:33.471 [info] > git show --textconv :docs/hxzx/订单管理.md [65ms] +2025-07-10 15:34:33.472 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [64ms] +2025-07-10 15:34:33.473 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:34:33.475 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [64ms] +2025-07-10 15:34:33.478 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [64ms] +2025-07-10 15:34:33.478 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:34:33.533 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [56ms] +2025-07-10 15:35:30.661 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [78ms] +2025-07-10 15:35:30.662 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [70ms] +2025-07-10 15:35:35.218 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [64ms] +2025-07-10 15:35:35.219 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [61ms] +2025-07-10 15:35:37.641 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 15:35:38.199 [info] > git config --get commit.template [55ms] +2025-07-10 15:35:38.199 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-10 15:35:38.254 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [54ms] +2025-07-10 15:35:38.257 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:35:38.308 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 15:35:38.368 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 15:35:38.371 [info] > git status -z -uall [61ms] +2025-07-10 15:35:53.041 [info] > git check-ignore -v -z --stdin [58ms] +2025-07-10 15:36:17.711 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 15:36:18.273 [info] > git config --get commit.template [57ms] +2025-07-10 15:36:18.274 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 15:36:18.331 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 15:36:18.333 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:36:18.387 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 15:36:18.451 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 15:36:18.454 [info] > git status -z -uall [65ms] +2025-07-10 15:36:18.531 [info] > git check-ignore -v -z --stdin [52ms] +2025-07-10 15:36:44.294 [info] > git show --textconv :docs/hxzx/订单管理.md [66ms] +2025-07-10 15:36:44.294 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [64ms] +2025-07-10 15:36:44.295 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:36:44.296 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [64ms] +2025-07-10 15:36:44.299 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [64ms] +2025-07-10 15:36:44.299 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:36:44.352 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [54ms] +2025-07-10 15:37:03.214 [info] > git show --textconv :docs/hxzx/订单管理.md [65ms] +2025-07-10 15:37:03.215 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [61ms] +2025-07-10 15:37:03.217 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [67ms] +2025-07-10 15:37:03.218 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:37:03.220 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [64ms] +2025-07-10 15:37:03.220 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:37:03.275 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [57ms] +2025-07-10 15:37:29.241 [info] > git show --textconv :docs/hxzx/商品管理.md [64ms] +2025-07-10 15:37:29.245 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [66ms] +2025-07-10 15:37:29.245 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:37:29.247 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [65ms] +2025-07-10 15:37:29.250 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [66ms] +2025-07-10 15:37:29.251 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:37:29.307 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [58ms] +2025-07-10 15:38:49.117 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [73ms] +2025-07-10 15:38:49.118 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [69ms] +2025-07-10 15:38:57.832 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [81ms] +2025-07-10 15:38:57.833 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [76ms] +2025-07-10 15:39:06.227 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 15:39:06.228 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [65ms] +2025-07-10 15:39:06.799 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 15:39:07.360 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 15:39:07.362 [info] > git config --get commit.template [58ms] +2025-07-10 15:39:07.419 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 15:39:07.421 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:39:07.474 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 15:39:07.537 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [58ms] +2025-07-10 15:39:07.541 [info] > git status -z -uall [64ms] +2025-07-10 15:39:11.905 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [65ms] +2025-07-10 15:39:11.905 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:39:11.905 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [64ms] +2025-07-10 15:39:11.908 [info] > git show --textconv :docs/hxzx/订单管理.md [71ms] +2025-07-10 15:39:11.909 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [64ms] +2025-07-10 15:39:11.909 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:39:11.964 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [56ms] +2025-07-10 15:39:19.092 [info] > git show --textconv :docs/hxzx/商品管理.md [64ms] +2025-07-10 15:39:19.095 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [64ms] +2025-07-10 15:39:19.095 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:39:19.097 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [64ms] +2025-07-10 15:39:19.100 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [65ms] +2025-07-10 15:39:19.100 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:39:19.158 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [58ms] +2025-07-10 15:40:32.400 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [78ms] +2025-07-10 15:40:32.400 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [73ms] +2025-07-10 15:45:36.840 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [76ms] +2025-07-10 15:45:36.844 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [74ms] +2025-07-10 15:45:50.652 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [69ms] +2025-07-10 15:45:50.653 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:45:50.653 [info] > git show --textconv :docs/hxzx/商品管理.md [73ms] +2025-07-10 15:45:50.654 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [68ms] +2025-07-10 15:45:50.657 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [68ms] +2025-07-10 15:45:50.657 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:45:50.710 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [54ms] +2025-07-10 15:46:52.734 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [75ms] +2025-07-10 15:46:52.734 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [73ms] +2025-07-10 15:47:00.955 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [63ms] +2025-07-10 15:47:00.957 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 15:47:01.631 [info] > git check-ignore -v -z --stdin [60ms] +2025-07-10 15:47:02.287 [info] > git symbolic-ref --short HEAD [92ms] +2025-07-10 15:47:02.295 [info] > git config --get commit.template [80ms] +2025-07-10 15:47:02.344 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 15:47:02.347 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:47:02.401 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 15:47:02.463 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 15:47:02.466 [info] > git status -z -uall [62ms] +2025-07-10 15:47:11.666 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [60ms] +2025-07-10 15:47:11.667 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [58ms] +2025-07-10 15:47:12.872 [info] > git symbolic-ref --short HEAD [56ms] +2025-07-10 15:47:12.875 [info] > git config --get commit.template [57ms] +2025-07-10 15:47:12.931 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 15:47:12.934 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:47:12.990 [info] > git rev-parse refs/remotes/origin/master [57ms] +2025-07-10 15:47:13.052 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 15:47:13.056 [info] > git status -z -uall [63ms] +2025-07-10 15:47:16.665 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [60ms] +2025-07-10 15:47:16.667 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [59ms] +2025-07-10 15:47:20.428 [info] > git check-ignore -v -z --stdin [58ms] +2025-07-10 15:47:20.990 [info] > git config --get commit.template [58ms] +2025-07-10 15:47:20.990 [info] > git symbolic-ref --short HEAD [62ms] +2025-07-10 15:47:21.052 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-10 15:47:21.054 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:47:21.112 [info] > git rev-parse refs/remotes/origin/master [59ms] +2025-07-10 15:47:21.173 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 15:47:21.176 [info] > git status -z -uall [62ms] +2025-07-10 15:47:34.324 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [98ms] +2025-07-10 15:47:34.327 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [103ms] +2025-07-10 15:47:34.327 [info] > git show --textconv :docs/hxzx/账号权限管理.md [105ms] +2025-07-10 15:47:34.327 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:47:34.328 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [101ms] +2025-07-10 15:47:34.329 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:47:34.380 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [53ms] +2025-07-10 15:47:34.441 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/账号权限管理.md [56ms] +2025-07-10 15:47:34.441 [info] fatal: no such path docs/hxzx/账号权限管理.md in 84e81a2b2f02798acbb48e1045be9ddac82d8632 +2025-07-10 15:47:34.898 [info] > git show --textconv :docs/hxzx/营销管理.md [64ms] +2025-07-10 15:47:34.899 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [62ms] +2025-07-10 15:47:34.899 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:47:34.901 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [61ms] +2025-07-10 15:47:34.905 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [64ms] +2025-07-10 15:47:34.906 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:47:34.964 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [60ms] +2025-07-10 15:47:35.419 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [64ms] +2025-07-10 15:47:35.419 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:47:35.420 [info] > git show --textconv :docs/hxzx/商品管理.md [67ms] +2025-07-10 15:47:35.420 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [64ms] +2025-07-10 15:47:35.423 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [64ms] +2025-07-10 15:47:35.423 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:47:35.477 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [54ms] +2025-07-10 15:47:57.615 [info] > git show --textconv :docs/hxzx/营销管理.md [63ms] +2025-07-10 15:47:57.615 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [62ms] +2025-07-10 15:47:57.616 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:47:57.618 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-10 15:47:57.620 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [62ms] +2025-07-10 15:47:57.620 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:47:57.674 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [54ms] +2025-07-10 15:48:17.283 [info] > git show --textconv :docs/hxzx/账号权限管理.md [64ms] +2025-07-10 15:48:17.284 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [63ms] +2025-07-10 15:48:17.284 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:17.286 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [63ms] +2025-07-10 15:48:17.288 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [63ms] +2025-07-10 15:48:17.289 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:17.347 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [59ms] +2025-07-10 15:48:22.416 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [61ms] +2025-07-10 15:48:22.416 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:22.417 [info] > git show --textconv :docs/hxzx/营销管理.md [64ms] +2025-07-10 15:48:22.418 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [61ms] +2025-07-10 15:48:22.421 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [62ms] +2025-07-10 15:48:22.421 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:22.474 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [54ms] +2025-07-10 15:48:23.507 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [61ms] +2025-07-10 15:48:23.508 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:23.508 [info] > git show --textconv :docs/hxzx/商品管理.md [65ms] +2025-07-10 15:48:23.509 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [60ms] +2025-07-10 15:48:23.512 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [61ms] +2025-07-10 15:48:23.513 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:23.565 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [53ms] +2025-07-10 15:48:25.231 [info] > git show --textconv :docs/hxzx/账号权限管理.md [62ms] +2025-07-10 15:48:25.232 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [61ms] +2025-07-10 15:48:25.232 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:25.235 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [62ms] +2025-07-10 15:48:25.237 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [62ms] +2025-07-10 15:48:25.238 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:25.293 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [56ms] +2025-07-10 15:48:27.321 [info] > git show --textconv :docs/hxzx/营销管理.md [64ms] +2025-07-10 15:48:27.322 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [63ms] +2025-07-10 15:48:27.322 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:27.322 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [60ms] +2025-07-10 15:48:27.326 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [62ms] +2025-07-10 15:48:27.326 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:27.382 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [58ms] +2025-07-10 15:48:27.869 [info] > git show --textconv :docs/hxzx/商品管理.md [68ms] +2025-07-10 15:48:27.869 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [65ms] +2025-07-10 15:48:27.870 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:27.870 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [63ms] +2025-07-10 15:48:27.873 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [64ms] +2025-07-10 15:48:27.873 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:27.926 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [54ms] +2025-07-10 15:48:29.108 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [55ms] +2025-07-10 15:48:29.111 [info] > git show --textconv :docs/hxzx/分销体系.md [60ms] +2025-07-10 15:48:29.165 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [55ms] +2025-07-10 15:48:31.129 [info] > git show --textconv :docs/hxzx/订单管理.md [62ms] +2025-07-10 15:48:31.130 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [61ms] +2025-07-10 15:48:31.131 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:31.132 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [61ms] +2025-07-10 15:48:31.135 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [63ms] +2025-07-10 15:48:31.136 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:31.190 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [56ms] +2025-07-10 15:48:54.842 [info] > git show --textconv :docs/hxzx/订单管理 copy.md [64ms] +2025-07-10 15:48:54.842 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 15:48:54.842 [info] > git ls-files --stage -- docs/hxzx/订单管理 copy.md [62ms] +2025-07-10 15:48:54.842 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 15:48:55.165 [info] > git check-ignore -v -z --stdin [60ms] +2025-07-10 15:48:55.712 [info] > git config --get commit.template [54ms] +2025-07-10 15:48:55.712 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-10 15:48:55.768 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [54ms] +2025-07-10 15:48:55.770 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:48:55.823 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 15:48:55.883 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 15:48:55.886 [info] > git status -z -uall [61ms] +2025-07-10 15:49:11.335 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [69ms] +2025-07-10 15:49:11.338 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [69ms] +2025-07-10 15:49:14.145 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [60ms] +2025-07-10 15:49:14.145 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [63ms] +2025-07-10 15:49:30.249 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [70ms] +2025-07-10 15:49:30.252 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [69ms] +2025-07-10 15:49:47.150 [info] > git show --textconv :docs/hxzx/分销体系.md [84ms] +2025-07-10 15:49:47.157 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [90ms] +2025-07-10 15:49:47.217 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [56ms] +2025-07-10 15:49:47.373 [info] > git check-ignore -v -z --stdin [55ms] +2025-07-10 15:49:47.956 [info] > git config --get commit.template [54ms] +2025-07-10 15:49:47.956 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-10 15:49:48.013 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 15:49:48.016 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:49:48.068 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 15:49:48.130 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 15:49:48.133 [info] > git status -z -uall [63ms] +2025-07-10 15:50:27.864 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [80ms] +2025-07-10 15:50:27.865 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [79ms] +2025-07-10 15:50:45.779 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [75ms] +2025-07-10 15:50:45.780 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [73ms] +2025-07-10 15:50:56.569 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [90ms] +2025-07-10 15:50:56.571 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [86ms] +2025-07-10 15:51:37.811 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [83ms] +2025-07-10 15:51:37.815 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [81ms] +2025-07-10 15:51:42.565 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 15:51:42.565 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [66ms] +2025-07-10 15:51:44.108 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 15:51:44.670 [info] > git config --get commit.template [53ms] +2025-07-10 15:51:44.670 [info] > git symbolic-ref --short HEAD [56ms] +2025-07-10 15:51:44.728 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 15:51:44.730 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:51:44.784 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 15:51:44.846 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [58ms] +2025-07-10 15:51:44.849 [info] > git status -z -uall [63ms] +2025-07-10 15:52:34.343 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [69ms] +2025-07-10 15:52:34.344 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 15:52:44.950 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [70ms] +2025-07-10 15:52:44.956 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [64ms] +2025-07-10 15:53:56.995 [info] > git show --textconv :docs/hxzx/订单管理.md [64ms] +2025-07-10 15:53:56.995 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [61ms] +2025-07-10 15:53:56.998 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [66ms] +2025-07-10 15:53:56.998 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:53:56.999 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [61ms] +2025-07-10 15:53:56.999 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:53:57.052 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [54ms] +2025-07-10 15:54:02.232 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [61ms] +2025-07-10 15:54:02.232 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [59ms] +2025-07-10 15:54:03.755 [info] > git show --textconv :docs/hxzx/账号权限管理.md [64ms] +2025-07-10 15:54:03.755 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [62ms] +2025-07-10 15:54:03.756 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:54:03.757 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [62ms] +2025-07-10 15:54:03.761 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [63ms] +2025-07-10 15:54:03.761 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:54:03.813 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [54ms] +2025-07-10 15:54:04.206 [info] > git show --textconv :docs/hxzx/营销管理.md [61ms] +2025-07-10 15:54:04.210 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [62ms] +2025-07-10 15:54:04.210 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:54:04.211 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [61ms] +2025-07-10 15:54:04.213 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [62ms] +2025-07-10 15:54:04.213 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:54:04.268 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [55ms] +2025-07-10 15:54:04.608 [info] > git show --textconv :docs/hxzx/商品管理.md [64ms] +2025-07-10 15:54:04.609 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [63ms] +2025-07-10 15:54:04.610 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:54:04.614 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [65ms] +2025-07-10 15:54:04.616 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [65ms] +2025-07-10 15:54:04.617 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:54:04.672 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [55ms] +2025-07-10 15:54:04.940 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [59ms] +2025-07-10 15:54:04.943 [info] > git show --textconv :docs/hxzx/分销体系.md [64ms] +2025-07-10 15:54:04.998 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [56ms] +2025-07-10 15:54:08.486 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [59ms] +2025-07-10 15:54:08.486 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [61ms] +2025-07-10 15:54:43.406 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [87ms] +2025-07-10 15:54:43.409 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [82ms] +2025-07-10 15:54:45.060 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [63ms] +2025-07-10 15:54:45.061 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 15:54:51.366 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 15:54:51.927 [info] > git config --get commit.template [55ms] +2025-07-10 15:54:51.928 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 15:54:51.985 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 15:54:51.987 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:54:52.041 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 15:54:52.102 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-10 15:54:52.106 [info] > git status -z -uall [63ms] +2025-07-10 15:55:48.143 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [79ms] +2025-07-10 15:55:48.143 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [68ms] +2025-07-10 15:56:14.147 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [122ms] +2025-07-10 15:56:14.149 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [119ms] +2025-07-10 15:56:36.111 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [86ms] +2025-07-10 15:56:36.117 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [89ms] +2025-07-10 15:56:37.432 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [68ms] +2025-07-10 15:56:37.432 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [65ms] +2025-07-10 15:56:45.491 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [69ms] +2025-07-10 15:56:45.493 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [68ms] +2025-07-10 15:56:46.084 [info] > git check-ignore -v -z --stdin [55ms] +2025-07-10 15:56:46.632 [info] > git config --get commit.template [58ms] +2025-07-10 15:56:46.633 [info] > git symbolic-ref --short HEAD [61ms] +2025-07-10 15:56:46.692 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 15:56:46.695 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:56:46.748 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 15:56:46.810 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 15:56:46.814 [info] > git status -z -uall [63ms] +2025-07-10 15:57:07.152 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [72ms] +2025-07-10 15:57:07.155 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [72ms] +2025-07-10 15:57:27.291 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [102ms] +2025-07-10 15:57:27.294 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [100ms] +2025-07-10 15:57:30.964 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [64ms] +2025-07-10 15:57:30.966 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 15:57:38.030 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [75ms] +2025-07-10 15:57:38.031 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [79ms] +2025-07-10 15:57:42.388 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [74ms] +2025-07-10 15:57:42.392 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [71ms] +2025-07-10 15:57:49.768 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [75ms] +2025-07-10 15:57:49.770 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [74ms] +2025-07-10 15:57:50.363 [info] > git check-ignore -v -z --stdin [60ms] +2025-07-10 15:57:50.922 [info] > git config --get commit.template [57ms] +2025-07-10 15:57:50.922 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 15:57:50.980 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 15:57:50.983 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:57:51.040 [info] > git rev-parse refs/remotes/origin/master [57ms] +2025-07-10 15:57:51.104 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 15:57:51.107 [info] > git status -z -uall [65ms] +2025-07-10 15:58:00.333 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [54ms] +2025-07-10 15:58:00.336 [info] > git show --textconv :docs/hxzx/分销体系.md [59ms] +2025-07-10 15:58:00.390 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [56ms] +2025-07-10 15:58:01.510 [info] > git show --textconv :docs/hxzx/商品管理.md [67ms] +2025-07-10 15:58:01.512 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [66ms] +2025-07-10 15:58:01.512 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:58:01.512 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [64ms] +2025-07-10 15:58:01.516 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [66ms] +2025-07-10 15:58:01.517 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:58:01.570 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [56ms] +2025-07-10 15:58:02.800 [info] > git show --textconv :docs/hxzx/营销管理.md [63ms] +2025-07-10 15:58:02.800 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [61ms] +2025-07-10 15:58:02.801 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:58:02.803 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-10 15:58:02.807 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [63ms] +2025-07-10 15:58:02.807 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:58:02.862 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [56ms] +2025-07-10 15:58:04.319 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [59ms] +2025-07-10 15:58:04.322 [info] > git show --textconv :docs/hxzx/分销体系.md [64ms] +2025-07-10 15:58:04.377 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [55ms] +2025-07-10 15:58:14.450 [info] > git show --textconv :docs/hxzx/商品管理.md [64ms] +2025-07-10 15:58:14.451 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [63ms] +2025-07-10 15:58:14.452 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:58:14.453 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [63ms] +2025-07-10 15:58:14.456 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [64ms] +2025-07-10 15:58:14.457 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:58:14.512 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [56ms] +2025-07-10 15:58:15.043 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [64ms] +2025-07-10 15:58:15.043 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:58:15.043 [info] > git show --textconv :docs/hxzx/营销管理.md [67ms] +2025-07-10 15:58:15.044 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [63ms] +2025-07-10 15:58:15.046 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [64ms] +2025-07-10 15:58:15.047 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:58:15.104 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [57ms] +2025-07-10 15:58:38.398 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [68ms] +2025-07-10 15:58:38.398 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [79ms] +2025-07-10 15:59:09.450 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [76ms] +2025-07-10 15:59:09.452 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [73ms] +2025-07-10 15:59:19.073 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [64ms] +2025-07-10 15:59:19.073 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [76ms] +2025-07-10 16:00:17.633 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [98ms] +2025-07-10 16:00:17.650 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [119ms] +2025-07-10 16:00:32.967 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [70ms] +2025-07-10 16:00:32.967 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [75ms] +2025-07-10 16:00:43.768 [info] > git show --textconv :docs/hxzx/终端管理 copy.md [64ms] +2025-07-10 16:00:43.768 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:00:43.769 [info] > git ls-files --stage -- docs/hxzx/终端管理 copy.md [63ms] +2025-07-10 16:00:43.769 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:00:44.092 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 16:00:44.594 [info] > git config --get commit.template [58ms] +2025-07-10 16:00:44.594 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-10 16:00:44.656 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-10 16:00:44.658 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:00:44.720 [info] > git rev-parse refs/remotes/origin/master [61ms] +2025-07-10 16:00:44.784 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 16:00:44.788 [info] > git status -z -uall [66ms] +2025-07-10 16:00:52.170 [info] > git show --textconv :docs/hxzx/安全管理.md [63ms] +2025-07-10 16:00:52.171 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:00:52.171 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [61ms] +2025-07-10 16:00:52.171 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:00:52.461 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 16:00:52.996 [info] > git config --get commit.template [53ms] +2025-07-10 16:00:52.996 [info] > git symbolic-ref --short HEAD [55ms] +2025-07-10 16:00:53.055 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 16:00:53.057 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:00:53.110 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 16:00:53.171 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 16:00:53.175 [info] > git status -z -uall [62ms] +2025-07-10 16:01:13.050 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [87ms] +2025-07-10 16:01:13.050 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [84ms] +2025-07-10 16:01:21.275 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [77ms] +2025-07-10 16:01:21.280 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [78ms] +2025-07-10 16:02:06.510 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [73ms] +2025-07-10 16:02:06.512 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [70ms] +2025-07-10 16:02:23.415 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [84ms] +2025-07-10 16:02:23.416 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [79ms] +2025-07-10 16:02:29.344 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 16:02:29.347 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 16:02:34.731 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [71ms] +2025-07-10 16:02:34.732 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [68ms] +2025-07-10 16:02:53.074 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [59ms] +2025-07-10 16:02:53.075 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [57ms] +2025-07-10 16:02:54.415 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 16:02:54.974 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 16:02:54.976 [info] > git config --get commit.template [59ms] +2025-07-10 16:02:55.034 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 16:02:55.036 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:02:55.092 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 16:02:55.153 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 16:02:55.157 [info] > git status -z -uall [63ms] +2025-07-10 16:03:23.251 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [81ms] +2025-07-10 16:03:23.254 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [79ms] +2025-07-10 16:03:35.230 [info] > git show --textconv :docs/hxzx/账号权限管理.md [65ms] +2025-07-10 16:03:35.231 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:03:35.231 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:35.233 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:03:35.235 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:03:35.236 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:35.291 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [56ms] +2025-07-10 16:03:35.601 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [64ms] +2025-07-10 16:03:35.601 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:35.601 [info] > git show --textconv :docs/hxzx/营销管理.md [66ms] +2025-07-10 16:03:35.602 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [63ms] +2025-07-10 16:03:35.605 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [64ms] +2025-07-10 16:03:35.605 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:35.659 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [55ms] +2025-07-10 16:03:35.968 [info] > git show --textconv :docs/hxzx/商品管理.md [66ms] +2025-07-10 16:03:35.973 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [68ms] +2025-07-10 16:03:35.973 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:35.973 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [66ms] +2025-07-10 16:03:35.976 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [67ms] +2025-07-10 16:03:35.977 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:36.031 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [55ms] +2025-07-10 16:03:36.279 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [56ms] +2025-07-10 16:03:36.282 [info] > git show --textconv :docs/hxzx/分销体系.md [61ms] +2025-07-10 16:03:36.337 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [56ms] +2025-07-10 16:03:36.602 [info] > git show --textconv :docs/hxzx/订单管理.md [62ms] +2025-07-10 16:03:36.605 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [62ms] +2025-07-10 16:03:36.607 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [66ms] +2025-07-10 16:03:36.608 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:36.608 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [63ms] +2025-07-10 16:03:36.608 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:36.663 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [56ms] +2025-07-10 16:03:37.844 [info] > git show --textconv :docs/hxzx/登录后台.md [62ms] +2025-07-10 16:03:37.845 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [61ms] +2025-07-10 16:03:37.846 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:37.846 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [60ms] +2025-07-10 16:03:37.851 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [62ms] +2025-07-10 16:03:37.851 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:37.902 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [53ms] +2025-07-10 16:03:41.812 [info] > git show --textconv :docs/hxzx/登录后台.md [68ms] +2025-07-10 16:03:41.814 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [67ms] +2025-07-10 16:03:41.814 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:41.815 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [66ms] +2025-07-10 16:03:41.817 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [66ms] +2025-07-10 16:03:41.818 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:41.871 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [54ms] +2025-07-10 16:03:46.932 [info] > git show --textconv :docs/hxzx/登录后台.md [63ms] +2025-07-10 16:03:46.936 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [64ms] +2025-07-10 16:03:46.936 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:46.938 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [65ms] +2025-07-10 16:03:46.941 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [65ms] +2025-07-10 16:03:46.941 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:46.997 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [57ms] +2025-07-10 16:03:56.657 [info] > git ls-files --stage -- docs/hxzx/安全管理 copy.md [60ms] +2025-07-10 16:03:56.657 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:03:56.657 [info] > git show --textconv :docs/hxzx/安全管理 copy.md [63ms] +2025-07-10 16:03:56.657 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:03:56.960 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 16:03:57.525 [info] > git config --get commit.template [60ms] +2025-07-10 16:03:57.526 [info] > git symbolic-ref --short HEAD [64ms] +2025-07-10 16:03:57.589 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [60ms] +2025-07-10 16:03:57.591 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:03:57.655 [info] > git rev-parse refs/remotes/origin/master [63ms] +2025-07-10 16:03:57.716 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 16:03:57.720 [info] > git status -z -uall [62ms] +2025-07-10 16:04:07.695 [info] > git show --textconv :docs/hxzx/常见问题解答.md [60ms] +2025-07-10 16:04:07.695 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:04:07.695 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [59ms] +2025-07-10 16:04:07.696 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:04:07.986 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 16:04:08.523 [info] > git config --get commit.template [57ms] +2025-07-10 16:04:08.524 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-10 16:04:08.606 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [80ms] +2025-07-10 16:04:08.609 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:04:08.666 [info] > git rev-parse refs/remotes/origin/master [58ms] +2025-07-10 16:04:08.725 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 16:04:08.730 [info] > git status -z -uall [62ms] +2025-07-10 16:04:08.786 [info] > git show --textconv :docs/hxzx/常见问题解答.md [56ms] +2025-07-10 16:04:08.787 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:04:08.788 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [54ms] +2025-07-10 16:04:08.788 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:04:43.494 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [111ms] +2025-07-10 16:04:43.503 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [185ms] +2025-07-10 16:04:51.258 [info] > git ls-files --stage -- docs/bxgo/1、登录系统.md [56ms] +2025-07-10 16:04:51.260 [info] > git show --textconv :docs/bxgo/1、登录系统.md [61ms] +2025-07-10 16:04:51.315 [info] > git cat-file -s dcc83ab8f7bf58fc8c20a32e8243a563edf86f19 [55ms] +2025-07-10 16:05:06.283 [info] > git show --textconv :docs/hxzx/登录后台.md [62ms] +2025-07-10 16:05:06.287 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [64ms] +2025-07-10 16:05:06.287 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:05:06.287 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [62ms] +2025-07-10 16:05:06.290 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [62ms] +2025-07-10 16:05:06.290 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:05:06.345 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [55ms] +2025-07-10 16:05:59.395 [info] > git show --textconv :docs/hxzx/商品管理.md [62ms] +2025-07-10 16:05:59.399 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [62ms] +2025-07-10 16:05:59.402 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [67ms] +2025-07-10 16:05:59.402 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:05:59.402 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [63ms] +2025-07-10 16:05:59.403 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:05:59.459 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [57ms] +2025-07-10 16:06:00.632 [info] > git show --textconv :docs/hxzx/营销管理.md [63ms] +2025-07-10 16:06:00.636 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-10 16:06:00.638 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [66ms] +2025-07-10 16:06:00.638 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [62ms] +2025-07-10 16:06:00.639 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:06:00.639 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:06:00.693 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [54ms] +2025-07-10 16:06:01.045 [info] > git show --textconv :docs/hxzx/账号权限管理.md [72ms] +2025-07-10 16:06:01.045 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [70ms] +2025-07-10 16:06:01.046 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:06:01.047 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [68ms] +2025-07-10 16:06:01.052 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 16:06:01.052 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:06:01.103 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [54ms] +2025-07-10 16:06:04.879 [info] > git show --textconv :docs/hxzx/营销管理.md [64ms] +2025-07-10 16:06:04.879 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [62ms] +2025-07-10 16:06:04.880 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:06:04.884 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [64ms] +2025-07-10 16:06:04.886 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [65ms] +2025-07-10 16:06:04.887 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:06:04.940 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [54ms] +2025-07-10 16:06:45.703 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [88ms] +2025-07-10 16:06:45.703 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [84ms] +2025-07-10 16:06:58.141 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [75ms] +2025-07-10 16:06:58.142 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [79ms] +2025-07-10 16:07:16.244 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [107ms] +2025-07-10 16:07:16.262 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [121ms] +2025-07-10 16:07:27.738 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [73ms] +2025-07-10 16:07:27.740 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [72ms] +2025-07-10 16:07:28.350 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 16:07:28.912 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-10 16:07:28.915 [info] > git config --get commit.template [61ms] +2025-07-10 16:07:28.974 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-10 16:07:28.977 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:07:29.048 [info] > git rev-parse refs/remotes/origin/master [72ms] +2025-07-10 16:07:29.108 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 16:07:29.112 [info] > git status -z -uall [61ms] +2025-07-10 16:07:36.231 [info] > git show --textconv :docs/hxzx/分销体系.md [65ms] +2025-07-10 16:07:36.231 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [62ms] +2025-07-10 16:07:36.289 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [55ms] +2025-07-10 16:07:37.410 [info] > git show --textconv :docs/hxzx/商品管理.md [62ms] +2025-07-10 16:07:37.411 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [62ms] +2025-07-10 16:07:37.412 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:07:37.416 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [64ms] +2025-07-10 16:07:37.419 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [65ms] +2025-07-10 16:07:37.419 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:07:37.474 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [55ms] +2025-07-10 16:07:38.811 [info] > git show --textconv :docs/hxzx/营销管理.md [63ms] +2025-07-10 16:07:38.813 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [62ms] +2025-07-10 16:07:38.813 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:07:38.815 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-10 16:07:38.817 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [63ms] +2025-07-10 16:07:38.818 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:07:38.871 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [55ms] +2025-07-10 16:08:09.001 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [83ms] +2025-07-10 16:08:09.005 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [79ms] +2025-07-10 16:08:15.021 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 16:08:15.021 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [65ms] +2025-07-10 16:08:19.605 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [93ms] +2025-07-10 16:08:19.633 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [112ms] +2025-07-10 16:08:20.188 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 16:08:20.733 [info] > git symbolic-ref --short HEAD [63ms] +2025-07-10 16:08:20.736 [info] > git config --get commit.template [63ms] +2025-07-10 16:08:20.794 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-10 16:08:20.796 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:08:20.850 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 16:08:20.911 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 16:08:20.915 [info] > git status -z -uall [62ms] +2025-07-10 16:08:26.956 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [61ms] +2025-07-10 16:08:26.956 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:08:26.956 [info] > git show --textconv :docs/hxzx/营销管理.md [65ms] +2025-07-10 16:08:26.959 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-10 16:08:26.962 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [63ms] +2025-07-10 16:08:26.962 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:08:27.018 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [57ms] +2025-07-10 16:08:43.253 [info] > git ls-files --stage -- docs/app/好生意App/App下载使用.md [55ms] +2025-07-10 16:08:43.255 [info] > git show --textconv :docs/app/好生意App/App下载使用.md [60ms] +2025-07-10 16:08:43.309 [info] > git cat-file -s 9c6da6c191281b25455afbd236997d5c45168b37 [54ms] +2025-07-10 16:09:31.609 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [65ms] +2025-07-10 16:09:31.609 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [68ms] +2025-07-10 16:09:36.935 [info] > git ls-files --stage -- docs/bxgo/1、登录系统.md [55ms] +2025-07-10 16:09:36.937 [info] > git show --textconv :docs/bxgo/1、登录系统.md [59ms] +2025-07-10 16:09:36.990 [info] > git cat-file -s dcc83ab8f7bf58fc8c20a32e8243a563edf86f19 [53ms] +2025-07-10 16:09:53.219 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 16:10:02.174 [info] > git check-ignore -v -z --stdin [63ms] +2025-07-10 16:10:02.880 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 16:10:07.736 [info] > git ls-files --stage -- docs/zsw/cashier_system/inventory.md [55ms] +2025-07-10 16:10:07.738 [info] > git show --textconv :docs/zsw/cashier_system/inventory.md [60ms] +2025-07-10 16:10:07.792 [info] > git cat-file -s e39dd3080664c66bff1ecc71f24280d63e01bd65 [55ms] +2025-07-10 16:10:38.756 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 16:10:39.991 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 16:10:49.052 [info] > git ls-files --stage -- docs/bxgo/商品管理/管理商品.md [56ms] +2025-07-10 16:10:49.054 [info] > git show --textconv :docs/bxgo/商品管理/管理商品.md [60ms] +2025-07-10 16:10:49.112 [info] > git cat-file -s 06c065d07716033ac3e709ab01d5a44a5228e505 [58ms] +2025-07-10 16:11:08.361 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [76ms] +2025-07-10 16:11:08.361 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [72ms] +2025-07-10 16:11:17.714 [info] > git ls-files --stage -- docs/crm/1、登录系统.md [56ms] +2025-07-10 16:11:17.716 [info] > git show --textconv :docs/crm/1、登录系统.md [60ms] +2025-07-10 16:11:17.771 [info] > git cat-file -s e2f8c2ea8433f89ea0083966503a5686ca12987d [55ms] +2025-07-10 16:11:21.265 [info] > git ls-files --stage -- docs/crm/2、客户管理.md [55ms] +2025-07-10 16:11:21.268 [info] > git show --textconv :docs/crm/2、客户管理.md [60ms] +2025-07-10 16:11:21.322 [info] > git cat-file -s b55a419db338067f2d62f57b01faebae944a89d1 [55ms] +2025-07-10 16:11:24.461 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 16:11:25.323 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 16:11:32.947 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 16:11:47.903 [info] > git ls-files --stage -- docs/odoo/bom.md [57ms] +2025-07-10 16:11:47.907 [info] > git show --textconv :docs/odoo/bom.md [63ms] +2025-07-10 16:11:47.962 [info] > git cat-file -s 425085f10c68e31f0924eb923bbc5469517870fa [56ms] +2025-07-10 16:11:57.328 [info] > git ls-files --stage -- docs/odoo/login.md [60ms] +2025-07-10 16:11:57.331 [info] > git show --textconv :docs/odoo/login.md [65ms] +2025-07-10 16:11:57.385 [info] > git cat-file -s dee0aeb518354cc3c1c9f4f65c2a2c608fc60490 [55ms] +2025-07-10 16:12:17.434 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [61ms] +2025-07-10 16:12:17.436 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [60ms] +2025-07-10 16:12:19.382 [info] > git show --textconv :docs/odoo/orderpoint.md [89ms] +2025-07-10 16:12:19.387 [info] > git ls-files --stage -- docs/odoo/orderpoint.md [89ms] +2025-07-10 16:12:19.443 [info] > git cat-file -s bcb496bfc3ff352121fda284b1c4339749547d6f [54ms] +2025-07-10 16:12:22.354 [info] > git ls-files --stage -- docs/odoo/login.md [58ms] +2025-07-10 16:12:22.357 [info] > git show --textconv :docs/odoo/login.md [64ms] +2025-07-10 16:12:22.416 [info] > git cat-file -s dee0aeb518354cc3c1c9f4f65c2a2c608fc60490 [58ms] +2025-07-10 16:12:23.148 [info] > git ls-files --stage -- docs/odoo/inventory.md [54ms] +2025-07-10 16:12:23.151 [info] > git show --textconv :docs/odoo/inventory.md [59ms] +2025-07-10 16:12:23.205 [info] > git cat-file -s 20d153093e1f4f9329e4cc629ebd1aa3a58cbc58 [55ms] +2025-07-10 16:12:24.117 [info] > git ls-files --stage -- docs/odoo/import.md [55ms] +2025-07-10 16:12:24.120 [info] > git show --textconv :docs/odoo/import.md [59ms] +2025-07-10 16:12:24.175 [info] > git cat-file -s cde90128defd5c8eb9657163e91aead4f4b44ad2 [55ms] +2025-07-10 16:12:27.797 [info] > git ls-files --stage -- docs/odoo/customer.md [55ms] +2025-07-10 16:12:27.800 [info] > git show --textconv :docs/odoo/customer.md [59ms] +2025-07-10 16:12:27.853 [info] > git cat-file -s a860ed033e36ee0c21299cc829607c8390fc7f64 [54ms] +2025-07-10 16:12:29.132 [info] > git ls-files --stage -- docs/odoo/bom.md [55ms] +2025-07-10 16:12:29.134 [info] > git show --textconv :docs/odoo/bom.md [59ms] +2025-07-10 16:12:29.189 [info] > git cat-file -s 425085f10c68e31f0924eb923bbc5469517870fa [54ms] +2025-07-10 16:12:31.136 [info] > git ls-files --stage -- docs/odoo/settlement.md [57ms] +2025-07-10 16:12:31.139 [info] > git show --textconv :docs/odoo/settlement.md [62ms] +2025-07-10 16:12:31.196 [info] > git cat-file -s 99cd10f94425b6d77c212b09c2e3c0e99a7b86d2 [58ms] +2025-07-10 16:12:32.319 [info] > git ls-files --stage -- docs/odoo/start.md [59ms] +2025-07-10 16:12:32.321 [info] > git show --textconv :docs/odoo/start.md [64ms] +2025-07-10 16:12:32.379 [info] > git cat-file -s f3c32b318d463b06c9f6f421ffbe48877e4e463b [58ms] +2025-07-10 16:12:33.145 [info] > git ls-files --stage -- docs/odoo/store.md [59ms] +2025-07-10 16:12:33.147 [info] > git show --textconv :docs/odoo/store.md [63ms] +2025-07-10 16:12:33.201 [info] > git cat-file -s fad7ce92561c4f7af1c12dd8c18fd931b22ed4de [54ms] +2025-07-10 16:12:34.414 [info] > git ls-files --stage -- docs/odoo/users.md [53ms] +2025-07-10 16:12:34.417 [info] > git show --textconv :docs/odoo/users.md [57ms] +2025-07-10 16:12:34.470 [info] > git cat-file -s 3a25060307d7229667f9047fef9b55f667095bf7 [54ms] +2025-07-10 16:13:11.792 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [65ms] +2025-07-10 16:13:11.792 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 16:13:16.685 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/odoo/users.md [59ms] +2025-07-10 16:14:08.320 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [70ms] +2025-07-10 16:14:08.320 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 16:14:22.099 [info] > git ls-files --stage -- docs/odoo/bom.md [57ms] +2025-07-10 16:14:22.102 [info] > git show --textconv :docs/odoo/bom.md [61ms] +2025-07-10 16:14:22.156 [info] > git cat-file -s 425085f10c68e31f0924eb923bbc5469517870fa [55ms] +2025-07-10 16:14:46.874 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [66ms] +2025-07-10 16:14:46.875 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [63ms] +2025-07-10 16:15:14.524 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [87ms] +2025-07-10 16:15:14.543 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [104ms] +2025-07-10 16:15:25.824 [info] > git show --textconv :docs/hxzx/登录后台.md [65ms] +2025-07-10 16:15:25.824 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [63ms] +2025-07-10 16:15:25.825 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:15:25.826 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [62ms] +2025-07-10 16:15:25.829 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [63ms] +2025-07-10 16:15:25.829 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:15:25.882 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [53ms] +2025-07-10 16:15:32.002 [info] > git show --textconv :docs/hxzx/订单管理.md [61ms] +2025-07-10 16:15:32.003 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [60ms] +2025-07-10 16:15:32.003 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:15:32.006 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [61ms] +2025-07-10 16:15:32.009 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [61ms] +2025-07-10 16:15:32.009 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:15:32.063 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [55ms] +2025-07-10 16:15:39.252 [info] > git show --textconv :docs/hxzx/分销体系.md [69ms] +2025-07-10 16:15:39.253 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [68ms] +2025-07-10 16:15:39.315 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [59ms] +2025-07-10 16:15:41.419 [info] > git show --textconv :docs/hxzx/商品管理.md [63ms] +2025-07-10 16:15:41.420 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [61ms] +2025-07-10 16:15:41.420 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:15:41.420 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [60ms] +2025-07-10 16:15:41.424 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [61ms] +2025-07-10 16:15:41.424 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:15:41.477 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [55ms] +2025-07-10 16:16:01.190 [info] > git show --textconv :docs/hxzx/登录后台.md [67ms] +2025-07-10 16:16:01.192 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [67ms] +2025-07-10 16:16:01.192 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:16:01.194 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [66ms] +2025-07-10 16:16:01.196 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [65ms] +2025-07-10 16:16:01.197 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:16:01.249 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [53ms] +2025-07-10 16:16:03.089 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [61ms] +2025-07-10 16:16:03.089 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:16:03.090 [info] > git show --textconv :docs/hxzx/订单管理.md [64ms] +2025-07-10 16:16:03.091 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [61ms] +2025-07-10 16:16:03.094 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [62ms] +2025-07-10 16:16:03.094 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:16:03.150 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [57ms] +2025-07-10 16:16:04.349 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [57ms] +2025-07-10 16:16:04.352 [info] > git show --textconv :docs/hxzx/分销体系.md [62ms] +2025-07-10 16:16:04.407 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [55ms] +2025-07-10 16:16:05.036 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [60ms] +2025-07-10 16:16:05.036 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:16:05.037 [info] > git show --textconv :docs/hxzx/商品管理.md [63ms] +2025-07-10 16:16:05.040 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [62ms] +2025-07-10 16:16:05.042 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [62ms] +2025-07-10 16:16:05.043 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:16:05.096 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [54ms] +2025-07-10 16:16:12.137 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [59ms] +2025-07-10 16:16:12.139 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [63ms] +2025-07-10 16:16:12.140 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:16:12.140 [info] > git show --textconv :docs/hxzx/登录后台.md [66ms] +2025-07-10 16:16:12.142 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [62ms] +2025-07-10 16:16:12.142 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:16:12.194 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [55ms] +2025-07-10 16:16:19.401 [info] > git show --textconv :docs/hxzx/订单管理.md [61ms] +2025-07-10 16:16:19.406 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [64ms] +2025-07-10 16:16:19.406 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:16:19.407 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [62ms] +2025-07-10 16:16:19.409 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [63ms] +2025-07-10 16:16:19.410 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:16:19.469 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [60ms] +2025-07-10 16:16:20.154 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [62ms] +2025-07-10 16:16:20.154 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:16:20.154 [info] > git show --textconv :docs/hxzx/商品管理.md [65ms] +2025-07-10 16:16:20.156 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [62ms] +2025-07-10 16:16:20.159 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [63ms] +2025-07-10 16:16:20.159 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:16:20.212 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [54ms] +2025-07-10 16:17:16.814 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [86ms] +2025-07-10 16:17:16.816 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [76ms] +2025-07-10 16:17:29.411 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [89ms] +2025-07-10 16:17:29.412 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [81ms] +2025-07-10 16:17:29.989 [info] > git check-ignore -v -z --stdin [52ms] +2025-07-10 16:17:30.578 [info] > git symbolic-ref --short HEAD [65ms] +2025-07-10 16:17:30.580 [info] > git config --get commit.template [65ms] +2025-07-10 16:17:30.639 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [58ms] +2025-07-10 16:17:30.641 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:17:30.746 [info] > git rev-parse refs/remotes/origin/master [104ms] +2025-07-10 16:17:30.814 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [63ms] +2025-07-10 16:17:30.819 [info] > git status -z -uall [71ms] +2025-07-10 16:17:35.582 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [60ms] +2025-07-10 16:17:35.582 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:35.583 [info] > git show --textconv :docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:17:35.586 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [61ms] +2025-07-10 16:17:35.588 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:17:35.588 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:35.647 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [59ms] +2025-07-10 16:17:35.884 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-10 16:17:35.886 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [66ms] +2025-07-10 16:17:35.887 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:35.887 [info] > git show --textconv :docs/hxzx/营销管理.md [69ms] +2025-07-10 16:17:35.887 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [63ms] +2025-07-10 16:17:35.888 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:35.939 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [53ms] +2025-07-10 16:17:37.044 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [64ms] +2025-07-10 16:17:37.044 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:37.044 [info] > git show --textconv :docs/hxzx/商品管理.md [66ms] +2025-07-10 16:17:37.045 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [62ms] +2025-07-10 16:17:37.048 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [63ms] +2025-07-10 16:17:37.048 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:37.104 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [57ms] +2025-07-10 16:17:37.601 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [58ms] +2025-07-10 16:17:37.604 [info] > git show --textconv :docs/hxzx/分销体系.md [63ms] +2025-07-10 16:17:37.665 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [62ms] +2025-07-10 16:17:37.938 [info] > git show --textconv :docs/hxzx/订单管理.md [67ms] +2025-07-10 16:17:37.938 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [65ms] +2025-07-10 16:17:37.939 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:37.940 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [65ms] +2025-07-10 16:17:37.942 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [64ms] +2025-07-10 16:17:37.943 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:38.000 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [58ms] +2025-07-10 16:17:39.362 [info] > git show --textconv :docs/hxzx/账号权限管理.md [64ms] +2025-07-10 16:17:39.363 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [61ms] +2025-07-10 16:17:39.363 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:39.365 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [61ms] +2025-07-10 16:17:39.368 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [63ms] +2025-07-10 16:17:39.368 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:39.421 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [54ms] +2025-07-10 16:17:39.719 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [59ms] +2025-07-10 16:17:39.722 [info] > git show --textconv :docs/hxzx/分销体系.md [63ms] +2025-07-10 16:17:39.775 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [54ms] +2025-07-10 16:17:45.350 [info] > git show --textconv :docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:17:45.352 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:17:45.352 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:45.354 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [63ms] +2025-07-10 16:17:45.356 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:17:45.357 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:45.410 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [54ms] +2025-07-10 16:17:45.697 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [69ms] +2025-07-10 16:17:45.698 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:45.698 [info] > git show --textconv :docs/hxzx/营销管理.md [73ms] +2025-07-10 16:17:45.702 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [72ms] +2025-07-10 16:17:45.705 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [70ms] +2025-07-10 16:17:45.705 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:45.772 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [67ms] +2025-07-10 16:17:46.128 [info] > git show --textconv :docs/hxzx/商品管理.md [62ms] +2025-07-10 16:17:46.132 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [63ms] +2025-07-10 16:17:46.133 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:46.134 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [63ms] +2025-07-10 16:17:46.136 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [63ms] +2025-07-10 16:17:46.137 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:46.190 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [54ms] +2025-07-10 16:17:46.516 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [57ms] +2025-07-10 16:17:46.520 [info] > git show --textconv :docs/hxzx/分销体系.md [62ms] +2025-07-10 16:17:46.574 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [55ms] +2025-07-10 16:17:46.955 [info] > git show --textconv :docs/hxzx/订单管理.md [80ms] +2025-07-10 16:17:46.959 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [83ms] +2025-07-10 16:17:46.959 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:46.962 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [84ms] +2025-07-10 16:17:46.969 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [88ms] +2025-07-10 16:17:46.969 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:47.033 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [69ms] +2025-07-10 16:17:47.616 [info] > git show --textconv :docs/hxzx/登录后台.md [61ms] +2025-07-10 16:17:47.617 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [60ms] +2025-07-10 16:17:47.618 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:47.620 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [60ms] +2025-07-10 16:17:47.623 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [61ms] +2025-07-10 16:17:47.623 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:47.676 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [55ms] +2025-07-10 16:17:50.009 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [60ms] +2025-07-10 16:17:50.012 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [64ms] +2025-07-10 16:17:50.012 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:50.012 [info] > git show --textconv :docs/hxzx/登录后台.md [68ms] +2025-07-10 16:17:50.013 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [61ms] +2025-07-10 16:17:50.013 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:50.066 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [54ms] +2025-07-10 16:17:50.468 [info] > git show --textconv :docs/hxzx/订单管理.md [62ms] +2025-07-10 16:17:50.472 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [62ms] +2025-07-10 16:17:50.474 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [66ms] +2025-07-10 16:17:50.474 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:50.475 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [62ms] +2025-07-10 16:17:50.475 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:50.529 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [55ms] +2025-07-10 16:18:03.056 [info] > git show --textconv :docs/hxzx/订单管理.md [69ms] +2025-07-10 16:18:03.060 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [70ms] +2025-07-10 16:18:03.060 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:18:03.062 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [70ms] +2025-07-10 16:18:03.064 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [69ms] +2025-07-10 16:18:03.064 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:18:03.119 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [55ms] +2025-07-10 16:18:04.819 [info] > git show --textconv :docs/hxzx/商品管理.md [62ms] +2025-07-10 16:18:04.820 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [61ms] +2025-07-10 16:18:04.821 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:18:04.823 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [62ms] +2025-07-10 16:18:04.826 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [63ms] +2025-07-10 16:18:04.826 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:18:04.882 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [57ms] +2025-07-10 16:18:06.258 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [64ms] +2025-07-10 16:18:06.258 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:18:06.259 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-10 16:18:06.261 [info] > git show --textconv :docs/hxzx/营销管理.md [69ms] +2025-07-10 16:18:06.261 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [61ms] +2025-07-10 16:18:06.262 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:18:06.318 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [57ms] +2025-07-10 16:18:07.050 [info] > git show --textconv :docs/hxzx/账号权限管理.md [63ms] +2025-07-10 16:18:07.050 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [61ms] +2025-07-10 16:18:07.050 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:18:07.053 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [61ms] +2025-07-10 16:18:07.057 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [63ms] +2025-07-10 16:18:07.057 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:18:07.111 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [57ms] +2025-07-10 16:18:13.288 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [94ms] +2025-07-10 16:18:13.289 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:18:13.291 [info] > git show --textconv :docs/hxzx/登录后台.md [99ms] +2025-07-10 16:18:13.300 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [103ms] +2025-07-10 16:18:13.302 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [102ms] +2025-07-10 16:18:13.302 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:18:13.355 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [53ms] +2025-07-10 16:18:43.557 [info] > git ls-files --stage -- docs/crm/1、登录系统.md [53ms] +2025-07-10 16:18:43.559 [info] > git show --textconv :docs/crm/1、登录系统.md [58ms] +2025-07-10 16:18:43.613 [info] > git cat-file -s e2f8c2ea8433f89ea0083966503a5686ca12987d [54ms] +2025-07-10 16:19:05.978 [info] > git show --textconv :docs/hxzx/登录后台.md [65ms] +2025-07-10 16:19:05.978 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [63ms] +2025-07-10 16:19:05.978 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:19:05.980 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [61ms] +2025-07-10 16:19:05.984 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [63ms] +2025-07-10 16:19:05.984 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:19:06.038 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [55ms] +2025-07-10 16:19:08.065 [info] > git show --textconv :docs/hxzx/订单管理.md [89ms] +2025-07-10 16:19:08.074 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [92ms] +2025-07-10 16:19:08.077 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [98ms] +2025-07-10 16:19:08.077 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [91ms] +2025-07-10 16:19:08.077 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:19:08.077 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:19:08.130 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [53ms] +2025-07-10 16:19:10.833 [info] > git show --textconv :docs/hxzx/商品管理.md [63ms] +2025-07-10 16:19:10.839 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [66ms] +2025-07-10 16:19:10.839 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:19:10.840 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [65ms] +2025-07-10 16:19:10.842 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [65ms] +2025-07-10 16:19:10.842 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:19:10.903 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [61ms] +2025-07-10 16:19:13.567 [info] > git show --textconv :docs/hxzx/营销管理.md [62ms] +2025-07-10 16:19:13.567 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [60ms] +2025-07-10 16:19:13.567 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:19:13.570 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-10 16:19:13.573 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [62ms] +2025-07-10 16:19:13.573 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:19:13.626 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [53ms] +2025-07-10 16:19:15.154 [info] > git show --textconv :docs/hxzx/账号权限管理.md [64ms] +2025-07-10 16:19:15.154 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:19:15.154 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:19:15.156 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:19:15.158 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:19:15.158 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:19:15.211 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [53ms] +2025-07-10 16:20:15.031 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [86ms] +2025-07-10 16:20:15.049 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [101ms] +2025-07-10 16:20:35.607 [info] > git log --format=%H%n%aN%n%aE%n%at%n%ct%n%P%n%D%n%B -z --shortstat --diff-merges=first-parent -n50 --skip=0 --topo-order --decorate=full --stdin [1073ms] +2025-07-10 16:20:37.385 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [61ms] +2025-07-10 16:20:37.388 [info] > git show --textconv :docs/hxzx/订单管理.md [65ms] +2025-07-10 16:20:37.441 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [53ms] +2025-07-10 16:20:37.907 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 16:20:53.740 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [76ms] +2025-07-10 16:20:53.743 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [71ms] +2025-07-10 16:20:53.744 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [74ms] +2025-07-10 16:20:53.799 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [57ms] +2025-07-10 16:21:12.593 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [64ms] +2025-07-10 16:21:12.593 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 16:21:15.738 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [66ms] +2025-07-10 16:21:15.739 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [72ms] +2025-07-10 16:21:17.112 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [63ms] +2025-07-10 16:21:17.112 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 16:21:18.440 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 16:21:18.950 [info] > git symbolic-ref --short HEAD [61ms] +2025-07-10 16:21:18.952 [info] > git config --get commit.template [61ms] +2025-07-10 16:21:19.006 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [54ms] +2025-07-10 16:21:19.008 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:21:19.060 [info] > git rev-parse refs/remotes/origin/master [51ms] +2025-07-10 16:21:19.126 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [61ms] +2025-07-10 16:21:19.127 [info] > git status -z -uall [64ms] +2025-07-10 16:21:35.152 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [71ms] +2025-07-10 16:21:35.153 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [66ms] +2025-07-10 16:21:46.674 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [75ms] +2025-07-10 16:21:46.679 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [82ms] +2025-07-10 16:21:55.167 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [61ms] +2025-07-10 16:21:55.167 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [58ms] +2025-07-10 16:21:56.699 [info] > git check-ignore -v -z --stdin [62ms] +2025-07-10 16:21:57.256 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 16:21:57.258 [info] > git config --get commit.template [58ms] +2025-07-10 16:21:57.318 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [60ms] +2025-07-10 16:21:57.320 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:21:57.374 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 16:21:57.438 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [60ms] +2025-07-10 16:21:57.441 [info] > git status -z -uall [65ms] +2025-07-10 16:22:11.407 [info] > git show --textconv :docs/hxzx/商品管理.md [65ms] +2025-07-10 16:22:11.409 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [60ms] +2025-07-10 16:22:11.412 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [66ms] +2025-07-10 16:22:11.412 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:22:11.415 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [64ms] +2025-07-10 16:22:11.416 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:22:11.468 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [56ms] +2025-07-10 16:22:11.983 [info] > git show --textconv :docs/hxzx/订单管理.md [65ms] +2025-07-10 16:22:11.987 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [63ms] +2025-07-10 16:22:11.989 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [68ms] +2025-07-10 16:22:11.989 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:22:11.990 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [64ms] +2025-07-10 16:22:11.990 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:22:12.045 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [57ms] +2025-07-10 16:22:12.562 [info] > git show --textconv :docs/hxzx/登录后台.md [63ms] +2025-07-10 16:22:12.564 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [63ms] +2025-07-10 16:22:12.564 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:22:12.565 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [62ms] +2025-07-10 16:22:12.567 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [63ms] +2025-07-10 16:22:12.568 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:22:12.625 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [58ms] +2025-07-10 16:22:17.762 [info] > git show --textconv :docs/hxzx/登录后台.md [64ms] +2025-07-10 16:22:17.763 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [63ms] +2025-07-10 16:22:17.763 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:22:17.764 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [62ms] +2025-07-10 16:22:17.768 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [63ms] +2025-07-10 16:22:17.768 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:22:17.821 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [55ms] +2025-07-10 16:22:19.259 [info] > git show --textconv :docs/hxzx/订单管理.md [63ms] +2025-07-10 16:22:19.264 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [64ms] +2025-07-10 16:22:19.264 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:22:19.266 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [64ms] +2025-07-10 16:22:19.269 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [65ms] +2025-07-10 16:22:19.269 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:22:19.324 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [56ms] +2025-07-10 16:22:19.859 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [55ms] +2025-07-10 16:22:19.862 [info] > git show --textconv :docs/hxzx/分销体系.md [61ms] +2025-07-10 16:22:19.929 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [68ms] +2025-07-10 16:22:20.850 [info] > git show --textconv :docs/hxzx/商品管理.md [64ms] +2025-07-10 16:22:20.850 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [63ms] +2025-07-10 16:22:20.850 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:22:20.851 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [62ms] +2025-07-10 16:22:20.854 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [61ms] +2025-07-10 16:22:20.854 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:22:20.907 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [54ms] +2025-07-10 16:22:22.513 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [57ms] +2025-07-10 16:22:22.515 [info] > git show --textconv :docs/hxzx/分销体系.md [63ms] +2025-07-10 16:22:22.572 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [56ms] +2025-07-10 16:23:18.437 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 16:23:18.440 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 16:23:21.923 [info] > git log --format=%H%n%aN%n%aE%n%at%n%ct%n%P%n%D%n%B -z --shortstat --diff-merges=first-parent -n50 --skip=0 --topo-order --decorate=full --stdin [1069ms] +2025-07-10 16:23:24.643 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [65ms] +2025-07-10 16:23:24.645 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [64ms] +2025-07-10 16:23:24.693 [info] > git add -A -- docs/hxzx/登录后台.md docs/hxzx/账号权限管理.md docs/hxzx/商品管理.md docs/hxzx/订单管理.md docs/hxzx/营销管理.md [69ms] +2025-07-10 16:23:24.755 [info] > git config --get commit.template [57ms] +2025-07-10 16:23:24.755 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 16:23:24.832 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [75ms] +2025-07-10 16:23:24.834 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:23:24.893 [info] > git rev-parse refs/remotes/origin/master [59ms] +2025-07-10 16:23:24.957 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 16:23:24.960 [info] > git status -z -uall [65ms] +2025-07-10 16:23:25.038 [info] > git -c user.useConfigOnly=true commit --quiet [73ms] +2025-07-10 16:23:25.039 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:23:25.099 [info] > git config --get-all user.name [59ms] +2025-07-10 16:23:25.156 [info] > git config --get commit.template [53ms] +2025-07-10 16:23:25.157 [info] > git symbolic-ref --short HEAD [56ms] +2025-07-10 16:23:25.216 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 16:23:25.218 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:23:25.269 [info] > git rev-parse refs/remotes/origin/master [51ms] +2025-07-10 16:23:25.330 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 16:23:25.334 [info] > git status -z -uall [63ms] +2025-07-10 16:23:28.314 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [91ms] +2025-07-10 16:23:28.316 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [101ms] +2025-07-10 16:23:28.318 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [85ms] +2025-07-10 16:23:28.324 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [86ms] +2025-07-10 16:23:28.327 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [86ms] +2025-07-10 16:23:28.330 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [95ms] +2025-07-10 16:23:28.390 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [62ms] +2025-07-10 16:23:28.391 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [62ms] +2025-07-10 16:23:28.622 [info] > git show --textconv 84e81a2b2f02798acbb48e1045be9ddac82d8632:docs/hxzx/分销体系.md [76ms] +2025-07-10 16:23:28.657 [info] > git show --textconv 3091e1b89a47e6798a989bdbbd067c4b5c5d8178:docs/hxzx/分销体系.md [95ms] +2025-07-10 16:23:28.668 [info] > git show --textconv 3091e1b89a47e6798a989bdbbd067c4b5c5d8178:docs/hxzx/分销体系.md [101ms] +2025-07-10 16:23:28.668 [info] > git show --textconv :docs/hxzx/订单管理.md [96ms] +2025-07-10 16:23:28.669 [info] > git show --textconv 84e81a2b2f02798acbb48e1045be9ddac82d8632:docs/hxzx/分销体系.md [100ms] +2025-07-10 16:23:28.676 [info] > git show --textconv :docs/hxzx/分销体系.md [100ms] +2025-07-10 16:23:29.303 [info] > git config --get commit.template [62ms] +2025-07-10 16:23:29.304 [info] > git symbolic-ref --short HEAD [66ms] +2025-07-10 16:23:29.369 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [63ms] +2025-07-10 16:23:29.371 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:23:29.430 [info] > git rev-parse refs/remotes/origin/master [59ms] +2025-07-10 16:23:29.497 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [62ms] +2025-07-10 16:23:29.501 [info] > git status -z -uall [68ms] +2025-07-10 16:23:34.077 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [90ms] +2025-07-10 16:23:34.078 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [82ms] +2025-07-10 16:23:35.607 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 16:23:35.608 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [64ms] +2025-07-10 16:23:52.573 [info] > git -c user.useConfigOnly=true commit --quiet [60ms] +2025-07-10 16:23:52.573 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:23:52.634 [info] > git config --get-all user.name [58ms] +2025-07-10 16:23:52.695 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 16:23:52.698 [info] > git config --get commit.template [59ms] +2025-07-10 16:23:52.755 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 16:23:52.757 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:23:52.814 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 16:23:52.873 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 16:23:52.878 [info] > git status -z -uall [62ms] +2025-07-10 16:23:57.911 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [73ms] +2025-07-10 16:23:57.912 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [70ms] +2025-07-10 16:24:01.445 [info] > git -c user.useConfigOnly=true commit --quiet [60ms] +2025-07-10 16:24:01.446 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:24:01.505 [info] > git config --get-all user.name [57ms] +2025-07-10 16:24:01.568 [info] > git config --get commit.template [58ms] +2025-07-10 16:24:01.568 [info] > git symbolic-ref --short HEAD [61ms] +2025-07-10 16:24:01.629 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-10 16:24:01.632 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:24:01.685 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 16:24:01.749 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [58ms] +2025-07-10 16:24:01.752 [info] > git status -z -uall [64ms] +2025-07-10 16:24:03.412 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [108ms] +2025-07-10 16:24:03.413 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [102ms] +2025-07-10 16:24:29.149 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [78ms] +2025-07-10 16:24:29.150 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [71ms] +2025-07-10 16:24:30.897 [info] > git -c user.useConfigOnly=true commit --quiet [64ms] +2025-07-10 16:24:30.898 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:24:30.955 [info] > git config --get-all user.name [56ms] +2025-07-10 16:24:31.016 [info] > git config --get commit.template [55ms] +2025-07-10 16:24:31.017 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 16:24:31.078 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [60ms] +2025-07-10 16:24:31.081 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:24:31.135 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 16:24:31.198 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [58ms] +2025-07-10 16:24:31.201 [info] > git status -z -uall [63ms] +2025-07-10 16:24:37.320 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 16:24:37.321 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [59ms] +2025-07-10 16:24:47.982 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [58ms] +2025-07-10 16:24:51.386 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 16:25:03.843 [info] > git log --format=%H%n%aN%n%aE%n%at%n%ct%n%P%n%D%n%B -z --shortstat --diff-merges=first-parent -n50 --skip=0 --topo-order --decorate=full --stdin [1060ms] +2025-07-10 16:25:08.015 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [59ms] +2025-07-10 16:25:08.018 [info] > git show --textconv :docs/hxzx/登录后台.md [63ms] +2025-07-10 16:25:08.075 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [57ms] +2025-07-10 16:25:14.138 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [61ms] +2025-07-10 16:25:14.140 [info] > git show --textconv :docs/hxzx/账号权限管理.md [66ms] +2025-07-10 16:25:14.199 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 16:25:14.480 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [63ms] +2025-07-10 16:25:14.483 [info] > git show --textconv :docs/hxzx/商品管理.md [69ms] +2025-07-10 16:25:14.545 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [62ms] +2025-07-10 16:25:14.697 [info] > git check-ignore -v -z --stdin [109ms] +2025-07-10 16:25:15.904 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [54ms] +2025-07-10 16:25:15.906 [info] > git show --textconv :docs/hxzx/订单管理.md [59ms] +2025-07-10 16:25:15.959 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [54ms] +2025-07-10 16:25:17.608 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [57ms] +2025-07-10 16:25:17.611 [info] > git show --textconv :docs/hxzx/登录后台.md [61ms] +2025-07-10 16:25:17.667 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [56ms] +2025-07-10 16:25:21.148 [info] > git show --textconv :docs/hxzx/营销管理.md [111ms] +2025-07-10 16:25:21.157 [info] > git show --textconv :docs/hxzx/订单管理.md [125ms] +2025-07-10 16:25:21.168 [info] > git show --textconv :docs/hxzx/image/分销体系/image-shouhou.png [125ms] +2025-07-10 16:25:21.169 [info] > git show --textconv :docs/hxzx/商品管理.md [134ms] +2025-07-10 16:25:21.169 [info] > git show --textconv :docs/hxzx/账号权限管理.md [130ms] +2025-07-10 16:25:21.175 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [127ms] +2025-07-10 16:25:21.182 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [129ms] +2025-07-10 16:25:21.187 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [142ms] +2025-07-10 16:25:21.191 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [140ms] +2025-07-10 16:25:21.194 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/image-shouhou.png [130ms] +2025-07-10 16:25:21.199 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [120ms] +2025-07-10 16:25:21.210 [info] > git show --textconv :docs/hxzx/登录后台.md [140ms] +2025-07-10 16:25:21.255 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [78ms] +2025-07-10 16:25:21.269 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [78ms] +2025-07-10 16:25:21.270 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [86ms] +2025-07-10 16:25:21.281 [info] > git cat-file -s 6dfb5513bd110e562b0efdc94beb54652633947d [84ms] +2025-07-10 16:25:21.281 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [87ms] +2025-07-10 16:25:21.284 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [81ms] +2025-07-10 16:25:52.053 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [59ms] +2025-07-10 16:25:52.114 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [58ms] +2025-07-10 16:25:52.674 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [60ms] +2025-07-10 16:25:52.771 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [94ms] +2025-07-10 16:26:01.746 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [71ms] +2025-07-10 16:26:01.811 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [61ms] +2025-07-10 16:26:02.497 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [60ms] +2025-07-10 16:26:02.590 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [90ms] +2025-07-10 16:26:02.969 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [58ms] +2025-07-10 16:26:03.029 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [58ms] +2025-07-10 16:26:03.399 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [58ms] +2025-07-10 16:26:03.458 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-10 16:26:03.943 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 16:26:09.175 [info] > git -c user.useConfigOnly=true commit --quiet --amend [65ms] +2025-07-10 16:26:09.175 [info] Committer identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:26:09.233 [info] > git config --get-all user.name [56ms] +2025-07-10 16:26:09.292 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-10 16:26:09.296 [info] > git config --get commit.template [57ms] +2025-07-10 16:26:09.352 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 16:26:09.355 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:26:09.411 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 16:26:09.476 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 16:26:09.480 [info] > git status -z -uall [67ms] +2025-07-10 16:26:12.076 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [97ms] +2025-07-10 16:26:12.085 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [92ms] +2025-07-10 16:26:12.096 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [110ms] +2025-07-10 16:26:12.100 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [116ms] +2025-07-10 16:26:12.113 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [117ms] +2025-07-10 16:26:12.130 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [130ms] +2025-07-10 16:26:12.133 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [130ms] +2025-07-10 16:26:12.145 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [140ms] +2025-07-10 16:26:12.199 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [119ms] +2025-07-10 16:26:12.219 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [118ms] +2025-07-10 16:26:12.250 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [112ms] +2025-07-10 16:26:12.250 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [154ms] +2025-07-10 16:26:12.254 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [151ms] +2025-07-10 16:26:12.260 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [143ms] +2025-07-10 16:26:12.309 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [159ms] +2025-07-10 16:26:12.317 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [183ms] +2025-07-10 16:26:12.411 [info] > git show --textconv :docs/hxzx/营销管理.md [209ms] +2025-07-10 16:26:12.416 [info] > git show --textconv :docs/hxzx/账号权限管理.md [192ms] +2025-07-10 16:26:12.445 [info] > git show --textconv :docs/hxzx/营销管理.md [190ms] +2025-07-10 16:26:12.445 [info] > git show --textconv :docs/hxzx/商品管理.md [181ms] +2025-07-10 16:26:12.450 [info] > git show --textconv :docs/hxzx/订单管理.md [161ms] +2025-07-10 16:26:12.452 [info] > git show --textconv :docs/hxzx/登录后台.md [194ms] +2025-07-10 16:26:12.479 [info] > git show --textconv :docs/hxzx/账号权限管理.md [139ms] +2025-07-10 16:26:12.480 [info] > git show --textconv :docs/hxzx/商品管理.md [136ms] +2025-07-10 16:26:13.054 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-10 16:26:13.056 [info] > git config --get commit.template [61ms] +2025-07-10 16:26:13.117 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [62ms] +2025-07-10 16:26:13.120 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:26:13.183 [info] > git rev-parse refs/remotes/origin/master [63ms] +2025-07-10 16:26:13.249 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [62ms] +2025-07-10 16:26:13.251 [info] > git status -z -uall [65ms] +2025-07-10 16:26:27.225 [info] > git -c user.useConfigOnly=true commit --quiet [65ms] +2025-07-10 16:26:27.225 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:26:27.330 [info] > git config --get-all user.name [103ms] +2025-07-10 16:26:27.399 [info] > git config --get commit.template [65ms] +2025-07-10 16:26:27.400 [info] > git symbolic-ref --short HEAD [67ms] +2025-07-10 16:26:27.457 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [54ms] +2025-07-10 16:26:27.459 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:26:27.512 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 16:26:27.575 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 16:26:27.579 [info] > git status -z -uall [64ms] +2025-07-10 16:26:32.931 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-10 16:26:32.934 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [62ms] +2025-07-10 16:26:32.939 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [63ms] +2025-07-10 16:26:32.996 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [63ms] +2025-07-10 16:26:32.997 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [61ms] +2025-07-10 16:26:33.001 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-10 16:30:02.417 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [91ms] +2025-07-10 16:30:02.422 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [89ms] +2025-07-10 16:30:02.425 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [95ms] +2025-07-10 16:30:02.489 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [69ms] +2025-07-10 16:30:02.493 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [69ms] +2025-07-10 16:30:02.501 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [75ms] +2025-07-10 16:30:44.956 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [79ms] +2025-07-10 16:30:44.958 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [75ms] +2025-07-10 16:30:44.961 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [74ms] +2025-07-10 16:30:45.028 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [70ms] +2025-07-10 16:30:45.036 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [72ms] +2025-07-10 16:30:45.036 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [76ms] +2025-07-10 16:30:53.388 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [72ms] +2025-07-10 16:30:53.391 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [78ms] +2025-07-10 16:30:53.394 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [73ms] +2025-07-10 16:30:53.454 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 16:30:53.454 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [64ms] +2025-07-10 16:30:53.458 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [61ms] +2025-07-10 16:30:59.934 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [73ms] +2025-07-10 16:30:59.936 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [71ms] +2025-07-10 16:30:59.941 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [73ms] +2025-07-10 16:31:00.000 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [63ms] +2025-07-10 16:31:00.004 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [65ms] +2025-07-10 16:31:00.009 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [66ms] +2025-07-10 16:31:14.956 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [91ms] +2025-07-10 16:31:14.960 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [90ms] +2025-07-10 16:31:14.963 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [83ms] +2025-07-10 16:31:15.029 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [70ms] +2025-07-10 16:31:15.033 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [69ms] +2025-07-10 16:31:15.036 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [69ms] +2025-07-10 16:31:35.407 [info] > git add -A -- docs/hxzx/image-1.png docs/hxzx/image.png docs/hxzx/image/image.png docs/hxzx/image/分销体系/image.png docs/hxzx/image/分销体系/imghoutai/1111.png docs/hxzx/image/分销体系/imghoutai/图片10.png docs/hxzx/image/分销体系/imghoutai/图片11.png docs/hxzx/image/分销体系/imghoutai/图片12.png docs/hxzx/image/分销体系/imghoutai/图片3.png docs/hxzx/image/分销体系/imghoutai/图片4.png docs/hxzx/image/分销体系/imghoutai/图片6.png docs/hxzx/image/分销体系/imghoutai/图片7.png docs/hxzx/image/分销体系/imghoutai/图片8.png docs/hxzx/image/分销体系/imghoutai/图片9.png docs/hxzx/image/分销体系/imghoutai/微信截图_20250710152635.png docs/hxzx/image/分销体系/imghoutai/微信截图_20250710152838.png docs/hxzx/image/分销体系/imghoutai/微信截图_20250710153324.png docs/hxzx/image/分销体系/imghoutai/微信截图_20250710153839.png docs/hxzx/image/分销体系/imghoutai/微信截图_20250710154636.png docs/hxzx/image/图片2.png docs/hxzx/安全管理.md docs/hxzx/常见问题解答.md docs/hxzx/终端管理.md [216ms] +2025-07-10 16:31:35.468 [info] > git config --get commit.template [56ms] +2025-07-10 16:31:35.468 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 16:31:35.528 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 16:31:35.530 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:31:35.621 [info] > git rev-parse refs/remotes/origin/master [91ms] +2025-07-10 16:31:35.691 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [65ms] +2025-07-10 16:31:35.695 [info] > git status -z -uall [72ms] +2025-07-10 16:31:36.745 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [65ms] +2025-07-10 16:31:36.747 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [66ms] +2025-07-10 16:31:36.751 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [66ms] +2025-07-10 16:31:36.754 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-10 16:31:36.757 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [67ms] +2025-07-10 16:31:36.811 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [64ms] +2025-07-10 16:31:36.815 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [65ms] +2025-07-10 16:31:36.821 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [67ms] +2025-07-10 16:31:36.825 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [69ms] +2025-07-10 16:31:36.826 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [66ms] +2025-07-10 16:31:36.893 [info] > git show --textconv :docs/hxzx/登录后台.md [78ms] +2025-07-10 16:31:36.893 [info] > git show --textconv :docs/hxzx/订单管理.md [75ms] +2025-07-10 16:31:36.901 [info] > git show --textconv :docs/hxzx/商品管理.md [77ms] +2025-07-10 16:31:36.905 [info] > git show --textconv :docs/hxzx/营销管理.md [76ms] +2025-07-10 16:31:36.906 [info] > git show --textconv :docs/hxzx/账号权限管理.md [73ms] +2025-07-10 16:31:37.747 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-10 16:31:37.749 [info] > git config --get commit.template [60ms] +2025-07-10 16:31:37.807 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [58ms] +2025-07-10 16:31:37.809 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:31:37.865 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 16:31:37.926 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-10 16:31:37.930 [info] > git status -z -uall [62ms] +2025-07-10 16:31:56.956 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [86ms] +2025-07-10 16:31:56.960 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [86ms] +2025-07-10 16:31:56.966 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [85ms] +2025-07-10 16:31:57.030 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [71ms] +2025-07-10 16:31:57.038 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [75ms] +2025-07-10 16:31:57.042 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [72ms] +2025-07-10 16:32:19.327 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [76ms] +2025-07-10 16:32:19.330 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [69ms] +2025-07-10 16:32:19.332 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [84ms] +2025-07-10 16:32:19.392 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 16:32:19.393 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [64ms] +2025-07-10 16:32:19.393 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-10 16:32:56.554 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [83ms] +2025-07-10 16:32:56.558 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 16:32:56.561 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [78ms] +2025-07-10 16:32:56.614 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-10 16:32:56.621 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 16:32:56.622 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [59ms] +2025-07-10 16:34:20.162 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [71ms] +2025-07-10 16:34:20.164 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [71ms] +2025-07-10 16:34:20.168 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 16:34:20.224 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [61ms] +2025-07-10 16:34:20.225 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [58ms] +2025-07-10 16:34:20.228 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [58ms] +2025-07-10 16:35:32.419 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [72ms] +2025-07-10 16:35:32.422 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [71ms] +2025-07-10 16:35:32.424 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 16:35:32.480 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-10 16:35:32.481 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [57ms] +2025-07-10 16:35:32.484 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-10 16:38:09.264 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [66ms] +2025-07-10 16:38:09.267 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [73ms] +2025-07-10 16:38:09.270 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [81ms] +2025-07-10 16:38:09.323 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [56ms] +2025-07-10 16:38:09.323 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [54ms] +2025-07-10 16:38:09.326 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [54ms] +2025-07-10 16:38:23.975 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [105ms] +2025-07-10 16:38:23.978 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [105ms] +2025-07-10 16:38:23.981 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [107ms] +2025-07-10 16:38:24.055 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [73ms] +2025-07-10 16:38:24.058 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [81ms] +2025-07-10 16:38:24.059 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [75ms] +2025-07-10 16:38:24.062 [info] > git add -A -- docs/hxzx/终端管理.md docs/hxzx/安全管理.md docs/hxzx/常见问题解答.md [134ms] +2025-07-10 16:38:24.125 [info] > git config --get commit.template [58ms] +2025-07-10 16:38:24.125 [info] > git symbolic-ref --short HEAD [61ms] +2025-07-10 16:38:24.193 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [66ms] +2025-07-10 16:38:24.196 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:38:24.251 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 16:38:24.312 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 16:38:24.316 [info] > git status -z -uall [63ms] +2025-07-10 16:38:24.399 [info] > git -c user.useConfigOnly=true commit --quiet [78ms] +2025-07-10 16:38:24.399 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:38:24.460 [info] > git config --get-all user.name [59ms] +2025-07-10 16:38:24.521 [info] > git config --get commit.template [55ms] +2025-07-10 16:38:24.522 [info] > git symbolic-ref --short HEAD [58ms] +2025-07-10 16:38:24.581 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 16:38:24.583 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:38:24.639 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 16:38:24.702 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 16:38:24.706 [info] > git status -z -uall [65ms] +2025-07-10 16:38:26.610 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [75ms] +2025-07-10 16:38:26.615 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [83ms] +2025-07-10 16:38:26.619 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [77ms] +2025-07-10 16:38:26.622 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [83ms] +2025-07-10 16:38:26.625 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [80ms] +2025-07-10 16:38:26.629 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [81ms] +2025-07-10 16:38:26.635 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [84ms] +2025-07-10 16:38:26.639 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [84ms] +2025-07-10 16:38:26.694 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [80ms] +2025-07-10 16:38:26.703 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [85ms] +2025-07-10 16:38:26.706 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [82ms] +2025-07-10 16:38:26.707 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [86ms] +2025-07-10 16:38:26.714 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [87ms] +2025-07-10 16:38:26.721 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [89ms] +2025-07-10 16:38:26.725 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [88ms] +2025-07-10 16:38:26.726 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [85ms] +2025-07-10 16:38:26.777 [info] > git show --textconv :docs/hxzx/商品管理.md [80ms] +2025-07-10 16:38:26.788 [info] > git show --textconv :docs/hxzx/营销管理.md [81ms] +2025-07-10 16:38:26.796 [info] > git show --textconv :docs/hxzx/登录后台.md [83ms] +2025-07-10 16:38:26.800 [info] > git show --textconv :docs/hxzx/账号权限管理.md [90ms] +2025-07-10 16:38:26.803 [info] > git show --textconv :docs/hxzx/订单管理.md [86ms] +2025-07-10 16:38:26.807 [info] > git show --textconv :docs/hxzx/商品管理.md [82ms] +2025-07-10 16:38:26.809 [info] > git show --textconv :docs/hxzx/营销管理.md [79ms] +2025-07-10 16:38:26.810 [info] > git show --textconv :docs/hxzx/账号权限管理.md [78ms] +2025-07-10 16:38:27.635 [info] > git config --get commit.template [79ms] +2025-07-10 16:38:27.635 [info] > git symbolic-ref --short HEAD [83ms] +2025-07-10 16:38:27.692 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 16:38:27.695 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:38:27.751 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 16:38:27.816 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 16:38:27.820 [info] > git status -z -uall [67ms] +2025-07-10 16:38:37.400 [info] > git -c user.useConfigOnly=true commit --quiet [64ms] +2025-07-10 16:38:37.400 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:38:37.457 [info] > git config --get-all user.name [53ms] +2025-07-10 16:38:37.515 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-10 16:38:37.517 [info] > git config --get commit.template [57ms] +2025-07-10 16:38:37.573 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 16:38:37.575 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:38:37.627 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 16:38:37.686 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [54ms] +2025-07-10 16:38:37.690 [info] > git status -z -uall [60ms] +2025-07-10 16:38:39.382 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-10 16:38:39.386 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [64ms] +2025-07-10 16:38:39.388 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [69ms] +2025-07-10 16:38:39.448 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [64ms] +2025-07-10 16:38:39.449 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 16:38:39.452 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [62ms] +2025-07-10 16:38:43.883 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [73ms] +2025-07-10 16:38:43.886 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [72ms] +2025-07-10 16:38:43.888 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 16:38:43.946 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [61ms] +2025-07-10 16:38:43.950 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 16:38:43.950 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [62ms] +2025-07-10 16:39:23.569 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [79ms] +2025-07-10 16:39:23.573 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [91ms] +2025-07-10 16:39:23.575 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [90ms] +2025-07-10 16:39:23.650 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [78ms] +2025-07-10 16:39:23.654 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [79ms] +2025-07-10 16:39:23.657 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [77ms] +2025-07-10 16:39:37.646 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [69ms] +2025-07-10 16:39:37.649 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [67ms] +2025-07-10 16:39:37.651 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [80ms] +2025-07-10 16:39:37.712 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [64ms] +2025-07-10 16:39:37.713 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [62ms] +2025-07-10 16:39:37.713 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 16:39:38.967 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [64ms] +2025-07-10 16:39:38.970 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [58ms] +2025-07-10 16:39:38.973 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [65ms] +2025-07-10 16:39:39.025 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-10 16:39:39.028 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [55ms] +2025-07-10 16:39:39.030 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [55ms] +2025-07-10 16:40:18.873 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [74ms] +2025-07-10 16:40:18.880 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [76ms] +2025-07-10 16:40:18.882 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [75ms] +2025-07-10 16:40:18.930 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [55ms] +2025-07-10 16:40:18.937 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [55ms] +2025-07-10 16:40:18.938 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [54ms] +2025-07-10 16:40:27.913 [info] > git -c user.useConfigOnly=true commit --quiet [64ms] +2025-07-10 16:40:27.913 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:40:27.970 [info] > git config --get-all user.name [55ms] +2025-07-10 16:40:28.028 [info] > git config --get commit.template [54ms] +2025-07-10 16:40:28.028 [info] > git symbolic-ref --short HEAD [56ms] +2025-07-10 16:40:28.084 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [54ms] +2025-07-10 16:40:28.087 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:40:28.140 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 16:40:28.201 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 16:40:28.202 [info] > git status -z -uall [61ms] +2025-07-10 16:40:30.549 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-10 16:40:30.552 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [64ms] +2025-07-10 16:40:30.554 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [63ms] +2025-07-10 16:40:30.610 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-10 16:40:30.614 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [61ms] +2025-07-10 16:40:30.615 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 16:40:38.064 [info] > git -c user.useConfigOnly=true commit --quiet [64ms] +2025-07-10 16:40:38.064 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:40:38.150 [info] > git config --get-all user.name [83ms] +2025-07-10 16:40:38.222 [info] > git config --get commit.template [67ms] +2025-07-10 16:40:38.223 [info] > git symbolic-ref --short HEAD [70ms] +2025-07-10 16:40:38.291 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [66ms] +2025-07-10 16:40:38.295 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:40:38.363 [info] > git rev-parse refs/remotes/origin/master [69ms] +2025-07-10 16:40:38.423 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-10 16:40:38.424 [info] > git status -z -uall [59ms] +2025-07-10 16:40:42.522 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [79ms] +2025-07-10 16:40:42.526 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [79ms] +2025-07-10 16:40:42.529 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [77ms] +2025-07-10 16:40:42.620 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [96ms] +2025-07-10 16:40:42.629 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [98ms] +2025-07-10 16:40:42.630 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [101ms] +2025-07-10 16:40:54.685 [info] > git -c user.useConfigOnly=true commit --quiet [61ms] +2025-07-10 16:40:54.685 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:40:54.750 [info] > git config --get-all user.name [62ms] +2025-07-10 16:40:54.812 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 16:40:54.815 [info] > git config --get commit.template [59ms] +2025-07-10 16:40:54.870 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 16:40:54.873 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:40:54.957 [info] > git rev-parse refs/remotes/origin/master [83ms] +2025-07-10 16:40:55.026 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 16:40:55.030 [info] > git status -z -uall [67ms] +2025-07-10 16:41:02.725 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [77ms] +2025-07-10 16:41:02.728 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [76ms] +2025-07-10 16:41:02.730 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [75ms] +2025-07-10 16:41:02.787 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 16:41:02.789 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [59ms] +2025-07-10 16:41:02.791 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-10 16:41:25.120 [info] > git -c user.useConfigOnly=true commit --quiet [63ms] +2025-07-10 16:41:25.120 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:41:25.175 [info] > git config --get-all user.name [53ms] +2025-07-10 16:41:25.235 [info] > git config --get commit.template [55ms] +2025-07-10 16:41:25.236 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 16:41:25.296 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [58ms] +2025-07-10 16:41:25.299 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:41:25.351 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 16:41:25.413 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 16:41:25.416 [info] > git status -z -uall [63ms] +2025-07-10 16:41:29.701 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [72ms] +2025-07-10 16:41:29.704 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [71ms] +2025-07-10 16:41:29.707 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [70ms] +2025-07-10 16:41:29.783 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [72ms] +2025-07-10 16:41:29.783 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [79ms] +2025-07-10 16:41:29.784 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [77ms] +2025-07-10 16:41:39.602 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [81ms] +2025-07-10 16:41:39.607 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [82ms] +2025-07-10 16:41:39.610 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [81ms] +2025-07-10 16:41:39.673 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [69ms] +2025-07-10 16:41:39.682 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [72ms] +2025-07-10 16:41:39.684 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [71ms] +2025-07-10 16:41:44.271 [info] > git -c user.useConfigOnly=true commit --quiet [63ms] +2025-07-10 16:41:44.271 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:41:44.328 [info] > git config --get-all user.name [55ms] +2025-07-10 16:41:44.386 [info] > git symbolic-ref --short HEAD [56ms] +2025-07-10 16:41:44.389 [info] > git config --get commit.template [56ms] +2025-07-10 16:41:44.444 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 16:41:44.446 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:41:44.500 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 16:41:44.560 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 16:41:44.563 [info] > git status -z -uall [60ms] +2025-07-10 16:41:49.110 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-10 16:41:49.113 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [66ms] +2025-07-10 16:41:49.116 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [66ms] +2025-07-10 16:41:49.174 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [62ms] +2025-07-10 16:41:49.178 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [63ms] +2025-07-10 16:41:49.181 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [63ms] +2025-07-10 16:41:50.307 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [122ms] +2025-07-10 16:41:50.314 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [118ms] +2025-07-10 16:41:50.316 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [128ms] +2025-07-10 16:41:50.371 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [61ms] +2025-07-10 16:41:50.378 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [62ms] +2025-07-10 16:41:50.380 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [63ms] +2025-07-10 16:41:55.261 [info] > git show --textconv :docs/hxzx/安全管理.md [61ms] +2025-07-10 16:41:55.265 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [62ms] +2025-07-10 16:41:55.265 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:41:55.267 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [62ms] +2025-07-10 16:41:55.270 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [63ms] +2025-07-10 16:41:55.270 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:41:55.323 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [54ms] +2025-07-10 16:41:55.385 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/安全管理.md [54ms] +2025-07-10 16:41:55.385 [info] fatal: no such path docs/hxzx/安全管理.md in 84e81a2b2f02798acbb48e1045be9ddac82d8632 +2025-07-10 16:42:24.937 [info] > git show --textconv :docs/hxzx/常见问题解答.md [64ms] +2025-07-10 16:42:24.939 [info] > git show --textconv HEAD:docs/hxzx/常见问题解答.md [62ms] +2025-07-10 16:42:24.939 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:42:24.940 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [61ms] +2025-07-10 16:42:24.945 [info] > git ls-tree -l HEAD -- docs/hxzx/常见问题解答.md [63ms] +2025-07-10 16:42:24.945 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:42:24.997 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [55ms] +2025-07-10 16:42:25.061 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/常见问题解答.md [57ms] +2025-07-10 16:42:25.061 [info] fatal: no such path docs/hxzx/常见问题解答.md in 84e81a2b2f02798acbb48e1045be9ddac82d8632 +2025-07-10 16:43:05.033 [info] > git -c user.useConfigOnly=true commit --quiet [64ms] +2025-07-10 16:43:05.033 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:43:05.089 [info] > git config --get-all user.name [54ms] +2025-07-10 16:43:05.149 [info] > git config --get commit.template [54ms] +2025-07-10 16:43:05.149 [info] > git symbolic-ref --short HEAD [58ms] +2025-07-10 16:43:05.207 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 16:43:05.209 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:43:05.261 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 16:43:05.322 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 16:43:05.325 [info] > git status -z -uall [62ms] +2025-07-10 16:43:17.382 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [65ms] +2025-07-10 16:43:17.387 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:43:17.389 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [69ms] +2025-07-10 16:43:17.443 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [59ms] +2025-07-10 16:43:17.447 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-10 16:43:17.447 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [55ms] +2025-07-10 16:43:37.718 [info] > git -c user.useConfigOnly=true commit --quiet [102ms] +2025-07-10 16:43:37.718 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:43:37.780 [info] > git config --get-all user.name [60ms] +2025-07-10 16:43:37.841 [info] > git config --get commit.template [56ms] +2025-07-10 16:43:37.841 [info] > git symbolic-ref --short HEAD [58ms] +2025-07-10 16:43:37.899 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 16:43:37.902 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:43:37.957 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 16:43:38.019 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [58ms] +2025-07-10 16:43:38.023 [info] > git status -z -uall [63ms] +2025-07-10 16:43:48.302 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [65ms] +2025-07-10 16:43:48.304 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [65ms] +2025-07-10 16:43:48.307 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [64ms] +2025-07-10 16:43:48.364 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-10 16:43:48.364 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [61ms] +2025-07-10 16:43:48.366 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [56ms] +2025-07-10 16:44:00.455 [info] > git -c user.useConfigOnly=true commit --quiet [63ms] +2025-07-10 16:44:00.455 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:44:00.512 [info] > git config --get-all user.name [55ms] +2025-07-10 16:44:00.570 [info] > git config --get commit.template [53ms] +2025-07-10 16:44:00.570 [info] > git symbolic-ref --short HEAD [56ms] +2025-07-10 16:44:00.628 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 16:44:00.630 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:44:00.683 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 16:44:00.743 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-10 16:44:00.747 [info] > git status -z -uall [62ms] +2025-07-10 16:44:02.465 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [69ms] +2025-07-10 16:44:02.472 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [72ms] +2025-07-10 16:44:02.475 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 16:44:02.527 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [60ms] +2025-07-10 16:44:02.536 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [61ms] +2025-07-10 16:44:02.536 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-10 16:44:52.042 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [89ms] +2025-07-10 16:44:52.049 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [92ms] +2025-07-10 16:44:52.055 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [94ms] +2025-07-10 16:44:52.114 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [69ms] +2025-07-10 16:44:52.117 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [66ms] +2025-07-10 16:44:52.124 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [66ms] +2025-07-10 16:44:55.106 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [74ms] +2025-07-10 16:44:55.109 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [80ms] +2025-07-10 16:44:55.111 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [76ms] +2025-07-10 16:44:55.167 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [56ms] +2025-07-10 16:44:55.167 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-10 16:44:55.170 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-10 16:44:55.557 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [75ms] +2025-07-10 16:44:55.563 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [71ms] +2025-07-10 16:44:55.565 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [70ms] +2025-07-10 16:44:55.636 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [76ms] +2025-07-10 16:44:55.637 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [72ms] +2025-07-10 16:44:55.638 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [71ms] +2025-07-10 16:46:55.337 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [98ms] +2025-07-10 16:46:55.340 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [83ms] +2025-07-10 16:46:55.342 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [91ms] +2025-07-10 16:46:55.408 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [69ms] +2025-07-10 16:46:55.425 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [82ms] +2025-07-10 16:46:55.428 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [82ms] +2025-07-10 16:47:00.501 [info] > git -c user.useConfigOnly=true commit --quiet [86ms] +2025-07-10 16:47:00.501 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:47:00.567 [info] > git config --get-all user.name [63ms] +2025-07-10 16:47:00.626 [info] > git config --get commit.template [54ms] +2025-07-10 16:47:00.627 [info] > git symbolic-ref --short HEAD [58ms] +2025-07-10 16:47:00.684 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 16:47:00.687 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:47:00.739 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 16:47:00.799 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-10 16:47:00.803 [info] > git status -z -uall [62ms] +2025-07-10 16:47:09.712 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-10 16:47:09.714 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [72ms] +2025-07-10 16:47:09.717 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [70ms] +2025-07-10 16:47:09.778 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [64ms] +2025-07-10 16:47:09.778 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [62ms] +2025-07-10 16:47:09.780 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [61ms] +2025-07-10 16:47:28.886 [info] > git symbolic-ref --short HEAD [75ms] +2025-07-10 16:47:28.890 [info] > git config --get commit.template [77ms] +2025-07-10 16:47:28.894 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [78ms] +2025-07-10 16:47:28.897 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [76ms] +2025-07-10 16:47:28.900 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [77ms] +2025-07-10 16:47:28.950 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [62ms] +2025-07-10 16:47:28.953 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:47:28.960 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [64ms] +2025-07-10 16:47:28.961 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 16:47:28.963 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [61ms] +2025-07-10 16:47:29.005 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 16:47:29.064 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 16:47:29.069 [info] > git status -z -uall [61ms] +2025-07-10 16:47:39.541 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [65ms] +2025-07-10 16:47:39.543 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [65ms] +2025-07-10 16:47:39.545 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [65ms] +2025-07-10 16:47:39.601 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [58ms] +2025-07-10 16:47:39.606 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 16:47:39.607 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 16:47:51.633 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [86ms] +2025-07-10 16:47:51.638 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [99ms] +2025-07-10 16:47:51.641 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [98ms] +2025-07-10 16:47:51.714 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [77ms] +2025-07-10 16:47:51.715 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [74ms] +2025-07-10 16:47:51.716 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [72ms] +2025-07-10 16:48:13.277 [info] > git -c user.useConfigOnly=true commit --quiet [68ms] +2025-07-10 16:48:13.277 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:48:13.335 [info] > git config --get-all user.name [56ms] +2025-07-10 16:48:13.395 [info] > git config --get commit.template [56ms] +2025-07-10 16:48:13.396 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 16:48:13.456 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [58ms] +2025-07-10 16:48:13.459 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:48:13.511 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 16:48:13.572 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 16:48:13.575 [info] > git status -z -uall [62ms] +2025-07-10 16:48:16.647 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [88ms] +2025-07-10 16:48:16.650 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [88ms] +2025-07-10 16:48:16.653 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [97ms] +2025-07-10 16:48:17.717 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [1067ms] +2025-07-10 16:48:17.718 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [1065ms] +2025-07-10 16:48:17.731 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [1076ms] +2025-07-10 16:48:49.894 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [73ms] +2025-07-10 16:48:49.899 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [75ms] +2025-07-10 16:48:49.902 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [75ms] +2025-07-10 16:48:49.961 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [65ms] +2025-07-10 16:48:49.967 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [66ms] +2025-07-10 16:48:49.970 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [66ms] +2025-07-10 16:48:51.599 [info] > git -c user.useConfigOnly=true commit --quiet [95ms] +2025-07-10 16:48:51.599 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:48:51.657 [info] > git config --get-all user.name [55ms] +2025-07-10 16:48:51.713 [info] > git config --get commit.template [52ms] +2025-07-10 16:48:51.713 [info] > git symbolic-ref --short HEAD [54ms] +2025-07-10 16:48:51.776 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [61ms] +2025-07-10 16:48:51.778 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:48:51.834 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 16:48:51.934 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [95ms] +2025-07-10 16:48:51.938 [info] > git status -z -uall [101ms] +2025-07-10 16:48:56.496 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [69ms] +2025-07-10 16:48:56.499 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [69ms] +2025-07-10 16:48:56.508 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [75ms] +2025-07-10 16:48:56.555 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [56ms] +2025-07-10 16:48:56.557 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-10 16:48:56.564 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [54ms] +2025-07-10 16:48:57.245 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [56ms] +2025-07-10 16:48:57.248 [info] > git show --textconv :docs/hxzx/安全管理.md [63ms] +2025-07-10 16:48:57.299 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [51ms] +2025-07-10 16:48:57.762 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 16:48:57.932 [info] > git show --textconv :docs/hxzx/常见问题解答.md [61ms] +2025-07-10 16:48:57.932 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [60ms] +2025-07-10 16:48:57.988 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [54ms] +2025-07-10 16:48:58.445 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 16:48:59.175 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [57ms] +2025-07-10 16:48:59.235 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [58ms] +2025-07-10 16:49:00.969 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [59ms] +2025-07-10 16:49:01.032 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [60ms] +2025-07-10 16:49:04.043 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [87ms] +2025-07-10 16:49:04.109 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [63ms] +2025-07-10 16:49:05.344 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [57ms] +2025-07-10 16:49:05.403 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-10 16:49:06.385 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [60ms] +2025-07-10 16:49:06.446 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-10 16:49:06.971 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [90ms] +2025-07-10 16:49:06.988 [info] > git show --textconv :docs/hxzx/终端管理.md [110ms] +2025-07-10 16:49:07.026 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [52ms] +2025-07-10 16:49:07.459 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 16:49:10.409 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [65ms] +2025-07-10 16:49:10.468 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [56ms] +2025-07-10 16:49:10.852 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [96ms] +2025-07-10 16:49:10.916 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [61ms] +2025-07-10 16:50:21.338 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-10 16:50:21.341 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [67ms] +2025-07-10 16:50:21.343 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [66ms] +2025-07-10 16:50:21.400 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 16:50:21.400 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [57ms] +2025-07-10 16:50:21.401 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [56ms] +2025-07-10 16:50:25.680 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [59ms] +2025-07-10 16:50:25.737 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [55ms] +2025-07-10 16:50:26.928 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [59ms] +2025-07-10 16:50:26.986 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [55ms] +2025-07-10 16:50:30.382 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [57ms] +2025-07-10 16:50:30.440 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [54ms] +2025-07-10 16:50:30.954 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [115ms] +2025-07-10 16:50:31.020 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [63ms] +2025-07-10 16:50:31.335 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [59ms] +2025-07-10 16:50:31.393 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [55ms] +2025-07-10 16:50:37.706 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [58ms] +2025-07-10 16:50:37.708 [info] > git show --textconv :docs/hxzx/终端管理.md [62ms] +2025-07-10 16:50:37.761 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [53ms] +2025-07-10 16:50:48.113 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [67ms] +2025-07-10 16:50:48.116 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [67ms] +2025-07-10 16:50:48.119 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [63ms] +2025-07-10 16:50:48.121 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [69ms] +2025-07-10 16:50:48.175 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [59ms] +2025-07-10 16:50:48.178 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [59ms] +2025-07-10 16:50:48.180 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-10 16:50:48.181 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-10 16:50:51.250 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [60ms] +2025-07-10 16:50:51.309 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-10 16:50:52.234 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [60ms] +2025-07-10 16:50:52.294 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-10 16:50:53.303 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [58ms] +2025-07-10 16:50:53.364 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-10 16:50:56.494 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [97ms] +2025-07-10 16:50:56.561 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [64ms] +2025-07-10 16:50:56.930 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [60ms] +2025-07-10 16:50:56.989 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [57ms] +2025-07-10 16:50:57.706 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [60ms] +2025-07-10 16:50:57.766 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [56ms] +2025-07-10 16:50:59.269 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [71ms] +2025-07-10 16:50:59.352 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [66ms] +2025-07-10 16:51:00.699 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [59ms] +2025-07-10 16:51:00.702 [info] > git show --textconv :docs/hxzx/常见问题解答.md [63ms] +2025-07-10 16:51:00.755 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [54ms] +2025-07-10 16:51:22.764 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [60ms] +2025-07-10 16:51:22.825 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [59ms] +2025-07-10 16:51:23.172 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [60ms] +2025-07-10 16:51:23.175 [info] > git show --textconv :docs/hxzx/安全管理.md [65ms] +2025-07-10 16:51:23.227 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [53ms] +2025-07-10 16:51:32.556 [info] > git show --textconv :docs/hxzx/订单管理.md [66ms] +2025-07-10 16:51:32.558 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [65ms] +2025-07-10 16:51:32.558 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:51:32.559 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [63ms] +2025-07-10 16:51:32.562 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [64ms] +2025-07-10 16:51:32.562 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:51:32.616 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [55ms] +2025-07-10 16:51:38.725 [info] > git show --textconv :docs/hxzx/安全管理.md [71ms] +2025-07-10 16:51:38.728 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [71ms] +2025-07-10 16:51:38.728 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:51:38.730 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [71ms] +2025-07-10 16:51:38.733 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [71ms] +2025-07-10 16:51:38.734 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:51:38.796 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [63ms] +2025-07-10 16:51:43.416 [info] > git show --textconv :docs/hxzx/安全管理 copy.md [62ms] +2025-07-10 16:51:43.416 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:51:43.417 [info] > git ls-files --stage -- docs/hxzx/安全管理 copy.md [61ms] +2025-07-10 16:51:43.417 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:51:44.253 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-10 16:51:44.256 [info] > git config --get commit.template [60ms] +2025-07-10 16:51:44.312 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 16:51:44.314 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:51:44.372 [info] > git rev-parse refs/remotes/origin/master [58ms] +2025-07-10 16:51:44.433 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 16:51:44.437 [info] > git status -z -uall [62ms] +2025-07-10 16:51:51.755 [info] > git show --textconv :docs/hxzx/自提管理.md [55ms] +2025-07-10 16:51:51.755 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:51:51.755 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [54ms] +2025-07-10 16:51:51.755 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:51:52.048 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 16:51:52.611 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 16:51:52.613 [info] > git config --get commit.template [60ms] +2025-07-10 16:51:52.671 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 16:51:52.673 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:51:52.728 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 16:51:52.789 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-10 16:51:52.793 [info] > git status -z -uall [63ms] +2025-07-10 16:51:58.301 [info] > git show --textconv :docs/hxzx/终端管理.md [78ms] +2025-07-10 16:51:58.303 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [75ms] +2025-07-10 16:51:58.310 [info] > git show --textconv HEAD:docs/hxzx/终端管理.md [85ms] +2025-07-10 16:51:58.311 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:51:58.312 [info] > git ls-tree -l HEAD -- docs/hxzx/终端管理.md [82ms] +2025-07-10 16:51:58.312 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:51:58.367 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [61ms] +2025-07-10 16:51:58.467 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/终端管理.md [95ms] +2025-07-10 16:51:58.467 [info] fatal: no such path docs/hxzx/终端管理.md in 84e81a2b2f02798acbb48e1045be9ddac82d8632 +2025-07-10 16:51:58.932 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [64ms] +2025-07-10 16:51:58.933 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:51:58.933 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:51:58.936 [info] > git show --textconv :docs/hxzx/账号权限管理.md [69ms] +2025-07-10 16:51:58.936 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [63ms] +2025-07-10 16:51:58.936 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:51:58.992 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-10 16:51:59.490 [info] > git show --textconv :docs/hxzx/营销管理.md [72ms] +2025-07-10 16:51:59.495 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [73ms] +2025-07-10 16:51:59.498 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [78ms] +2025-07-10 16:51:59.499 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:51:59.500 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [74ms] +2025-07-10 16:51:59.500 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:51:59.562 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [65ms] +2025-07-10 16:52:00.279 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [89ms] +2025-07-10 16:52:00.282 [info] > git show --textconv :docs/hxzx/分销体系.md [94ms] +2025-07-10 16:52:00.337 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [55ms] +2025-07-10 16:52:00.710 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [73ms] +2025-07-10 16:52:00.710 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:52:00.711 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [71ms] +2025-07-10 16:52:00.713 [info] > git show --textconv :docs/hxzx/订单管理.md [80ms] +2025-07-10 16:52:00.714 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [72ms] +2025-07-10 16:52:00.714 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:52:00.796 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [82ms] +2025-07-10 16:52:01.317 [info] > git show --textconv :docs/hxzx/登录后台.md [63ms] +2025-07-10 16:52:01.319 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [64ms] +2025-07-10 16:52:01.319 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:52:01.322 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [63ms] +2025-07-10 16:52:01.324 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [64ms] +2025-07-10 16:52:01.324 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:52:01.378 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [55ms] +2025-07-10 16:52:02.350 [info] > git show --textconv HEAD:docs/hxzx/常见问题解答.md [64ms] +2025-07-10 16:52:02.350 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:52:02.350 [info] > git show --textconv :docs/hxzx/常见问题解答.md [66ms] +2025-07-10 16:52:02.354 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [65ms] +2025-07-10 16:52:02.356 [info] > git ls-tree -l HEAD -- docs/hxzx/常见问题解答.md [66ms] +2025-07-10 16:52:02.356 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:52:02.411 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [54ms] +2025-07-10 16:52:03.027 [info] > git show --textconv :docs/hxzx/安全管理.md [72ms] +2025-07-10 16:52:03.028 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [69ms] +2025-07-10 16:52:03.031 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [74ms] +2025-07-10 16:52:03.032 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:52:03.033 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [72ms] +2025-07-10 16:52:03.033 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:52:03.088 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [57ms] +2025-07-10 16:52:04.422 [info] > git show --textconv :docs/hxzx/常见问题解答.md [66ms] +2025-07-10 16:52:04.422 [info] > git show --textconv HEAD:docs/hxzx/常见问题解答.md [64ms] +2025-07-10 16:52:04.423 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:52:04.424 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [64ms] +2025-07-10 16:52:04.426 [info] > git ls-tree -l HEAD -- docs/hxzx/常见问题解答.md [64ms] +2025-07-10 16:52:04.427 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:52:04.484 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [58ms] +2025-07-10 16:53:18.741 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [80ms] +2025-07-10 16:53:18.744 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [79ms] +2025-07-10 16:53:18.747 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [68ms] +2025-07-10 16:53:18.803 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [60ms] +2025-07-10 16:53:18.804 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-10 16:53:18.805 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [55ms] +2025-07-10 16:53:30.978 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [73ms] +2025-07-10 16:53:30.981 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [72ms] +2025-07-10 16:53:30.986 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [73ms] +2025-07-10 16:53:31.120 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [135ms] +2025-07-10 16:53:31.121 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [141ms] +2025-07-10 16:53:31.122 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [134ms] +2025-07-10 16:53:34.894 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [65ms] +2025-07-10 16:53:34.897 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [66ms] +2025-07-10 16:53:34.900 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [65ms] +2025-07-10 16:53:34.962 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [66ms] +2025-07-10 16:53:34.962 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [63ms] +2025-07-10 16:53:34.966 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [64ms] +2025-07-10 16:53:36.446 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 16:53:37.050 [info] > git symbolic-ref --short HEAD [61ms] +2025-07-10 16:53:37.053 [info] > git config --get commit.template [61ms] +2025-07-10 16:53:37.107 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [54ms] +2025-07-10 16:53:37.109 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:53:37.162 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 16:53:37.229 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [62ms] +2025-07-10 16:53:37.232 [info] > git status -z -uall [67ms] +2025-07-10 16:54:02.040 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [63ms] +2025-07-10 16:54:02.043 [info] > git show --textconv :docs/hxzx/分销体系.md [69ms] +2025-07-10 16:54:02.100 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [57ms] +2025-07-10 16:54:03.305 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [82ms] +2025-07-10 16:54:03.305 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:54:03.305 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [80ms] +2025-07-10 16:54:03.308 [info] > git show --textconv :docs/hxzx/商品管理.md [88ms] +2025-07-10 16:54:03.308 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [81ms] +2025-07-10 16:54:03.308 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:54:03.379 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [71ms] +2025-07-10 16:54:03.647 [info] > git show --textconv :docs/hxzx/营销管理.md [62ms] +2025-07-10 16:54:03.647 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [60ms] +2025-07-10 16:54:03.648 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:54:03.649 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [59ms] +2025-07-10 16:54:03.651 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [59ms] +2025-07-10 16:54:03.652 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:54:03.705 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [53ms] +2025-07-10 16:54:18.998 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [73ms] +2025-07-10 16:54:19.000 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [71ms] +2025-07-10 16:54:19.003 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [67ms] +2025-07-10 16:54:19.057 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [56ms] +2025-07-10 16:54:19.057 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [55ms] +2025-07-10 16:54:19.059 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [55ms] +2025-07-10 16:54:36.822 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [69ms] +2025-07-10 16:54:36.824 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [75ms] +2025-07-10 16:54:36.826 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [82ms] +2025-07-10 16:54:36.885 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [61ms] +2025-07-10 16:54:36.885 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 16:54:36.886 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [58ms] +2025-07-10 16:54:47.902 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [101ms] +2025-07-10 16:54:47.929 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [115ms] +2025-07-10 16:54:47.934 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [126ms] +2025-07-10 16:54:47.987 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [83ms] +2025-07-10 16:54:47.998 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [66ms] +2025-07-10 16:54:48.003 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [67ms] +2025-07-10 16:54:58.626 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [126ms] +2025-07-10 16:54:58.628 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [121ms] +2025-07-10 16:54:58.631 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [138ms] +2025-07-10 16:54:58.689 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [58ms] +2025-07-10 16:54:58.689 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [61ms] +2025-07-10 16:54:58.690 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [57ms] +2025-07-10 16:55:04.577 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [64ms] +2025-07-10 16:55:04.584 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [66ms] +2025-07-10 16:55:04.586 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [65ms] +2025-07-10 16:55:04.638 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [58ms] +2025-07-10 16:55:04.644 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-10 16:55:04.646 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-10 16:55:13.027 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [77ms] +2025-07-10 16:55:13.030 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [71ms] +2025-07-10 16:55:13.033 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [67ms] +2025-07-10 16:55:13.092 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [61ms] +2025-07-10 16:55:13.093 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 16:55:13.097 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 16:55:38.665 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [101ms] +2025-07-10 16:55:38.684 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [105ms] +2025-07-10 16:55:38.691 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [115ms] +2025-07-10 16:55:38.730 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [63ms] +2025-07-10 16:55:38.743 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-10 16:55:38.749 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-10 16:57:03.999 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [72ms] +2025-07-10 16:57:04.002 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [80ms] +2025-07-10 16:57:04.004 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [73ms] +2025-07-10 16:57:04.060 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-10 16:57:04.060 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [56ms] +2025-07-10 16:57:04.062 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-10 16:57:27.524 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [70ms] +2025-07-10 16:57:27.532 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [75ms] +2025-07-10 16:57:27.534 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [73ms] +2025-07-10 16:57:27.585 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [59ms] +2025-07-10 16:57:27.594 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 16:57:27.595 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-10 16:58:14.985 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [78ms] +2025-07-10 16:58:14.987 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [77ms] +2025-07-10 16:58:14.989 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [77ms] +2025-07-10 16:58:15.043 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [57ms] +2025-07-10 16:58:15.044 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [55ms] +2025-07-10 16:58:15.045 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [52ms] +2025-07-10 16:58:47.420 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [85ms] +2025-07-10 16:58:47.423 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [83ms] +2025-07-10 16:58:47.425 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [79ms] +2025-07-10 16:58:47.478 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [55ms] +2025-07-10 16:58:47.480 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [55ms] +2025-07-10 16:58:47.481 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [52ms] +2025-07-10 17:03:13.648 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [73ms] +2025-07-10 17:03:13.651 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [62ms] +2025-07-10 17:03:13.654 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [69ms] +2025-07-10 17:03:13.715 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [65ms] +2025-07-10 17:03:13.718 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [64ms] +2025-07-10 17:03:13.718 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [62ms] +2025-07-10 17:04:04.293 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [137ms] +2025-07-10 17:04:04.296 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [134ms] +2025-07-10 17:04:04.298 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [131ms] +2025-07-10 17:04:04.354 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [58ms] +2025-07-10 17:04:04.356 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-10 17:04:04.360 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 17:04:16.972 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [74ms] +2025-07-10 17:04:16.975 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [74ms] +2025-07-10 17:04:16.979 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [83ms] +2025-07-10 17:04:17.118 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [134ms] +2025-07-10 17:04:17.120 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [141ms] +2025-07-10 17:04:17.121 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [146ms] +2025-07-10 17:04:18.422 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [72ms] +2025-07-10 17:04:18.425 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [78ms] +2025-07-10 17:04:18.428 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [75ms] +2025-07-10 17:04:18.485 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 17:04:18.487 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [60ms] +2025-07-10 17:04:18.491 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 17:04:19.621 [info] > git symbolic-ref --short HEAD [63ms] +2025-07-10 17:04:19.623 [info] > git config --get commit.template [62ms] +2025-07-10 17:04:19.682 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-10 17:04:19.685 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:04:19.741 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 17:04:19.807 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [60ms] +2025-07-10 17:04:19.810 [info] > git status -z -uall [66ms] +2025-07-10 17:04:22.083 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [68ms] +2025-07-10 17:04:22.087 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [69ms] +2025-07-10 17:04:22.089 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [68ms] +2025-07-10 17:04:22.198 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [111ms] +2025-07-10 17:04:22.199 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [106ms] +2025-07-10 17:04:22.214 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [125ms] +2025-07-10 17:04:24.568 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [78ms] +2025-07-10 17:04:24.573 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [80ms] +2025-07-10 17:04:24.579 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [82ms] +2025-07-10 17:04:24.645 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [72ms] +2025-07-10 17:04:24.645 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [70ms] +2025-07-10 17:04:24.650 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [69ms] +2025-07-10 17:05:05.905 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [66ms] +2025-07-10 17:05:05.908 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [66ms] +2025-07-10 17:05:05.910 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [65ms] +2025-07-10 17:05:05.964 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [57ms] +2025-07-10 17:05:05.967 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-10 17:05:05.968 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [56ms] +2025-07-10 17:05:09.631 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [75ms] +2025-07-10 17:05:09.635 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [75ms] +2025-07-10 17:05:09.638 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [76ms] +2025-07-10 17:05:09.704 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [70ms] +2025-07-10 17:05:09.709 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [72ms] +2025-07-10 17:05:09.711 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [71ms] +2025-07-10 17:05:11.328 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 17:05:11.861 [info] > git config --get commit.template [58ms] +2025-07-10 17:05:11.861 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-10 17:05:11.922 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-10 17:05:11.925 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:05:11.980 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 17:05:12.043 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [60ms] +2025-07-10 17:05:12.050 [info] > git status -z -uall [68ms] +2025-07-10 17:05:16.722 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [61ms] +2025-07-10 17:05:16.725 [info] > git show --textconv :docs/hxzx/分销体系.md [66ms] +2025-07-10 17:05:16.779 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [54ms] +2025-07-10 17:05:45.084 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [72ms] +2025-07-10 17:05:45.088 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [73ms] +2025-07-10 17:05:45.090 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 17:05:45.144 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [57ms] +2025-07-10 17:05:45.144 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [54ms] +2025-07-10 17:05:45.145 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [53ms] +2025-07-10 17:05:49.707 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [77ms] +2025-07-10 17:05:49.709 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 17:05:49.711 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [77ms] +2025-07-10 17:05:49.767 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-10 17:05:49.768 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [59ms] +2025-07-10 17:05:49.769 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-10 17:06:27.209 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [75ms] +2025-07-10 17:06:27.212 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [83ms] +2025-07-10 17:06:27.215 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [76ms] +2025-07-10 17:06:27.274 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [63ms] +2025-07-10 17:06:27.275 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [61ms] +2025-07-10 17:06:27.277 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 17:06:43.306 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [71ms] +2025-07-10 17:06:43.309 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [70ms] +2025-07-10 17:06:43.311 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [79ms] +2025-07-10 17:06:43.369 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 17:06:43.372 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [61ms] +2025-07-10 17:06:43.372 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [60ms] +2025-07-10 17:06:58.061 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [129ms] +2025-07-10 17:06:58.074 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [138ms] +2025-07-10 17:06:58.076 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [138ms] +2025-07-10 17:06:58.121 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [59ms] +2025-07-10 17:06:58.132 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-10 17:06:58.133 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [56ms] +2025-07-10 17:07:12.247 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [75ms] +2025-07-10 17:07:12.251 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [82ms] +2025-07-10 17:07:12.254 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [76ms] +2025-07-10 17:07:12.315 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [61ms] +2025-07-10 17:07:12.315 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [64ms] +2025-07-10 17:07:12.319 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [62ms] +2025-07-10 17:07:51.877 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [69ms] +2025-07-10 17:07:51.879 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [77ms] +2025-07-10 17:07:51.881 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [69ms] +2025-07-10 17:07:51.942 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [61ms] +2025-07-10 17:07:51.942 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [63ms] +2025-07-10 17:07:51.943 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-10 17:10:01.681 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [72ms] +2025-07-10 17:10:01.684 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [73ms] +2025-07-10 17:10:01.688 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [73ms] +2025-07-10 17:10:01.740 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [57ms] +2025-07-10 17:10:01.742 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-10 17:10:01.746 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [56ms] +2025-07-10 17:10:03.393 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [67ms] +2025-07-10 17:10:03.396 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-10 17:10:03.401 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [68ms] +2025-07-10 17:10:03.458 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [63ms] +2025-07-10 17:10:03.459 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 17:10:03.463 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-10 17:10:05.118 [info] > git check-ignore -v -z --stdin [58ms] +2025-07-10 17:10:05.679 [info] > git symbolic-ref --short HEAD [56ms] +2025-07-10 17:10:05.682 [info] > git config --get commit.template [56ms] +2025-07-10 17:10:05.737 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 17:10:05.740 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:10:05.792 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 17:10:05.852 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 17:10:05.856 [info] > git status -z -uall [62ms] +2025-07-10 17:10:06.248 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [73ms] +2025-07-10 17:10:06.251 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [74ms] +2025-07-10 17:10:06.254 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [74ms] +2025-07-10 17:10:06.312 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-10 17:10:06.312 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [62ms] +2025-07-10 17:10:06.315 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [58ms] +2025-07-10 17:10:11.727 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [65ms] +2025-07-10 17:10:11.733 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [68ms] +2025-07-10 17:10:11.735 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [67ms] +2025-07-10 17:10:11.788 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [60ms] +2025-07-10 17:10:11.794 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-10 17:10:11.795 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [58ms] +2025-07-10 17:10:12.853 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [76ms] +2025-07-10 17:10:12.857 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [72ms] +2025-07-10 17:10:12.860 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [79ms] +2025-07-10 17:10:12.922 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [64ms] +2025-07-10 17:10:12.923 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [67ms] +2025-07-10 17:10:12.926 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [64ms] +2025-07-10 17:10:15.773 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [66ms] +2025-07-10 17:10:15.776 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [66ms] +2025-07-10 17:10:15.779 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [66ms] +2025-07-10 17:10:15.841 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [65ms] +2025-07-10 17:10:15.841 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [62ms] +2025-07-10 17:10:15.845 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [64ms] +2025-07-10 17:10:17.705 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [82ms] +2025-07-10 17:10:17.714 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [86ms] +2025-07-10 17:10:17.717 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [85ms] +2025-07-10 17:10:17.792 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [84ms] +2025-07-10 17:10:17.797 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [81ms] +2025-07-10 17:10:17.802 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [83ms] +2025-07-10 17:10:19.612 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 17:10:20.149 [info] > git config --get commit.template [59ms] +2025-07-10 17:10:20.149 [info] > git symbolic-ref --short HEAD [63ms] +2025-07-10 17:10:20.239 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [87ms] +2025-07-10 17:10:20.242 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:10:20.298 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 17:10:20.361 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [58ms] +2025-07-10 17:10:20.362 [info] > git status -z -uall [61ms] +2025-07-10 17:10:20.992 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [70ms] +2025-07-10 17:10:20.995 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [71ms] +2025-07-10 17:10:20.998 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [70ms] +2025-07-10 17:10:21.061 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [67ms] +2025-07-10 17:10:21.064 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [66ms] +2025-07-10 17:10:21.067 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [66ms] +2025-07-10 17:10:23.291 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 17:10:25.432 [info] > git config --get commit.template [59ms] +2025-07-10 17:10:25.433 [info] > git symbolic-ref --short HEAD [62ms] +2025-07-10 17:10:25.492 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 17:10:25.494 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:10:25.551 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 17:10:25.620 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [64ms] +2025-07-10 17:10:25.622 [info] > git status -z -uall [69ms] +2025-07-10 17:13:11.014 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [77ms] +2025-07-10 17:13:11.017 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [78ms] +2025-07-10 17:13:11.021 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [88ms] +2025-07-10 17:13:11.083 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [66ms] +2025-07-10 17:13:11.088 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [68ms] +2025-07-10 17:13:11.089 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [65ms] +2025-07-10 17:13:13.611 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [76ms] +2025-07-10 17:13:13.615 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [77ms] +2025-07-10 17:13:13.618 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [77ms] +2025-07-10 17:13:13.675 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [62ms] +2025-07-10 17:13:13.683 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [65ms] +2025-07-10 17:13:13.684 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [63ms] +2025-07-10 17:13:15.367 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 17:13:15.963 [info] > git symbolic-ref --short HEAD [62ms] +2025-07-10 17:13:15.966 [info] > git config --get commit.template [63ms] +2025-07-10 17:13:16.024 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [58ms] +2025-07-10 17:13:16.027 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:13:16.085 [info] > git rev-parse refs/remotes/origin/master [58ms] +2025-07-10 17:13:16.149 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 17:13:16.153 [info] > git status -z -uall [65ms] +2025-07-10 17:13:47.307 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [81ms] +2025-07-10 17:13:47.315 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [73ms] +2025-07-10 17:13:47.317 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [81ms] +2025-07-10 17:13:47.365 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [55ms] +2025-07-10 17:13:47.372 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [55ms] +2025-07-10 17:13:47.372 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [53ms] +2025-07-10 17:14:24.766 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [87ms] +2025-07-10 17:14:24.769 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [100ms] +2025-07-10 17:14:24.772 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [101ms] +2025-07-10 17:14:24.831 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [63ms] +2025-07-10 17:14:24.833 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [60ms] +2025-07-10 17:14:24.835 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [61ms] +2025-07-10 17:14:35.463 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [83ms] +2025-07-10 17:14:35.465 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [75ms] +2025-07-10 17:14:35.468 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [84ms] +2025-07-10 17:14:35.525 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [59ms] +2025-07-10 17:14:35.525 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-10 17:14:35.526 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-10 17:15:36.374 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [96ms] +2025-07-10 17:15:36.382 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [110ms] +2025-07-10 17:15:36.387 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [103ms] +2025-07-10 17:15:36.445 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [64ms] +2025-07-10 17:15:36.446 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [59ms] +2025-07-10 17:15:36.447 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [58ms] +2025-07-10 17:15:38.693 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [113ms] +2025-07-10 17:15:38.699 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [103ms] +2025-07-10 17:15:38.702 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [117ms] +2025-07-10 17:15:38.765 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [69ms] +2025-07-10 17:15:38.770 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [66ms] +2025-07-10 17:15:38.772 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [70ms] +2025-07-10 17:15:41.034 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [75ms] +2025-07-10 17:15:41.038 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 17:15:41.040 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [78ms] +2025-07-10 17:15:41.099 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [62ms] +2025-07-10 17:15:41.101 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 17:15:41.103 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-10 17:15:52.111 [info] > git -c user.useConfigOnly=true commit --quiet [63ms] +2025-07-10 17:15:52.111 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 17:15:52.168 [info] > git config --get-all user.name [55ms] +2025-07-10 17:15:52.233 [info] > git symbolic-ref --short HEAD [63ms] +2025-07-10 17:15:52.239 [info] > git config --get commit.template [67ms] +2025-07-10 17:15:52.291 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 17:15:52.293 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:15:52.346 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 17:15:52.406 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-10 17:15:52.410 [info] > git status -z -uall [62ms] +2025-07-10 17:15:54.306 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [97ms] +2025-07-10 17:15:54.309 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [103ms] +2025-07-10 17:15:54.326 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [113ms] +2025-07-10 17:15:54.373 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [64ms] +2025-07-10 17:15:54.375 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [64ms] +2025-07-10 17:15:54.384 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [56ms] +2025-07-10 17:16:07.350 [info] > git -c user.useConfigOnly=true commit --quiet [62ms] +2025-07-10 17:16:07.350 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 17:16:07.407 [info] > git config --get-all user.name [55ms] +2025-07-10 17:16:07.467 [info] > git config --get commit.template [55ms] +2025-07-10 17:16:07.467 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-10 17:16:07.526 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [58ms] +2025-07-10 17:16:07.529 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:16:07.581 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 17:16:07.640 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [54ms] +2025-07-10 17:16:07.644 [info] > git status -z -uall [60ms] +2025-07-10 17:16:09.267 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [70ms] +2025-07-10 17:16:09.270 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [71ms] +2025-07-10 17:16:09.273 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 17:16:09.327 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [58ms] +2025-07-10 17:16:09.330 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-10 17:16:09.331 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [54ms] +2025-07-10 17:16:18.451 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [70ms] +2025-07-10 17:16:18.452 [info] > git show --textconv HEAD:docs/hxzx/分销体系.md [73ms] +2025-07-10 17:16:23.548 [info] > git -c user.useConfigOnly=true commit --quiet [61ms] +2025-07-10 17:16:23.548 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 17:16:23.603 [info] > git config --get-all user.name [54ms] +2025-07-10 17:16:23.660 [info] > git config --get commit.template [53ms] +2025-07-10 17:16:23.660 [info] > git symbolic-ref --short HEAD [55ms] +2025-07-10 17:16:23.718 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 17:16:23.720 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:16:23.772 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 17:16:23.832 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 17:16:23.835 [info] > git status -z -uall [59ms] +2025-07-10 17:17:46.422 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [73ms] +2025-07-10 17:17:46.425 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [74ms] +2025-07-10 17:17:46.428 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [81ms] +2025-07-10 17:17:46.486 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [62ms] +2025-07-10 17:17:46.490 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [62ms] +2025-07-10 17:17:46.492 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [62ms] +2025-07-10 17:17:50.655 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-10 17:17:50.659 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [74ms] +2025-07-10 17:17:50.661 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [69ms] +2025-07-10 17:17:50.726 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [67ms] +2025-07-10 17:17:50.727 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [66ms] +2025-07-10 17:17:50.730 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [66ms] +2025-07-10 17:17:55.512 [info] > git add -A -- docs/hxzx/自提管理.md [61ms] +2025-07-10 17:17:55.571 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-10 17:17:55.574 [info] > git config --get commit.template [58ms] +2025-07-10 17:17:55.629 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 17:17:55.631 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:17:55.688 [info] > git rev-parse refs/remotes/origin/master [57ms] +2025-07-10 17:17:55.747 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 17:17:55.751 [info] > git status -z -uall [60ms] +2025-07-10 17:17:55.915 [info] > git show --textconv :docs/hxzx/自提管理.md [72ms] +2025-07-10 17:17:55.917 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [70ms] +2025-07-10 17:17:55.917 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:17:55.920 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [72ms] +2025-07-10 17:17:55.924 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [72ms] +2025-07-10 17:17:55.924 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:17:55.982 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [60ms] +2025-07-10 17:17:56.082 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/自提管理.md [83ms] +2025-07-10 17:17:56.082 [info] fatal: no such path docs/hxzx/自提管理.md in 84e81a2b2f02798acbb48e1045be9ddac82d8632 +2025-07-10 17:17:56.766 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [67ms] +2025-07-10 17:17:56.772 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [71ms] +2025-07-10 17:17:56.778 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [70ms] +2025-07-10 17:17:56.781 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [77ms] +2025-07-10 17:17:56.784 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [74ms] +2025-07-10 17:17:56.788 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [75ms] +2025-07-10 17:17:56.795 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [80ms] +2025-07-10 17:17:56.842 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [72ms] +2025-07-10 17:17:56.850 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [75ms] +2025-07-10 17:17:56.854 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [73ms] +2025-07-10 17:17:56.863 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [76ms] +2025-07-10 17:17:56.867 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [83ms] +2025-07-10 17:17:56.872 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [75ms] +2025-07-10 17:17:56.877 [info] > git show --textconv HEAD:docs/hxzx/分销体系.md [83ms] +2025-07-10 17:17:56.913 [info] > git show --textconv :docs/hxzx/登录后台.md [67ms] +2025-07-10 17:17:56.921 [info] > git show --textconv :docs/hxzx/订单管理.md [68ms] +2025-07-10 17:17:56.925 [info] > git show --textconv :docs/hxzx/营销管理.md [67ms] +2025-07-10 17:17:56.935 [info] > git show --textconv :docs/hxzx/商品管理.md [64ms] +2025-07-10 17:17:56.935 [info] > git show --textconv :docs/hxzx/账号权限管理.md [69ms] +2025-07-10 17:17:56.939 [info] > git show --textconv :docs/hxzx/自提管理.md [63ms] +2025-07-10 17:17:57.759 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-10 17:17:57.762 [info] > git config --get commit.template [58ms] +2025-07-10 17:17:57.815 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [54ms] +2025-07-10 17:17:57.818 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:17:57.872 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 17:17:57.935 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [58ms] +2025-07-10 17:17:57.938 [info] > git status -z -uall [64ms] +2025-07-10 17:18:11.951 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [67ms] +2025-07-10 17:18:11.953 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [68ms] +2025-07-10 17:18:11.956 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [68ms] +2025-07-10 17:18:11.997 [info] > git add -A -- docs/hxzx/自提管理.md [66ms] +2025-07-10 17:18:12.015 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [62ms] +2025-07-10 17:18:12.017 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [61ms] +2025-07-10 17:18:12.019 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 17:18:12.055 [info] > git symbolic-ref --short HEAD [55ms] +2025-07-10 17:18:12.057 [info] > git config --get commit.template [55ms] +2025-07-10 17:18:12.111 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [53ms] +2025-07-10 17:18:12.113 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:18:12.200 [info] > git rev-parse refs/remotes/origin/master [87ms] +2025-07-10 17:18:12.266 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [61ms] +2025-07-10 17:18:12.267 [info] > git status -z -uall [64ms] +2025-07-10 17:18:12.336 [info] > git -c user.useConfigOnly=true commit --quiet [65ms] +2025-07-10 17:18:12.336 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 17:18:12.393 [info] > git config --get-all user.name [55ms] +2025-07-10 17:18:12.454 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 17:18:12.456 [info] > git config --get commit.template [58ms] +2025-07-10 17:18:12.512 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 17:18:12.515 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:18:12.569 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 17:18:12.631 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [58ms] +2025-07-10 17:18:12.635 [info] > git status -z -uall [64ms] +2025-07-10 17:18:15.530 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [87ms] +2025-07-10 17:18:15.551 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [102ms] +2025-07-10 17:18:15.588 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [128ms] +2025-07-10 17:18:15.592 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [121ms] +2025-07-10 17:18:15.597 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [142ms] +2025-07-10 17:18:15.600 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [148ms] +2025-07-10 17:18:15.624 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [179ms] +2025-07-10 17:18:15.627 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [170ms] +2025-07-10 17:18:15.656 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [192ms] +2025-07-10 17:18:15.659 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [192ms] +2025-07-10 17:18:15.693 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [156ms] +2025-07-10 17:18:15.717 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [120ms] +2025-07-10 17:18:15.719 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [115ms] +2025-07-10 17:18:15.723 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [131ms] +2025-07-10 17:18:15.723 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [96ms] +2025-07-10 17:18:15.724 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [153ms] +2025-07-10 17:18:15.727 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [126ms] +2025-07-10 17:18:15.727 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [97ms] +2025-07-10 17:18:15.743 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [85ms] +2025-07-10 17:18:16.016 [info] > git show --textconv HEAD:docs/hxzx/分销体系.md [96ms] +2025-07-10 17:18:16.053 [info] > git show --textconv :docs/hxzx/自提管理.md [127ms] +2025-07-10 17:18:16.056 [info] > git show --textconv :docs/hxzx/登录后台.md [126ms] +2025-07-10 17:18:16.061 [info] > git show --textconv :docs/hxzx/商品管理.md [138ms] +2025-07-10 17:18:16.094 [info] > git show --textconv :docs/hxzx/账号权限管理.md [154ms] +2025-07-10 17:18:16.096 [info] > git show --textconv :docs/hxzx/营销管理.md [164ms] +2025-07-10 17:18:16.103 [info] > git show --textconv :docs/hxzx/商品管理.md [154ms] +2025-07-10 17:18:16.107 [info] > git show --textconv :docs/hxzx/账号权限管理.md [155ms] +2025-07-10 17:18:16.110 [info] > git show --textconv :docs/hxzx/营销管理.md [175ms] +2025-07-10 17:18:16.120 [info] > git show --textconv :docs/hxzx/订单管理.md [173ms] +2025-07-10 17:18:16.525 [info] > git config --get commit.template [62ms] +2025-07-10 17:18:16.526 [info] > git symbolic-ref --short HEAD [65ms] +2025-07-10 17:18:16.589 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [60ms] +2025-07-10 17:18:16.592 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:18:16.649 [info] > git rev-parse refs/remotes/origin/master [57ms] +2025-07-10 17:18:16.714 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [60ms] +2025-07-10 17:18:16.717 [info] > git status -z -uall [66ms] +2025-07-10 17:18:38.538 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [60ms] +2025-07-10 17:18:57.202 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [72ms] +2025-07-10 17:18:57.203 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [71ms] +2025-07-10 17:18:57.207 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [70ms] +2025-07-10 17:18:57.213 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [73ms] +2025-07-10 17:18:57.267 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [60ms] +2025-07-10 17:18:57.267 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-10 17:18:57.275 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 17:19:13.372 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [61ms] +2025-07-10 17:19:13.375 [info] > git show --textconv :docs/hxzx/常见问题解答.md [66ms] +2025-07-10 17:19:13.434 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [59ms] +2025-07-10 17:19:16.157 [info] > git -c user.useConfigOnly=true commit --quiet [62ms] +2025-07-10 17:19:16.157 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 17:19:16.214 [info] > git config --get-all user.name [55ms] +2025-07-10 17:19:16.324 [info] > git symbolic-ref --short HEAD [108ms] +2025-07-10 17:19:16.327 [info] > git config --get commit.template [107ms] +2025-07-10 17:19:16.379 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [52ms] +2025-07-10 17:19:16.381 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:19:16.435 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 17:19:16.496 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 17:19:16.499 [info] > git status -z -uall [61ms] +2025-07-10 17:19:19.109 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [69ms] +2025-07-10 17:19:19.114 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [71ms] +2025-07-10 17:19:19.117 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [69ms] +2025-07-10 17:19:19.122 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 17:19:19.181 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [70ms] +2025-07-10 17:19:19.188 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [72ms] +2025-07-10 17:19:19.192 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [72ms] +2025-07-10 17:19:19.194 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [69ms] +2025-07-10 17:19:31.989 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [59ms] +2025-07-10 17:19:31.992 [info] > git show --textconv :docs/hxzx/安全管理.md [65ms] +2025-07-10 17:19:32.046 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [54ms] +2025-07-10 17:19:32.603 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [57ms] +2025-07-10 17:19:32.606 [info] > git show --textconv :docs/hxzx/常见问题解答.md [64ms] +2025-07-10 17:19:32.663 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [58ms] +2025-07-10 17:19:32.925 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [62ms] +2025-07-10 17:19:33.056 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [129ms] +2025-07-10 17:19:33.268 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [64ms] +2025-07-10 17:19:33.329 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [58ms] +2025-07-10 17:19:34.424 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [61ms] +2025-07-10 17:19:34.482 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [55ms] +2025-07-10 17:19:35.638 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [89ms] +2025-07-10 17:19:35.716 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [75ms] +2025-07-10 17:19:37.087 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [58ms] +2025-07-10 17:19:37.144 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [54ms] +2025-07-10 17:19:38.666 [info] > git show --textconv :docs/hxzx/终端管理.md [91ms] +2025-07-10 17:19:38.667 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [89ms] +2025-07-10 17:19:38.743 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [73ms] +2025-07-10 17:19:40.003 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [58ms] +2025-07-10 17:19:40.006 [info] > git show --textconv :docs/hxzx/自提管理.md [64ms] +2025-07-10 17:19:40.081 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [75ms] +2025-07-10 17:19:40.511 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 17:19:48.191 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [56ms] +2025-07-10 17:19:48.194 [info] > git show --textconv :docs/hxzx/终端管理.md [61ms] +2025-07-10 17:19:48.248 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [54ms] +2025-07-10 17:19:49.080 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [58ms] +2025-07-10 17:19:49.138 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [55ms] +2025-07-10 17:19:49.919 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [58ms] +2025-07-10 17:19:50.028 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [106ms] +2025-07-10 17:19:50.719 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [59ms] +2025-07-10 17:19:50.780 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [58ms] +2025-07-10 17:19:51.236 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [63ms] +2025-07-10 17:19:51.294 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [56ms] +2025-07-10 17:19:51.781 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [57ms] +2025-07-10 17:19:51.881 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [97ms] +2025-07-10 17:19:52.201 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [58ms] +2025-07-10 17:19:52.204 [info] > git show --textconv :docs/hxzx/常见问题解答.md [64ms] +2025-07-10 17:19:52.261 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [57ms] +2025-07-10 17:19:52.714 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [58ms] +2025-07-10 17:19:52.717 [info] > git show --textconv :docs/hxzx/安全管理.md [63ms] +2025-07-10 17:19:52.770 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [54ms] +2025-07-10 17:19:56.239 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [58ms] +2025-07-10 17:19:57.912 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [60ms] +2025-07-10 17:19:57.915 [info] > git show --textconv :docs/hxzx/自提管理.md [65ms] +2025-07-10 17:19:57.974 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [58ms] +2025-07-10 17:19:58.336 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [57ms] +2025-07-10 17:19:58.339 [info] > git show --textconv :docs/hxzx/终端管理.md [63ms] +2025-07-10 17:19:58.393 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [53ms] +2025-07-10 17:19:58.904 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [59ms] +2025-07-10 17:19:58.985 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [78ms] +2025-07-10 17:19:59.201 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [60ms] +2025-07-10 17:19:59.262 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-10 17:20:01.502 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [57ms] +2025-07-10 17:20:01.559 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [54ms] +2025-07-10 17:20:05.872 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [59ms] +2025-07-10 17:20:05.929 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [55ms] +2025-07-10 17:20:08.854 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [58ms] +2025-07-10 17:20:08.914 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [58ms] +2025-07-10 17:20:09.447 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [59ms] +2025-07-10 17:20:09.506 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [57ms] +2025-07-10 17:20:09.976 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [60ms] +2025-07-10 17:20:10.033 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [54ms] +2025-07-10 17:20:57.101 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [56ms] +2025-07-10 17:20:57.105 [info] > git show --textconv :docs/hxzx/分销体系.md [62ms] +2025-07-10 17:20:57.161 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [56ms] +2025-07-10 17:20:57.487 [info] > git show --textconv :docs/hxzx/商品管理.md [62ms] +2025-07-10 17:20:57.489 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [63ms] +2025-07-10 17:20:57.490 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:20:57.492 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [64ms] +2025-07-10 17:20:57.495 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [65ms] +2025-07-10 17:20:57.495 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:20:57.551 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [56ms] +2025-07-10 17:21:21.973 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 17:21:32.054 [info] > git ls-files --stage -- docs/bxgo/5、商城配置.md [59ms] +2025-07-10 17:21:32.057 [info] > git show --textconv :docs/bxgo/5、商城配置.md [65ms] +2025-07-10 17:21:32.139 [info] > git cat-file -s 223e98885dd122cd0ed2af571f4e3601f6ef77cc [81ms] +2025-07-10 17:21:32.601 [info] > git ls-files --stage -- docs/bxgo/4、订单管理.md [55ms] +2025-07-10 17:21:32.605 [info] > git show --textconv :docs/bxgo/4、订单管理.md [61ms] +2025-07-10 17:21:32.711 [info] > git cat-file -s 87f5fec7255d6e3c4cbf8d57dc95aab5774443af [106ms] +2025-07-10 17:21:34.102 [info] > git ls-files --stage -- docs/bxgo/5、商城配置.md [55ms] +2025-07-10 17:21:34.105 [info] > git show --textconv :docs/bxgo/5、商城配置.md [61ms] +2025-07-10 17:21:34.160 [info] > git cat-file -s 223e98885dd122cd0ed2af571f4e3601f6ef77cc [55ms] +2025-07-10 17:21:37.101 [info] > git ls-files --stage -- docs/crm/1、登录系统.md [54ms] +2025-07-10 17:21:37.105 [info] > git show --textconv :docs/crm/1、登录系统.md [60ms] +2025-07-10 17:21:37.159 [info] > git cat-file -s e2f8c2ea8433f89ea0083966503a5686ca12987d [55ms] +2025-07-10 17:21:38.700 [info] > git show --textconv :docs/crm/2、客户管理.md [59ms] +2025-07-10 17:21:38.700 [info] > git ls-files --stage -- docs/crm/2、客户管理.md [57ms] +2025-07-10 17:21:38.757 [info] > git cat-file -s b55a419db338067f2d62f57b01faebae944a89d1 [53ms] +2025-07-10 17:21:39.933 [info] > git show --textconv :docs/crm/3、任务管理.md [59ms] +2025-07-10 17:21:39.934 [info] > git ls-files --stage -- docs/crm/3、任务管理.md [57ms] +2025-07-10 17:21:39.995 [info] > git cat-file -s 679ca82cc7aaef795e72573e801aeb0e138222c7 [59ms] +2025-07-10 17:21:40.653 [info] > git show --textconv :docs/crm/4、财务管理.md [62ms] +2025-07-10 17:21:40.654 [info] > git ls-files --stage -- docs/crm/4、财务管理.md [59ms] +2025-07-10 17:21:40.715 [info] > git cat-file -s d75c81d0c707a704ecc6f860273dd011bd8e0242 [59ms] +2025-07-10 17:21:42.235 [info] > git ls-files --stage -- docs/bxgo/1、登录系统.md [55ms] +2025-07-10 17:21:42.238 [info] > git show --textconv :docs/bxgo/1、登录系统.md [62ms] +2025-07-10 17:21:42.297 [info] > git cat-file -s dcc83ab8f7bf58fc8c20a32e8243a563edf86f19 [60ms] +2025-07-10 17:21:45.082 [info] > git ls-files --stage -- docs/bxgo/商品管理/_category_.json [56ms] +2025-07-10 17:21:45.084 [info] > git show --textconv :docs/bxgo/商品管理/_category_.json [61ms] +2025-07-10 17:21:45.141 [info] > git cat-file -s 9038f98f8e26d700c7bb5eff9ebcfe83fb0e4c5d [57ms] +2025-07-10 17:21:45.911 [info] > git ls-files --stage -- docs/bxgo/商品管理/管理商品.md [59ms] +2025-07-10 17:21:45.914 [info] > git show --textconv :docs/bxgo/商品管理/管理商品.md [65ms] +2025-07-10 17:21:45.969 [info] > git cat-file -s 06c065d07716033ac3e709ab01d5a44a5228e505 [55ms] +2025-07-10 17:22:27.109 [info] > git show --textconv :docs/hxzx/订单管理.md [68ms] +2025-07-10 17:22:27.112 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [68ms] +2025-07-10 17:22:27.112 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:22:27.113 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [66ms] +2025-07-10 17:22:27.117 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [67ms] +2025-07-10 17:22:27.117 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:22:27.175 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [60ms] +2025-07-10 17:22:29.771 [info] > git show --textconv :docs/hxzx/商品管理.md [63ms] +2025-07-10 17:22:29.774 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [63ms] +2025-07-10 17:22:29.774 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:22:29.775 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [63ms] +2025-07-10 17:22:29.778 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [64ms] +2025-07-10 17:22:29.779 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:22:29.833 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [56ms] +2025-07-10 17:23:11.287 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [77ms] +2025-07-10 17:23:11.290 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [87ms] +2025-07-10 17:23:11.293 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [80ms] +2025-07-10 17:23:11.349 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-10 17:23:11.351 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [58ms] +2025-07-10 17:23:11.354 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [58ms] +2025-07-10 17:23:58.127 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [75ms] +2025-07-10 17:23:58.130 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [75ms] +2025-07-10 17:23:58.134 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [75ms] +2025-07-10 17:23:58.192 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [62ms] +2025-07-10 17:23:58.195 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [62ms] +2025-07-10 17:23:58.195 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [58ms] +2025-07-10 17:24:40.680 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [80ms] +2025-07-10 17:24:40.684 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [77ms] +2025-07-10 17:24:40.687 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [74ms] +2025-07-10 17:24:40.743 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [59ms] +2025-07-10 17:24:40.744 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-10 17:24:40.746 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-10 17:25:18.019 [info] > git ls-files --stage -- docs/bxgo/商品管理/管理商品.md [56ms] +2025-07-10 17:25:18.022 [info] > git show --textconv :docs/bxgo/商品管理/管理商品.md [62ms] +2025-07-10 17:25:18.077 [info] > git cat-file -s 06c065d07716033ac3e709ab01d5a44a5228e505 [56ms] +2025-07-10 17:25:39.307 [info] > git ls-files --stage -- docs/bxgo/商品管理/商品分类.md [56ms] +2025-07-10 17:25:39.309 [info] > git show --textconv :docs/bxgo/商品管理/商品分类.md [62ms] +2025-07-10 17:25:39.388 [info] > git cat-file -s 08411d866a8ce2f6629676b0757a2b343aaae83a [79ms] +2025-07-10 17:25:43.443 [info] > git ls-files --stage -- docs/bxgo/商品管理/商品规格.md [53ms] +2025-07-10 17:25:43.446 [info] > git show --textconv :docs/bxgo/商品管理/商品规格.md [59ms] +2025-07-10 17:25:43.501 [info] > git cat-file -s 4392859e74c4265f5c6ccb727297896c15f5de37 [56ms] +2025-07-10 17:25:47.239 [info] > git ls-files --stage -- docs/bxgo/商品管理/管理商品.md [64ms] +2025-07-10 17:25:47.242 [info] > git show --textconv :docs/bxgo/商品管理/管理商品.md [69ms] +2025-07-10 17:25:47.301 [info] > git cat-file -s 06c065d07716033ac3e709ab01d5a44a5228e505 [59ms] +2025-07-10 17:25:50.529 [info] > git ls-files --stage -- docs/bxg/gusangyuan.md [55ms] +2025-07-10 17:25:50.532 [info] > git show --textconv :docs/bxg/gusangyuan.md [60ms] +2025-07-10 17:25:50.642 [info] > git cat-file -s 8e64f95f0a2679c8baaac02499c4d2f67114ba84 [110ms] +2025-07-10 17:25:52.730 [info] > git ls-files --stage -- docs/bxg/meishije_refund.md [57ms] +2025-07-10 17:25:52.733 [info] > git show --textconv :docs/bxg/meishije_refund.md [62ms] +2025-07-10 17:25:52.790 [info] > git cat-file -s 5ae72045670980fdbc8f1cbee6ec945b0fe24a72 [57ms] +2025-07-10 17:25:53.866 [info] > git ls-files --stage -- docs/bxg/meishijie.md [94ms] +2025-07-10 17:25:53.869 [info] > git show --textconv :docs/bxg/meishijie.md [99ms] +2025-07-10 17:25:53.929 [info] > git cat-file -s 8882fdbcb6bd9cfb909b33d3579bd1d4dfb1027b [61ms] +2025-07-10 17:26:02.729 [info] > git ls-files --stage -- docs/app/好生意App/订单管理.md [55ms] +2025-07-10 17:26:02.732 [info] > git show --textconv :docs/app/好生意App/订单管理.md [61ms] +2025-07-10 17:26:02.787 [info] > git cat-file -s b2f48809473df2783889829673adfb542c984439 [55ms] +2025-07-10 17:26:13.265 [info] > git ls-files --stage -- docs/bxgo/商品管理/管理商品.md [57ms] +2025-07-10 17:26:13.268 [info] > git show --textconv :docs/bxgo/商品管理/管理商品.md [62ms] +2025-07-10 17:26:13.325 [info] > git cat-file -s 06c065d07716033ac3e709ab01d5a44a5228e505 [56ms] +2025-07-10 17:26:15.039 [info] > git ls-files --stage -- docs/bxgo/商品管理/商品分类.md [56ms] +2025-07-10 17:26:15.042 [info] > git show --textconv :docs/bxgo/商品管理/商品分类.md [61ms] +2025-07-10 17:26:15.097 [info] > git cat-file -s 08411d866a8ce2f6629676b0757a2b343aaae83a [54ms] +2025-07-10 17:26:15.816 [info] > git ls-files --stage -- docs/bxgo/商品管理/商品规格.md [59ms] +2025-07-10 17:26:15.818 [info] > git show --textconv :docs/bxgo/商品管理/商品规格.md [63ms] +2025-07-10 17:26:15.876 [info] > git cat-file -s 4392859e74c4265f5c6ccb727297896c15f5de37 [57ms] +2025-07-10 17:26:16.326 [info] > git ls-files --stage -- docs/bxgo/商品管理/运费模版.md [54ms] +2025-07-10 17:26:16.329 [info] > git show --textconv :docs/bxgo/商品管理/运费模版.md [58ms] +2025-07-10 17:26:16.411 [info] > git cat-file -s 45bfde72ad5db666f96b345c16b6fb9a77a09663 [83ms] +2025-07-10 17:26:48.841 [info] > git show --textconv :docs/hxzx/营销管理.md [69ms] +2025-07-10 17:26:48.843 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [70ms] +2025-07-10 17:26:48.844 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:26:48.845 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [69ms] +2025-07-10 17:26:48.850 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [72ms] +2025-07-10 17:26:48.850 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:26:48.906 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-10 17:26:49.468 [info] > git show --textconv :docs/hxzx/账号权限管理.md [64ms] +2025-07-10 17:26:49.470 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [64ms] +2025-07-10 17:26:49.471 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:26:49.472 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [63ms] +2025-07-10 17:26:49.476 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [64ms] +2025-07-10 17:26:49.476 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:26:49.572 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [97ms] +2025-07-10 17:26:49.877 [info] > git show --textconv HEAD:docs/hxzx/终端管理.md [61ms] +2025-07-10 17:26:49.878 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:26:49.878 [info] > git show --textconv :docs/hxzx/终端管理.md [65ms] +2025-07-10 17:26:49.882 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [64ms] +2025-07-10 17:26:49.885 [info] > git ls-tree -l HEAD -- docs/hxzx/终端管理.md [64ms] +2025-07-10 17:26:49.885 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:26:49.943 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [59ms] +2025-07-10 17:26:50.329 [info] > git show --textconv :docs/hxzx/自提管理.md [63ms] +2025-07-10 17:26:50.331 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [63ms] +2025-07-10 17:26:50.332 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:26:50.332 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [62ms] +2025-07-10 17:26:50.337 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [64ms] +2025-07-10 17:26:50.338 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:26:50.390 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [56ms] +2025-07-10 17:27:11.521 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [70ms] +2025-07-10 17:27:11.526 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [72ms] +2025-07-10 17:27:11.532 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [75ms] +2025-07-10 17:27:11.564 [info] > git add -A -- docs/hxzx/商品管理.md [79ms] +2025-07-10 17:27:11.601 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [78ms] +2025-07-10 17:27:11.604 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [76ms] +2025-07-10 17:27:11.609 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [75ms] +2025-07-10 17:27:11.643 [info] > git symbolic-ref --short HEAD [76ms] +2025-07-10 17:27:11.649 [info] > git config --get commit.template [78ms] +2025-07-10 17:27:11.733 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [88ms] +2025-07-10 17:27:11.736 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:27:11.786 [info] > git rev-parse refs/remotes/origin/master [51ms] +2025-07-10 17:27:11.850 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 17:27:11.851 [info] > git status -z -uall [62ms] +2025-07-10 17:27:11.927 [info] > git -c user.useConfigOnly=true commit --quiet [69ms] +2025-07-10 17:27:11.927 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 17:27:11.987 [info] > git config --get-all user.name [58ms] +2025-07-10 17:27:12.047 [info] > git symbolic-ref --short HEAD [58ms] +2025-07-10 17:27:12.051 [info] > git config --get commit.template [58ms] +2025-07-10 17:27:12.107 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 17:27:12.109 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:27:12.168 [info] > git rev-parse refs/remotes/origin/master [58ms] +2025-07-10 17:27:12.228 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-10 17:27:12.232 [info] > git status -z -uall [62ms] +2025-07-10 17:27:14.252 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [83ms] +2025-07-10 17:27:14.262 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [90ms] +2025-07-10 17:27:14.266 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [87ms] +2025-07-10 17:27:14.272 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [91ms] +2025-07-10 17:27:14.276 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [100ms] +2025-07-10 17:27:14.284 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [100ms] +2025-07-10 17:27:14.300 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [112ms] +2025-07-10 17:27:14.306 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [115ms] +2025-07-10 17:27:14.315 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [115ms] +2025-07-10 17:27:14.328 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [134ms] +2025-07-10 17:27:14.374 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [116ms] +2025-07-10 17:27:14.387 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [115ms] +2025-07-10 17:27:14.390 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [115ms] +2025-07-10 17:27:14.391 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [126ms] +2025-07-10 17:27:14.399 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [119ms] +2025-07-10 17:27:14.431 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [122ms] +2025-07-10 17:27:14.432 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [141ms] +2025-07-10 17:27:14.432 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [127ms] +2025-07-10 17:27:14.435 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [117ms] +2025-07-10 17:27:14.461 [info] > git show --textconv HEAD:docs/hxzx/分销体系.md [125ms] +2025-07-10 17:27:14.552 [info] > git show --textconv :docs/hxzx/商品管理.md [174ms] +2025-07-10 17:27:14.597 [info] > git show --textconv :docs/hxzx/订单管理.md [173ms] +2025-07-10 17:27:14.599 [info] > git show --textconv :docs/hxzx/账号权限管理.md [155ms] +2025-07-10 17:27:14.602 [info] > git show --textconv :docs/hxzx/营销管理.md [175ms] +2025-07-10 17:27:14.608 [info] > git show --textconv :docs/hxzx/登录后台.md [187ms] +2025-07-10 17:27:14.615 [info] > git show --textconv :docs/hxzx/账号权限管理.md [184ms] +2025-07-10 17:27:14.625 [info] > git show --textconv :docs/hxzx/商品管理.md [175ms] +2025-07-10 17:27:14.625 [info] > git show --textconv :docs/hxzx/营销管理.md [170ms] +2025-07-10 17:27:14.628 [info] > git show --textconv :docs/hxzx/自提管理.md [167ms] +2025-07-10 17:27:15.124 [info] > git -c user.useConfigOnly=true commit --quiet [63ms] +2025-07-10 17:27:15.125 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 17:27:15.179 [info] > git config --get-all user.name [53ms] +2025-07-10 17:27:15.239 [info] > git config --get commit.template [54ms] +2025-07-10 17:27:15.239 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-10 17:27:15.296 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 17:27:15.299 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:27:15.354 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 17:27:15.453 [info] > git status -z -uall [97ms] +2025-07-10 17:27:15.470 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [111ms] +2025-07-10 17:27:15.538 [info] > git symbolic-ref --short HEAD [64ms] +2025-07-10 17:27:15.541 [info] > git config --get commit.template [65ms] +2025-07-10 17:27:15.600 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-10 17:27:15.602 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:27:15.657 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 17:27:15.718 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 17:27:15.720 [info] > git status -z -uall [61ms] +2025-07-10 17:27:17.260 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-10 17:27:17.263 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [73ms] +2025-07-10 17:27:17.266 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 17:27:17.326 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [63ms] +2025-07-10 17:27:17.328 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [61ms] +2025-07-10 17:27:17.332 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [62ms] +2025-07-10 17:27:24.524 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [68ms] +2025-07-10 17:27:24.527 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [69ms] +2025-07-10 17:27:24.529 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [67ms] +2025-07-10 17:27:24.628 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [101ms] +2025-07-10 17:27:24.648 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [116ms] +2025-07-10 17:27:24.649 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [119ms] +2025-07-10 17:27:36.206 [info] > git -c user.useConfigOnly=true commit --quiet [121ms] +2025-07-10 17:27:36.206 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 17:27:36.268 [info] > git config --get-all user.name [59ms] +2025-07-10 17:27:36.325 [info] > git symbolic-ref --short HEAD [54ms] +2025-07-10 17:27:36.327 [info] > git config --get commit.template [55ms] +2025-07-10 17:27:36.383 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 17:27:36.386 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:27:36.441 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 17:27:36.503 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 17:27:36.506 [info] > git status -z -uall [62ms] +2025-07-10 17:27:38.806 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [64ms] +2025-07-10 17:27:38.808 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [70ms] +2025-07-10 17:27:38.811 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [68ms] +2025-07-10 17:27:38.870 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [62ms] +2025-07-10 17:27:38.870 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [60ms] +2025-07-10 17:27:38.874 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-10 17:27:45.645 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [64ms] +2025-07-10 17:27:45.648 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [64ms] +2025-07-10 17:27:45.651 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [73ms] +2025-07-10 17:27:45.709 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [61ms] +2025-07-10 17:27:45.710 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-10 17:27:45.713 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [60ms] +2025-07-10 17:29:35.896 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [79ms] +2025-07-10 17:29:35.900 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [81ms] +2025-07-10 17:29:35.904 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [81ms] +2025-07-10 17:29:35.972 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [73ms] +2025-07-10 17:29:35.976 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [74ms] +2025-07-10 17:29:35.980 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [72ms] +2025-07-10 17:30:06.351 [info] > git -c user.useConfigOnly=true commit --quiet [65ms] +2025-07-10 17:30:06.352 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 17:30:06.410 [info] > git config --get-all user.name [56ms] +2025-07-10 17:30:06.469 [info] > git symbolic-ref --short HEAD [55ms] +2025-07-10 17:30:06.472 [info] > git config --get commit.template [56ms] +2025-07-10 17:30:06.588 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [116ms] +2025-07-10 17:30:06.590 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:30:06.645 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 17:30:06.706 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 17:30:06.710 [info] > git status -z -uall [62ms] +2025-07-10 17:30:18.314 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [66ms] +2025-07-10 17:30:18.319 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [64ms] +2025-07-10 17:30:18.321 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [70ms] +2025-07-10 17:30:18.379 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [63ms] +2025-07-10 17:30:18.382 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 17:30:18.383 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 17:30:35.043 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [61ms] +2025-07-10 17:30:35.046 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [67ms] +2025-07-10 17:30:35.049 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [65ms] +2025-07-10 17:30:35.157 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [109ms] +2025-07-10 17:30:35.159 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [114ms] +2025-07-10 17:30:35.165 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [113ms] +2025-07-10 17:30:53.403 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [92ms] +2025-07-10 17:30:53.407 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [88ms] +2025-07-10 17:30:53.411 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [88ms] +2025-07-10 17:30:53.490 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [84ms] +2025-07-10 17:30:53.491 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [76ms] +2025-07-10 17:30:53.491 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [82ms] +2025-07-10 17:31:00.238 [info] > git -c user.useConfigOnly=true commit --quiet [73ms] +2025-07-10 17:31:00.239 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 17:31:00.299 [info] > git config --get-all user.name [58ms] +2025-07-10 17:31:00.378 [info] > git config --get commit.template [73ms] +2025-07-10 17:31:00.378 [info] > git symbolic-ref --short HEAD [76ms] +2025-07-10 17:31:00.438 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 17:31:00.440 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:31:00.495 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 17:31:00.555 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 17:31:00.559 [info] > git status -z -uall [62ms] +2025-07-10 17:35:21.739 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [73ms] +2025-07-10 17:35:21.741 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [74ms] +2025-07-10 17:35:21.745 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [75ms] +2025-07-10 17:35:21.807 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [66ms] +2025-07-10 17:35:21.807 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [63ms] +2025-07-10 17:35:21.808 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [61ms] +2025-07-10 17:35:48.984 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [77ms] +2025-07-10 17:35:48.987 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [74ms] +2025-07-10 17:35:48.990 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [88ms] +2025-07-10 17:35:49.047 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 17:35:49.049 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 17:35:49.051 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [58ms] +2025-07-10 17:35:51.747 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [76ms] +2025-07-10 17:35:51.750 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [73ms] +2025-07-10 17:35:51.753 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [79ms] +2025-07-10 17:35:51.871 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [117ms] +2025-07-10 17:35:51.871 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [121ms] +2025-07-10 17:35:51.893 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [137ms] +2025-07-10 17:39:06.663 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [69ms] +2025-07-10 17:39:06.665 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [77ms] +2025-07-10 17:39:06.669 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 17:39:06.746 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [78ms] +2025-07-10 17:39:06.747 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [82ms] +2025-07-10 17:39:06.755 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [84ms] +2025-07-10 17:41:40.404 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [77ms] +2025-07-10 17:41:40.407 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [83ms] +2025-07-10 17:41:40.410 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [89ms] +2025-07-10 17:41:40.479 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [72ms] +2025-07-10 17:41:40.481 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [68ms] +2025-07-10 17:41:40.482 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [73ms] +2025-07-10 17:42:24.514 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [75ms] +2025-07-10 17:42:24.517 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [76ms] +2025-07-10 17:42:24.521 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [77ms] +2025-07-10 17:42:24.629 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [112ms] +2025-07-10 17:42:24.642 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [122ms] +2025-07-10 17:42:24.649 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [125ms] +2025-07-10 17:42:32.946 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [77ms] +2025-07-10 17:42:32.950 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [76ms] +2025-07-10 17:42:32.953 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [75ms] +2025-07-10 17:42:33.023 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [70ms] +2025-07-10 17:42:33.026 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [76ms] +2025-07-10 17:42:33.045 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [89ms] +2025-07-10 17:45:03.569 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 17:45:03.572 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [77ms] +2025-07-10 17:45:03.575 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [83ms] +2025-07-10 17:45:03.632 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 17:45:03.632 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-10 17:45:03.635 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [58ms] +2025-07-10 17:45:07.700 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [129ms] +2025-07-10 17:45:07.703 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [134ms] +2025-07-10 17:45:07.707 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [133ms] +2025-07-10 17:45:07.771 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [69ms] +2025-07-10 17:45:07.773 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [67ms] +2025-07-10 17:45:07.775 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [65ms] +2025-07-10 17:45:08.831 [info] > git -c user.useConfigOnly=true commit --quiet [64ms] +2025-07-10 17:45:08.831 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no name was given and auto-detection is disabled +2025-07-10 17:45:08.889 [info] > git config --get-all user.name [56ms] +2025-07-10 17:45:08.952 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-10 17:45:08.955 [info] > git config --get commit.template [60ms] +2025-07-10 17:45:09.019 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [65ms] +2025-07-10 17:45:09.023 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:45:09.110 [info] > git rev-parse refs/remotes/origin/master [87ms] +2025-07-10 17:45:09.223 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [108ms] +2025-07-10 17:45:09.228 [info] > git status -z -uall [116ms] +2025-07-10 17:45:43.080 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [66ms] +2025-07-10 17:45:43.083 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [73ms] +2025-07-10 17:45:43.086 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [69ms] +2025-07-10 17:45:43.146 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [63ms] +2025-07-10 17:45:43.149 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [64ms] +2025-07-10 17:45:43.149 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [61ms] +2025-07-10 17:46:08.496 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [70ms] +2025-07-10 17:46:08.499 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-10 17:46:08.502 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [68ms] +2025-07-10 17:46:08.558 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [59ms] +2025-07-10 17:46:08.559 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-10 17:46:08.561 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-10 17:46:12.891 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [70ms] +2025-07-10 17:46:12.895 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [71ms] +2025-07-10 17:46:12.898 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [67ms] +2025-07-10 17:46:12.964 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [70ms] +2025-07-10 17:46:12.969 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [71ms] +2025-07-10 17:46:12.972 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [71ms] +2025-07-10 17:46:32.738 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [85ms] +2025-07-10 17:46:32.743 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [84ms] +2025-07-10 17:46:32.746 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [83ms] +2025-07-10 17:46:32.815 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [74ms] +2025-07-10 17:46:32.820 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [74ms] +2025-07-10 17:46:32.820 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [71ms] +2025-07-10 17:47:57.261 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [142ms] +2025-07-10 17:47:57.283 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [154ms] +2025-07-10 17:47:57.287 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [154ms] +2025-07-10 17:47:57.340 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [76ms] +2025-07-10 17:47:57.371 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [73ms] +2025-07-10 17:47:57.371 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [85ms] +2025-07-10 17:48:18.014 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [66ms] +2025-07-10 17:48:18.016 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [66ms] +2025-07-10 17:48:18.019 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [66ms] +2025-07-10 17:48:18.076 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [60ms] +2025-07-10 17:48:18.077 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-10 17:48:18.083 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 17:48:39.231 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [145ms] +2025-07-10 17:48:39.236 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [146ms] +2025-07-10 17:48:39.258 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [162ms] +2025-07-10 17:48:39.335 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [99ms] +2025-07-10 17:48:39.337 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [76ms] +2025-07-10 17:48:39.345 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [106ms] +2025-07-10 17:49:03.605 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [82ms] +2025-07-10 17:49:03.610 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [79ms] +2025-07-10 17:49:03.614 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [86ms] +2025-07-10 17:49:03.728 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [120ms] +2025-07-10 17:49:03.730 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [113ms] +2025-07-10 17:49:03.733 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [120ms] +2025-07-10 17:49:15.427 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [81ms] +2025-07-10 17:49:15.430 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [77ms] +2025-07-10 17:49:15.436 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [86ms] +2025-07-10 17:49:15.496 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [66ms] +2025-07-10 17:49:15.498 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [65ms] +2025-07-10 17:49:15.502 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [62ms] +2025-07-10 17:49:17.404 [info] > git ls-files --stage -- blog/2019-05-29-long-blog-post.md [55ms] +2025-07-10 17:49:17.406 [info] > git show --textconv :blog/2019-05-29-long-blog-post.md [60ms] +2025-07-10 17:49:17.466 [info] > git cat-file -s 26ffb1b1f65347e4f834542113930327a6ea5e79 [60ms] +2025-07-10 17:49:27.884 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [66ms] +2025-07-10 17:49:27.887 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [64ms] +2025-07-10 17:49:27.890 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [70ms] +2025-07-10 17:49:27.949 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [62ms] +2025-07-10 17:49:27.952 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [63ms] +2025-07-10 17:49:27.955 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [63ms] +2025-07-10 17:49:34.739 [info] > git ls-files --stage -- docs/app/好生意App/订单管理.md [57ms] +2025-07-10 17:49:34.742 [info] > git show --textconv :docs/app/好生意App/订单管理.md [62ms] +2025-07-10 17:49:34.800 [info] > git cat-file -s b2f48809473df2783889829673adfb542c984439 [58ms] +2025-07-10 17:49:35.856 [info] > git ls-files --stage -- docs/app/好生意App/扫码核销.md [55ms] +2025-07-10 17:49:35.859 [info] > git show --textconv :docs/app/好生意App/扫码核销.md [61ms] +2025-07-10 17:49:35.918 [info] > git cat-file -s 9f9921c2c2f2cb8daffae7dba7fccc28ef65cfd5 [60ms] +2025-07-10 17:49:38.393 [info] > git show --textconv :docs/hxzx/登录后台.md [63ms] +2025-07-10 17:49:38.396 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [64ms] +2025-07-10 17:49:38.396 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:49:38.399 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [65ms] +2025-07-10 17:49:38.412 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [76ms] +2025-07-10 17:49:38.412 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:49:38.520 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [117ms] +2025-07-10 17:49:39.544 [info] > git show --textconv :docs/hxzx/安全管理.md [65ms] +2025-07-10 17:49:39.547 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [66ms] +2025-07-10 17:49:39.547 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:49:39.548 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [64ms] +2025-07-10 17:49:39.551 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [65ms] +2025-07-10 17:49:39.551 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:49:39.606 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [55ms] +2025-07-11 09:01:33.928 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [392ms] +2025-07-11 09:01:33.932 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [390ms] +2025-07-11 09:01:33.935 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [395ms] +2025-07-11 09:01:34.036 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [98ms] +2025-07-11 09:01:34.036 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [101ms] +2025-07-11 09:01:34.036 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [104ms] +2025-07-11 09:01:52.596 [info] > git show --textconv :docs/hxzx/商品管理.md [64ms] +2025-07-11 09:01:52.599 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [65ms] +2025-07-11 09:01:52.599 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:01:52.601 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [64ms] +2025-07-11 09:01:52.604 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [65ms] +2025-07-11 09:01:52.604 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:01:52.692 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [88ms] +2025-07-11 09:01:53.898 [info] > git show --textconv :docs/hxzx/营销管理.md [65ms] +2025-07-11 09:01:53.900 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [64ms] +2025-07-11 09:01:53.900 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:01:53.902 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [65ms] +2025-07-11 09:01:53.906 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [65ms] +2025-07-11 09:01:53.906 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:01:53.997 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [92ms] +2025-07-11 09:01:54.795 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [62ms] +2025-07-11 09:01:54.795 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:01:54.795 [info] > git show --textconv :docs/hxzx/自提管理.md [64ms] +2025-07-11 09:01:54.798 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [62ms] +2025-07-11 09:01:54.801 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [63ms] +2025-07-11 09:01:54.802 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:01:54.861 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [61ms] +2025-07-11 09:02:42.761 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [73ms] +2025-07-11 09:02:42.765 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [75ms] +2025-07-11 09:02:42.768 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [75ms] +2025-07-11 09:02:42.827 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [63ms] +2025-07-11 09:02:42.830 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [62ms] +2025-07-11 09:02:42.834 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [63ms] +2025-07-11 09:03:16.760 [info] > git ls-files --stage -- .vscode/launch.json [59ms] +2025-07-11 09:03:16.761 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.vscode/launch.json.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.vscode%5C%5Claunch.json%22%2C%22ref%22%3A%22%22%7D +2025-07-11 09:03:16.761 [info] > git show --textconv :.vscode/launch.json [63ms] +2025-07-11 09:03:16.761 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.vscode/launch.json.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.vscode%5C%5Claunch.json%22%2C%22ref%22%3A%22%22%7D +2025-07-11 09:03:16.968 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-11 09:03:17.553 [info] > git config --get commit.template [57ms] +2025-07-11 09:03:17.553 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-11 09:03:17.629 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [73ms] +2025-07-11 09:03:17.644 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 09:03:17.707 [info] > git rev-parse refs/remotes/origin/master [63ms] +2025-07-11 09:03:17.766 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [54ms] +2025-07-11 09:03:17.772 [info] > git status -z -uall [62ms] +2025-07-11 09:03:33.457 [info] > git show --textconv :docs/hxzx/订单管理.md [63ms] +2025-07-11 09:03:33.458 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [62ms] +2025-07-11 09:03:33.458 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:03:33.460 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [62ms] +2025-07-11 09:03:33.464 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [63ms] +2025-07-11 09:03:33.464 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:03:33.517 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [56ms] +2025-07-11 09:34:27.694 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [706ms] +2025-07-11 09:34:27.698 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [714ms] +2025-07-11 09:34:27.700 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [715ms] +2025-07-11 09:34:27.796 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [99ms] +2025-07-11 09:34:27.796 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [93ms] +2025-07-11 09:34:27.797 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [96ms] +2025-07-11 09:34:44.929 [info] > git show --textconv :docs/hxzx/自提管理.md [67ms] +2025-07-11 09:34:44.930 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [65ms] +2025-07-11 09:34:44.930 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:34:44.931 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [64ms] +2025-07-11 09:34:44.934 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [64ms] +2025-07-11 09:34:44.934 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:34:44.988 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [54ms] +2025-07-11 09:34:54.796 [info] > git show --textconv :docs/hxzx/自提管理 copy.md [61ms] +2025-07-11 09:34:54.796 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-11 09:34:54.797 [info] > git ls-files --stage -- docs/hxzx/自提管理 copy.md [61ms] +2025-07-11 09:34:54.797 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-11 09:34:55.150 [info] > git check-ignore -v -z --stdin [61ms] +2025-07-11 09:34:55.677 [info] > git config --get commit.template [59ms] +2025-07-11 09:34:55.677 [info] > git symbolic-ref --short HEAD [61ms] +2025-07-11 09:34:55.740 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-11 09:34:55.742 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 09:34:55.800 [info] > git rev-parse refs/remotes/origin/master [58ms] +2025-07-11 09:34:55.868 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [63ms] +2025-07-11 09:34:55.877 [info] > git status -z -uall [75ms] +2025-07-11 09:35:04.264 [info] > git show --textconv :docs/hxzx/积分管理.md [63ms] +2025-07-11 09:35:04.265 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-11 09:35:04.265 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [62ms] +2025-07-11 09:35:04.265 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-11 09:35:04.334 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/积分管理.md [63ms] +2025-07-11 09:35:04.334 [info] fatal: no such path docs/hxzx/积分管理.md in 84e81a2b2f02798acbb48e1045be9ddac82d8632 +2025-07-11 09:35:04.553 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-11 09:35:05.057 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-11 09:35:05.060 [info] > git config --get commit.template [60ms] +2025-07-11 09:35:05.118 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [58ms] +2025-07-11 09:35:05.121 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 09:35:05.177 [info] > git rev-parse refs/remotes/origin/master [57ms] +2025-07-11 09:35:05.237 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-11 09:35:05.242 [info] > git status -z -uall [63ms] +2025-07-11 09:35:06.609 [info] > git show --textconv :docs/hxzx/自提管理.md [61ms] +2025-07-11 09:35:06.612 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [63ms] +2025-07-11 09:35:06.612 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:35:06.615 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [64ms] +2025-07-11 09:35:06.618 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [64ms] +2025-07-11 09:35:06.618 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:35:06.674 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [57ms] +2025-07-11 09:35:17.766 [info] > git show --textconv :docs/hxzx/营销管理.md [66ms] +2025-07-11 09:35:17.767 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [64ms] +2025-07-11 09:35:17.767 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:35:17.771 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [66ms] +2025-07-11 09:35:17.773 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [67ms] +2025-07-11 09:35:17.773 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:35:17.831 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-11 09:35:58.830 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [82ms] +2025-07-11 09:35:58.833 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [81ms] +2025-07-11 09:35:58.835 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [91ms] +2025-07-11 09:35:58.891 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [56ms] +2025-07-11 09:35:58.891 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-11 09:35:58.893 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [56ms] +2025-07-11 09:36:53.834 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [75ms] +2025-07-11 09:36:53.837 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [69ms] +2025-07-11 09:36:53.839 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [74ms] +2025-07-11 09:36:53.896 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [59ms] +2025-07-11 09:36:53.897 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [58ms] +2025-07-11 09:36:53.899 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-11 09:38:40.130 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [102ms] +2025-07-11 09:38:40.162 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [138ms] +2025-07-11 09:38:40.165 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [134ms] +2025-07-11 09:38:40.222 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [82ms] +2025-07-11 09:38:40.234 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [70ms] +2025-07-11 09:38:40.237 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [70ms] +2025-07-11 09:39:31.213 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [77ms] +2025-07-11 09:39:31.215 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [75ms] +2025-07-11 09:39:31.217 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [73ms] +2025-07-11 09:39:31.272 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [57ms] +2025-07-11 09:39:31.273 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-11 09:39:31.276 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-11 09:40:19.385 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [70ms] +2025-07-11 09:40:19.388 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [76ms] +2025-07-11 09:40:19.390 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [70ms] +2025-07-11 09:40:19.447 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [57ms] +2025-07-11 09:40:19.447 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-11 09:40:19.449 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-11 09:40:45.442 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [69ms] +2025-07-11 09:40:45.447 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-11 09:40:45.449 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [66ms] +2025-07-11 09:40:45.504 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [60ms] +2025-07-11 09:40:45.508 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-11 09:40:45.510 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-11 09:40:52.802 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [68ms] +2025-07-11 09:40:52.808 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [66ms] +2025-07-11 09:40:52.811 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [72ms] +2025-07-11 09:40:52.868 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [63ms] +2025-07-11 09:40:52.871 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [61ms] +2025-07-11 09:40:52.872 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-11 09:41:05.530 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [70ms] +2025-07-11 09:41:05.534 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [70ms] +2025-07-11 09:41:05.537 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [67ms] +2025-07-11 09:41:05.590 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [58ms] +2025-07-11 09:41:05.593 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [54ms] +2025-07-11 09:41:05.594 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-11 09:41:19.476 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [71ms] +2025-07-11 09:41:19.479 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [71ms] +2025-07-11 09:41:19.481 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [68ms] +2025-07-11 09:41:19.540 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-11 09:41:19.541 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [62ms] +2025-07-11 09:41:19.542 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-11 09:41:39.329 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [74ms] +2025-07-11 09:41:39.331 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [80ms] +2025-07-11 09:41:39.333 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [74ms] +2025-07-11 09:41:39.390 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-11 09:41:39.391 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [57ms] +2025-07-11 09:41:39.391 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [56ms] +2025-07-11 09:41:45.295 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [68ms] +2025-07-11 09:41:45.300 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [65ms] +2025-07-11 09:41:45.302 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [72ms] +2025-07-11 09:41:45.360 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [62ms] +2025-07-11 09:41:45.361 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-11 09:41:45.363 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-11 09:42:18.791 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [79ms] +2025-07-11 09:42:18.794 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [77ms] +2025-07-11 09:42:18.797 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [76ms] +2025-07-11 09:42:18.852 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [58ms] +2025-07-11 09:42:18.853 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-11 09:42:18.856 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [58ms] +2025-07-11 09:43:15.655 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [78ms] +2025-07-11 09:43:15.658 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [77ms] +2025-07-11 09:43:15.660 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [76ms] +2025-07-11 09:43:15.715 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [58ms] +2025-07-11 09:43:15.720 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-11 09:43:15.721 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-11 09:43:24.643 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [78ms] +2025-07-11 09:43:24.646 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [77ms] +2025-07-11 09:43:24.648 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [76ms] +2025-07-11 09:43:24.705 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-11 09:43:24.705 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [60ms] +2025-07-11 09:43:24.706 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-11 09:43:56.775 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [67ms] +2025-07-11 09:43:56.777 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [63ms] +2025-07-11 09:43:56.779 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [68ms] +2025-07-11 09:43:56.838 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [61ms] +2025-07-11 09:43:56.838 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-11 09:43:56.838 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-11 09:45:01.368 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [113ms] +2025-07-11 09:45:01.398 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [140ms] +2025-07-11 09:45:01.401 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [140ms] +2025-07-11 09:45:01.432 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [62ms] +2025-07-11 09:45:01.460 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-11 09:45:01.460 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [56ms] +2025-07-11 09:46:14.934 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [74ms] +2025-07-11 09:46:14.937 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [69ms] +2025-07-11 09:46:14.939 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [76ms] +2025-07-11 09:46:14.996 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [60ms] +2025-07-11 09:46:15.001 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [61ms] +2025-07-11 09:46:15.002 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-11 09:46:18.650 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [65ms] +2025-07-11 09:46:18.655 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-11 09:46:18.657 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [67ms] +2025-07-11 09:46:18.711 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [58ms] +2025-07-11 09:46:18.719 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-11 09:46:18.720 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [62ms] +2025-07-11 09:46:31.820 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [63ms] +2025-07-11 09:46:31.825 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [66ms] +2025-07-11 09:46:31.827 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [67ms] +2025-07-11 09:46:31.885 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [63ms] +2025-07-11 09:46:31.890 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [63ms] +2025-07-11 09:46:31.892 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [63ms] +2025-07-11 09:46:33.447 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-11 09:46:34.018 [info] > git config --get commit.template [55ms] +2025-07-11 09:46:34.018 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-11 09:46:34.081 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [61ms] +2025-07-11 09:46:34.084 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 09:46:34.138 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-11 09:46:34.198 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-11 09:46:34.203 [info] > git status -z -uall [63ms] +2025-07-11 09:47:18.969 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [74ms] +2025-07-11 09:47:18.971 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [71ms] +2025-07-11 09:47:18.973 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [69ms] +2025-07-11 09:47:19.032 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [61ms] +2025-07-11 09:47:19.032 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-11 09:47:19.035 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-11 09:47:39.701 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [75ms] +2025-07-11 09:47:39.704 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [74ms] +2025-07-11 09:47:39.706 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [72ms] +2025-07-11 09:47:39.760 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [56ms] +2025-07-11 09:47:39.761 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-11 09:47:39.762 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [54ms] +2025-07-11 09:47:48.090 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [68ms] +2025-07-11 09:47:48.092 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [73ms] +2025-07-11 09:47:48.094 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [70ms] +2025-07-11 09:47:48.160 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [68ms] +2025-07-11 09:47:48.160 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [64ms] +2025-07-11 09:47:48.161 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [66ms] +2025-07-11 09:47:50.537 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [104ms] +2025-07-11 09:47:50.561 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [130ms] +2025-07-11 09:47:50.569 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [133ms] +2025-07-11 09:47:50.635 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [66ms] +2025-07-11 09:47:50.638 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [66ms] +2025-07-11 09:47:50.639 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [99ms] +2025-07-11 09:47:53.444 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [63ms] +2025-07-11 09:47:53.446 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [64ms] +2025-07-11 09:47:53.449 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [63ms] +2025-07-11 09:47:53.507 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [62ms] +2025-07-11 09:47:53.508 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-11 09:47:53.512 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-11 09:47:54.967 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-11 09:47:55.526 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-11 09:47:55.529 [info] > git config --get commit.template [58ms] +2025-07-11 09:47:55.583 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [54ms] +2025-07-11 09:47:55.585 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 09:47:55.637 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-11 09:47:55.697 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-11 09:47:55.702 [info] > git status -z -uall [62ms] +2025-07-11 09:48:45.297 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [72ms] +2025-07-11 09:48:45.300 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [79ms] +2025-07-11 09:48:45.302 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [72ms] +2025-07-11 09:48:45.357 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-11 09:48:45.357 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [54ms] +2025-07-11 09:48:45.360 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [55ms] +2025-07-11 09:48:51.140 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [144ms] +2025-07-11 09:48:51.143 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [152ms] +2025-07-11 09:48:51.145 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [146ms] +2025-07-11 09:48:51.207 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [65ms] +2025-07-11 09:48:51.209 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [63ms] +2025-07-11 09:48:51.211 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [62ms] +2025-07-11 09:48:52.649 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-11 09:48:53.195 [info] > git config --get commit.template [59ms] +2025-07-11 09:48:53.197 [info] > git symbolic-ref --short HEAD [63ms] +2025-07-11 09:48:53.257 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-11 09:48:53.259 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 09:48:53.317 [info] > git rev-parse refs/remotes/origin/master [57ms] +2025-07-11 09:48:53.382 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [61ms] +2025-07-11 09:48:53.386 [info] > git status -z -uall [67ms] +2025-07-11 09:49:13.008 [info] > git ls-files --stage -- docs/odoo/store.md [54ms] +2025-07-11 09:49:13.010 [info] > git show --textconv :docs/odoo/store.md [59ms] +2025-07-11 09:49:13.065 [info] > git cat-file -s fad7ce92561c4f7af1c12dd8c18fd931b22ed4de [54ms] +2025-07-11 09:49:22.798 [info] > git ls-files --stage -- docs/odoo/start.md [59ms] +2025-07-11 09:49:22.809 [info] > git show --textconv :docs/odoo/start.md [72ms] +2025-07-11 09:49:22.855 [info] > git cat-file -s f3c32b318d463b06c9f6f421ffbe48877e4e463b [56ms] +2025-07-11 09:49:25.894 [info] > git ls-files --stage -- docs/odoo/settlement.md [57ms] +2025-07-11 09:49:25.896 [info] > git show --textconv :docs/odoo/settlement.md [62ms] +2025-07-11 09:49:25.957 [info] > git cat-file -s 99cd10f94425b6d77c212b09c2e3c0e99a7b86d2 [62ms] +2025-07-11 09:49:31.795 [info] > git show --textconv :docs/odoo/search.md [55ms] +2025-07-11 09:49:31.796 [info] > git ls-files --stage -- docs/odoo/search.md [54ms] +2025-07-11 09:49:31.856 [info] > git cat-file -s eb95923774f1bb49ffe56a10ec759e7b580739fe [58ms] +2025-07-11 09:49:35.774 [info] > git ls-files --stage -- docs/odoo/sale_summary.md [57ms] +2025-07-11 09:49:35.776 [info] > git show --textconv :docs/odoo/sale_summary.md [62ms] +2025-07-11 09:49:35.838 [info] > git cat-file -s e166a913e51677c0e5b2bb4b3799f6f958bde012 [62ms] +2025-07-11 09:49:38.693 [info] > git ls-files --stage -- docs/odoo/purchase.md [56ms] +2025-07-11 09:49:38.695 [info] > git show --textconv :docs/odoo/purchase.md [60ms] +2025-07-11 09:49:38.750 [info] > git cat-file -s 98d38e731db8861dffb75074e6a55d2f74cdc292 [55ms] +2025-07-11 09:50:14.764 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [62ms] +2025-07-11 09:50:14.764 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:50:14.764 [info] > git show --textconv :docs/hxzx/登录后台.md [64ms] +2025-07-11 09:50:14.768 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [63ms] +2025-07-11 09:50:14.770 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [64ms] +2025-07-11 09:50:14.771 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:50:14.823 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [54ms] +2025-07-11 09:50:18.447 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [61ms] +2025-07-11 09:50:18.448 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:50:18.448 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [60ms] +2025-07-11 09:50:18.451 [info] > git show --textconv :docs/hxzx/订单管理.md [66ms] +2025-07-11 09:50:18.454 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [64ms] +2025-07-11 09:50:18.454 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:50:18.505 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [55ms] +2025-07-11 09:50:22.232 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [58ms] +2025-07-11 09:50:22.234 [info] > git show --textconv :docs/hxzx/分销体系.md [62ms] +2025-07-11 09:50:22.288 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [54ms] +2025-07-11 09:50:40.158 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [122ms] +2025-07-11 09:50:40.161 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [126ms] +2025-07-11 09:50:40.161 [info] > git show --textconv :docs/hxzx/商品管理.md [128ms] +2025-07-11 09:50:40.162 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:50:40.182 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [143ms] +2025-07-11 09:50:40.183 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:50:40.216 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [54ms] +2025-07-11 09:50:47.363 [info] > git show --textconv :docs/hxzx/营销管理.md [64ms] +2025-07-11 09:50:47.364 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [62ms] +2025-07-11 09:50:47.364 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:50:47.367 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-11 09:50:47.371 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [65ms] +2025-07-11 09:50:47.371 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:50:47.423 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [55ms] +2025-07-11 09:50:51.334 [info] > git show --textconv :docs/hxzx/账号权限管理.md [72ms] +2025-07-11 09:50:51.341 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [75ms] +2025-07-11 09:50:51.341 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:50:51.341 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [74ms] +2025-07-11 09:50:51.344 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [74ms] +2025-07-11 09:50:51.345 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:50:51.405 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [62ms] +2025-07-11 09:50:52.553 [info] > git show --textconv :docs/hxzx/自提管理.md [70ms] +2025-07-11 09:50:52.556 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [68ms] +2025-07-11 09:50:52.558 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [73ms] +2025-07-11 09:50:52.559 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:50:52.559 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [69ms] +2025-07-11 09:50:52.559 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:50:52.645 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [86ms] +2025-07-11 09:51:02.704 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [68ms] +2025-07-11 09:51:02.705 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:02.705 [info] > git show --textconv :docs/hxzx/自提管理.md [70ms] +2025-07-11 09:51:02.705 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [67ms] +2025-07-11 09:51:02.708 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [68ms] +2025-07-11 09:51:02.708 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:02.765 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [57ms] +2025-07-11 09:51:03.935 [info] > git show --textconv HEAD:docs/hxzx/终端管理.md [99ms] +2025-07-11 09:51:03.935 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:03.957 [info] > git show --textconv :docs/hxzx/终端管理.md [124ms] +2025-07-11 09:51:03.959 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [122ms] +2025-07-11 09:51:03.962 [info] > git ls-tree -l HEAD -- docs/hxzx/终端管理.md [123ms] +2025-07-11 09:51:03.963 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:04.024 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [62ms] +2025-07-11 09:51:05.691 [info] > git show --textconv :docs/hxzx/账号权限管理.md [62ms] +2025-07-11 09:51:05.698 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [67ms] +2025-07-11 09:51:05.699 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:05.701 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [67ms] +2025-07-11 09:51:05.703 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [67ms] +2025-07-11 09:51:05.704 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:05.757 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [53ms] +2025-07-11 09:51:06.271 [info] > git show --textconv :docs/hxzx/营销管理.md [65ms] +2025-07-11 09:51:06.271 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [63ms] +2025-07-11 09:51:06.272 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:06.273 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [63ms] +2025-07-11 09:51:06.275 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [61ms] +2025-07-11 09:51:06.275 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:06.332 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-11 09:51:06.929 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [60ms] +2025-07-11 09:51:06.932 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [64ms] +2025-07-11 09:51:06.932 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:06.932 [info] > git show --textconv :docs/hxzx/商品管理.md [67ms] +2025-07-11 09:51:06.933 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [61ms] +2025-07-11 09:51:06.933 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:06.988 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [57ms] +2025-07-11 09:51:08.034 [info] > git show --textconv :docs/hxzx/订单管理.md [67ms] +2025-07-11 09:51:08.036 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [65ms] +2025-07-11 09:51:08.039 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [69ms] +2025-07-11 09:51:08.039 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:08.039 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [66ms] +2025-07-11 09:51:08.039 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:08.095 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [56ms] +2025-07-11 09:51:08.625 [info] > git show --textconv :docs/hxzx/登录后台.md [64ms] +2025-07-11 09:51:08.626 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [61ms] +2025-07-11 09:51:08.626 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:08.626 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [60ms] +2025-07-11 09:51:08.633 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [64ms] +2025-07-11 09:51:08.633 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:08.685 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [55ms] +2025-07-11 09:51:10.115 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [61ms] +2025-07-11 09:51:10.115 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:10.115 [info] > git show --textconv :docs/hxzx/安全管理.md [65ms] +2025-07-11 09:51:10.118 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [63ms] +2025-07-11 09:51:10.121 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [63ms] +2025-07-11 09:51:10.121 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:10.173 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [53ms] +2025-07-11 09:51:12.372 [info] > git show --textconv :docs/hxzx/自提管理.md [72ms] +2025-07-11 09:51:12.374 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [68ms] +2025-07-11 09:51:12.377 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [73ms] +2025-07-11 09:51:12.377 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:12.378 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [69ms] +2025-07-11 09:51:12.378 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:12.432 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [55ms] +2025-07-11 09:51:52.439 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [66ms] +2025-07-11 09:51:52.442 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [65ms] +2025-07-11 09:51:52.444 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [65ms] +2025-07-11 09:51:52.502 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [60ms] +2025-07-11 09:51:52.504 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-11 09:51:52.505 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [58ms] +2025-07-11 09:51:52.763 [info] > git show --textconv HEAD:docs/hxzx/终端管理.md [62ms] +2025-07-11 09:51:52.763 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:52.764 [info] > git show --textconv :docs/hxzx/终端管理.md [66ms] +2025-07-11 09:51:52.765 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [62ms] +2025-07-11 09:51:52.771 [info] > git ls-tree -l HEAD -- docs/hxzx/终端管理.md [65ms] +2025-07-11 09:51:52.771 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:52.824 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [57ms] +2025-07-11 09:54:58.738 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [65ms] +2025-07-11 09:54:58.741 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [64ms] +2025-07-11 09:54:58.746 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [68ms] +2025-07-11 09:54:58.804 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [64ms] +2025-07-11 09:54:58.805 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [61ms] +2025-07-11 09:54:58.818 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [70ms] +2025-07-11 09:55:20.959 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [72ms] +2025-07-11 09:55:20.962 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [73ms] +2025-07-11 09:55:20.965 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [73ms] +2025-07-11 09:55:21.033 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [72ms] +2025-07-11 09:55:21.033 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [69ms] +2025-07-11 09:55:21.035 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [68ms] +2025-07-11 09:55:31.101 [info] > git show --textconv HEAD:docs/hxzx/常见问题解答.md [64ms] +2025-07-11 09:55:31.101 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:55:31.103 [info] > git show --textconv :docs/hxzx/常见问题解答.md [67ms] +2025-07-11 09:55:31.103 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [63ms] +2025-07-11 09:55:31.106 [info] > git ls-tree -l HEAD -- docs/hxzx/常见问题解答.md [64ms] +2025-07-11 09:55:31.106 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:55:31.165 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [60ms] +2025-07-11 09:55:31.854 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [65ms] +2025-07-11 09:55:31.855 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:55:31.855 [info] > git show --textconv :docs/hxzx/安全管理.md [68ms] +2025-07-11 09:55:31.856 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [63ms] +2025-07-11 09:55:31.860 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [66ms] +2025-07-11 09:55:31.861 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:55:31.917 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [59ms] +2025-07-11 09:55:32.584 [info] > git show --textconv HEAD:docs/hxzx/常见问题解答.md [63ms] +2025-07-11 09:55:32.584 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:55:32.584 [info] > git show --textconv :docs/hxzx/常见问题解答.md [66ms] +2025-07-11 09:55:32.585 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [61ms] +2025-07-11 09:55:32.588 [info] > git ls-tree -l HEAD -- docs/hxzx/常见问题解答.md [63ms] +2025-07-11 09:55:32.588 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:55:32.644 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [57ms] +2025-07-11 09:55:55.498 [info] > git show --textconv :docs/hxzx/登录后台.md [65ms] +2025-07-11 09:55:55.499 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [63ms] +2025-07-11 09:55:55.499 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:55:55.499 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [62ms] +2025-07-11 09:55:55.502 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [62ms] +2025-07-11 09:55:55.502 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:55:55.557 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [55ms] +2025-07-11 09:56:09.084 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [64ms] +2025-07-11 09:56:09.084 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:56:09.084 [info] > git show --textconv :docs/hxzx/订单管理.md [67ms] +2025-07-11 09:56:09.086 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [64ms] +2025-07-11 09:56:09.088 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [64ms] +2025-07-11 09:56:09.088 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:56:09.144 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [57ms] +2025-07-11 10:08:56.555 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [88ms] +2025-07-11 10:08:56.558 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [88ms] +2025-07-11 10:08:56.562 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [98ms] +2025-07-11 10:08:56.634 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [72ms] +2025-07-11 10:08:56.634 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [76ms] +2025-07-11 10:08:56.635 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [70ms] +2025-07-11 10:11:09.665 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [67ms] +2025-07-11 10:11:09.672 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [68ms] +2025-07-11 10:11:09.674 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [73ms] +2025-07-11 10:11:09.725 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [57ms] +2025-07-11 10:11:09.734 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-11 10:11:09.735 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [61ms] +2025-07-11 10:11:15.099 [info] > git -c user.useConfigOnly=true commit --quiet [65ms] +2025-07-11 10:11:15.100 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no name was given and auto-detection is disabled +2025-07-11 10:11:15.158 [info] > git config --get-all user.name [56ms] +2025-07-11 10:11:15.215 [info] > git config --get commit.template [53ms] +2025-07-11 10:11:15.215 [info] > git symbolic-ref --short HEAD [55ms] +2025-07-11 10:11:15.273 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-11 10:11:15.276 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 10:11:15.328 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-11 10:11:15.388 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-11 10:11:15.392 [info] > git status -z -uall [62ms] +2025-07-11 10:11:18.318 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [61ms] +2025-07-11 10:11:18.321 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [57ms] +2025-07-11 10:11:18.322 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-11 10:11:18.385 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [63ms] +2025-07-11 10:11:18.385 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [61ms] +2025-07-11 10:11:18.386 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [66ms] +2025-07-11 10:11:31.698 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [77ms] +2025-07-11 10:11:31.701 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [76ms] +2025-07-11 10:11:31.704 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [75ms] +2025-07-11 10:11:31.780 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [79ms] +2025-07-11 10:11:31.782 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [76ms] +2025-07-11 10:11:31.782 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [78ms] +2025-07-11 10:11:35.407 [info] > git show --textconv :docs/hxzx/自提管理.md [60ms] +2025-07-11 10:11:35.408 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [59ms] +2025-07-11 10:11:35.408 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:35.409 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [58ms] +2025-07-11 10:11:35.413 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [60ms] +2025-07-11 10:11:35.413 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:35.465 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [54ms] +2025-07-11 10:11:36.042 [info] > git show --textconv :docs/hxzx/终端管理.md [62ms] +2025-07-11 10:11:36.044 [info] > git show --textconv HEAD:docs/hxzx/终端管理.md [62ms] +2025-07-11 10:11:36.044 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:36.045 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [61ms] +2025-07-11 10:11:36.048 [info] > git ls-tree -l HEAD -- docs/hxzx/终端管理.md [62ms] +2025-07-11 10:11:36.049 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:36.101 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [54ms] +2025-07-11 10:11:36.512 [info] > git show --textconv :docs/hxzx/账号权限管理.md [66ms] +2025-07-11 10:11:36.513 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [65ms] +2025-07-11 10:11:36.513 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:36.514 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [64ms] +2025-07-11 10:11:36.516 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [63ms] +2025-07-11 10:11:36.516 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:36.568 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [52ms] +2025-07-11 10:11:36.925 [info] > git show --textconv :docs/hxzx/营销管理.md [61ms] +2025-07-11 10:11:36.930 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [64ms] +2025-07-11 10:11:36.930 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:36.930 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-11 10:11:36.932 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [62ms] +2025-07-11 10:11:36.933 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:37.026 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [94ms] +2025-07-11 10:11:37.383 [info] > git show --textconv :docs/hxzx/商品管理.md [69ms] +2025-07-11 10:11:37.383 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [67ms] +2025-07-11 10:11:37.383 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:37.387 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [68ms] +2025-07-11 10:11:37.389 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [67ms] +2025-07-11 10:11:37.389 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:37.469 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [80ms] +2025-07-11 10:11:38.004 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [54ms] +2025-07-11 10:11:38.006 [info] > git show --textconv :docs/hxzx/分销体系.md [59ms] +2025-07-11 10:11:38.061 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [55ms] +2025-07-11 10:11:38.410 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [61ms] +2025-07-11 10:11:38.410 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:38.410 [info] > git show --textconv :docs/hxzx/订单管理.md [63ms] +2025-07-11 10:11:38.411 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [61ms] +2025-07-11 10:11:38.413 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [60ms] +2025-07-11 10:11:38.414 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:38.469 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [56ms] +2025-07-11 10:11:38.757 [info] > git show --textconv :docs/hxzx/登录后台.md [60ms] +2025-07-11 10:11:38.759 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [60ms] +2025-07-11 10:11:38.760 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:38.760 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [58ms] +2025-07-11 10:11:38.764 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [60ms] +2025-07-11 10:11:38.764 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:38.817 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [55ms] +2025-07-11 10:11:39.097 [info] > git show --textconv HEAD:docs/hxzx/常见问题解答.md [62ms] +2025-07-11 10:11:39.098 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:39.098 [info] > git show --textconv :docs/hxzx/常见问题解答.md [65ms] +2025-07-11 10:11:39.099 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [62ms] +2025-07-11 10:11:39.102 [info] > git ls-tree -l HEAD -- docs/hxzx/常见问题解答.md [63ms] +2025-07-11 10:11:39.102 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:39.155 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [53ms] +2025-07-11 10:11:39.509 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [58ms] +2025-07-11 10:11:39.511 [info] > git show --textconv :docs/hxzx/安全管理.md [64ms] +2025-07-11 10:11:39.512 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [63ms] +2025-07-11 10:11:39.512 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:39.513 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [60ms] +2025-07-11 10:11:39.514 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:39.565 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [54ms] +2025-07-11 10:11:41.337 [info] > git show --textconv :docs/hxzx/登录后台.md [62ms] +2025-07-11 10:11:41.339 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [59ms] +2025-07-11 10:11:41.342 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [64ms] +2025-07-11 10:11:41.342 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:41.343 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [61ms] +2025-07-11 10:11:41.343 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:41.400 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [58ms] +2025-07-11 10:11:41.630 [info] > git show --textconv HEAD:docs/hxzx/常见问题解答.md [63ms] +2025-07-11 10:11:41.630 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:41.631 [info] > git show --textconv :docs/hxzx/常见问题解答.md [66ms] +2025-07-11 10:11:41.633 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [64ms] +2025-07-11 10:11:41.635 [info] > git ls-tree -l HEAD -- docs/hxzx/常见问题解答.md [64ms] +2025-07-11 10:11:41.636 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:41.691 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [56ms] +2025-07-11 10:14:23.908 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [86ms] +2025-07-11 10:14:23.927 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [102ms] +2025-07-11 10:14:23.936 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [108ms] +2025-07-11 10:14:24.045 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [110ms] +2025-07-11 10:14:24.047 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [108ms] +2025-07-11 10:14:24.060 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [133ms] +2025-07-11 10:14:43.340 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-11 10:14:43.342 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [72ms] +2025-07-11 10:14:43.345 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [68ms] +2025-07-11 10:14:43.478 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [136ms] +2025-07-11 10:14:43.479 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [132ms] +2025-07-11 10:14:43.479 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [135ms] +2025-07-11 10:16:10.179 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [90ms] +2025-07-11 10:16:10.189 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [93ms] +2025-07-11 10:16:10.194 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [92ms] +2025-07-11 10:16:10.254 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [72ms] +2025-07-11 10:16:10.260 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [66ms] +2025-07-11 10:16:10.262 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [63ms] +2025-07-11 10:17:18.275 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [76ms] +2025-07-11 10:17:18.277 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-11 10:17:18.279 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [75ms] +2025-07-11 10:17:18.337 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [59ms] +2025-07-11 10:17:18.338 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-11 10:17:18.340 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-11 10:17:39.369 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [72ms] +2025-07-11 10:17:39.372 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [72ms] +2025-07-11 10:17:39.374 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [69ms] +2025-07-11 10:17:39.434 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [62ms] +2025-07-11 10:17:39.435 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-11 10:17:39.437 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [61ms] +2025-07-11 10:17:46.009 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [70ms] +2025-07-11 10:17:46.018 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [74ms] +2025-07-11 10:17:46.020 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [72ms] +2025-07-11 10:17:46.070 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [59ms] +2025-07-11 10:17:46.077 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-11 10:17:46.078 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [55ms] +2025-07-11 10:18:10.829 [info] > git show --textconv :docs/hxzx/常见问题解答.md [72ms] +2025-07-11 10:18:10.830 [info] > git show --textconv HEAD:docs/hxzx/常见问题解答.md [70ms] +2025-07-11 10:18:10.830 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:18:10.831 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [69ms] +2025-07-11 10:18:10.837 [info] > git ls-tree -l HEAD -- docs/hxzx/常见问题解答.md [72ms] +2025-07-11 10:18:10.837 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:18:10.888 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [55ms] +2025-07-11 10:18:24.989 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [67ms] +2025-07-11 10:18:28.027 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [62ms] +2025-07-11 10:18:32.676 [info] > git add -A -- docs/hxzx/分销体系.md [59ms] +2025-07-11 10:18:32.735 [info] > git config --get commit.template [54ms] +2025-07-11 10:18:32.736 [info] > git symbolic-ref --short HEAD [58ms] +2025-07-11 10:18:32.791 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [53ms] +2025-07-11 10:18:32.793 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 10:18:32.849 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-11 10:18:32.907 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [53ms] +2025-07-11 10:18:32.911 [info] > git status -z -uall [59ms] +2025-07-11 10:18:33.070 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [61ms] +2025-07-11 10:18:33.071 [info] > git show --textconv HEAD:docs/hxzx/分销体系.md [65ms] +2025-07-11 10:18:33.943 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [73ms] +2025-07-11 10:18:33.949 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [75ms] +2025-07-11 10:18:33.953 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [77ms] +2025-07-11 10:18:33.958 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [79ms] +2025-07-11 10:18:33.960 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [79ms] +2025-07-11 10:18:33.964 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [78ms] +2025-07-11 10:18:33.967 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [78ms] +2025-07-11 10:18:34.017 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [72ms] +2025-07-11 10:18:34.021 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [69ms] +2025-07-11 10:18:34.027 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [72ms] +2025-07-11 10:18:34.035 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [74ms] +2025-07-11 10:18:34.039 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [76ms] +2025-07-11 10:18:34.039 [info] > git cat-file -s 7a1bef9301b353835b8505105469f6f9facc23d7 [73ms] +2025-07-11 10:18:34.046 [info] > git show --textconv HEAD:docs/hxzx/分销体系.md [75ms] +2025-07-11 10:18:34.092 [info] > git show --textconv :docs/hxzx/登录后台.md [72ms] +2025-07-11 10:18:34.095 [info] > git show --textconv :docs/hxzx/订单管理.md [71ms] +2025-07-11 10:18:34.098 [info] > git show --textconv :docs/hxzx/商品管理.md [68ms] +2025-07-11 10:18:34.106 [info] > git show --textconv :docs/hxzx/营销管理.md [67ms] +2025-07-11 10:18:34.108 [info] > git show --textconv :docs/hxzx/账号权限管理.md [66ms] +2025-07-11 10:18:34.111 [info] > git show --textconv :docs/hxzx/分销体系.md [65ms] +2025-07-11 10:18:34.945 [info] > git config --get commit.template [57ms] +2025-07-11 10:18:34.945 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-11 10:18:35.006 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-11 10:18:35.008 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 10:18:35.066 [info] > git rev-parse refs/remotes/origin/master [58ms] +2025-07-11 10:18:35.127 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-11 10:18:35.131 [info] > git status -z -uall [63ms] +2025-07-11 10:18:44.745 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [68ms] +2025-07-11 10:18:44.750 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [72ms] +2025-07-11 10:18:44.753 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [73ms] +2025-07-11 10:18:44.756 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [70ms] +2025-07-11 10:18:44.783 [info] > git add -A -- docs/hxzx/常见问题解答.md [66ms] +2025-07-11 10:18:44.812 [info] > git cat-file -s 7a1bef9301b353835b8505105469f6f9facc23d7 [65ms] +2025-07-11 10:18:44.818 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [64ms] +2025-07-11 10:18:44.820 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [65ms] +2025-07-11 10:18:44.822 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [65ms] +2025-07-11 10:18:44.845 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-11 10:18:44.847 [info] > git config --get commit.template [58ms] +2025-07-11 10:18:44.901 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [54ms] +2025-07-11 10:18:44.903 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 10:18:44.957 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-11 10:18:45.015 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [54ms] +2025-07-11 10:18:45.020 [info] > git status -z -uall [61ms] +2025-07-11 10:18:45.957 [info] > git show --textconv :.git/COMMIT_EDITMSG [62ms] +2025-07-11 10:18:45.957 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.git/COMMIT_EDITMSG.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.git%5C%5CCOMMIT_EDITMSG%22%2C%22ref%22%3A%22%22%7D +2025-07-11 10:18:45.957 [info] > git ls-files --stage -- .git/COMMIT_EDITMSG [60ms] +2025-07-11 10:18:45.958 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.git/COMMIT_EDITMSG.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.git%5C%5CCOMMIT_EDITMSG%22%2C%22ref%22%3A%22%22%7D +2025-07-11 10:18:46.309 [info] > git check-ignore -v -z --stdin [74ms] +2025-07-11 10:18:46.433 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [73ms] +2025-07-11 10:18:46.436 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [74ms] +2025-07-11 10:18:46.439 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [74ms] +2025-07-11 10:18:46.442 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [74ms] +2025-07-11 10:18:46.445 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [74ms] +2025-07-11 10:18:46.448 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [74ms] +2025-07-11 10:18:46.504 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [69ms] +2025-07-11 10:18:46.509 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [71ms] +2025-07-11 10:18:46.513 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [71ms] +2025-07-11 10:18:46.518 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [73ms] +2025-07-11 10:18:46.519 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [71ms] +2025-07-11 10:18:46.521 [info] > git cat-file -s 7a1bef9301b353835b8505105469f6f9facc23d7 [71ms] +2025-07-11 10:18:46.577 [info] > git show --textconv :docs/hxzx/登录后台.md [69ms] +2025-07-11 10:18:46.582 [info] > git show --textconv :docs/hxzx/订单管理.md [70ms] +2025-07-11 10:18:46.587 [info] > git show --textconv :docs/hxzx/商品管理.md [70ms] +2025-07-11 10:18:46.593 [info] > git show --textconv :docs/hxzx/营销管理.md [69ms] +2025-07-11 10:18:46.596 [info] > git show --textconv :docs/hxzx/账号权限管理.md [68ms] +2025-07-11 10:18:46.598 [info] > git show --textconv :docs/hxzx/分销体系.md [67ms] +2025-07-11 10:20:48.417 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- .git/COMMIT_EDITMSG [60ms] +2025-07-11 10:20:48.417 [info] fatal: no such path .git/COMMIT_EDITMSG in 84e81a2b2f02798acbb48e1045be9ddac82d8632 +2025-07-11 10:20:53.591 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [57ms] +2025-07-11 10:20:53.596 [info] > git -c user.useConfigOnly=true commit --quiet [128572ms] +2025-07-11 10:20:53.596 [info] Aborting commit due to empty commit message. +2025-07-11 10:20:53.657 [info] > git cat-file -s 7a1bef9301b353835b8505105469f6f9facc23d7 [64ms] +2025-07-11 10:20:53.663 [info] > git symbolic-ref --short HEAD [65ms] +2025-07-11 10:20:53.711 [info] > git config --get commit.template [111ms] +2025-07-11 10:20:53.807 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [140ms] +2025-07-11 10:20:53.810 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 10:20:53.850 [info] > git show --textconv HEAD:docs/hxzx/分销体系.md [67ms] +2025-07-11 10:20:53.852 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [65ms] +2025-07-11 10:20:53.869 [info] > git rev-parse refs/remotes/origin/master [60ms] +2025-07-11 10:20:53.957 [info] > git status -z -uall [86ms] +2025-07-11 10:20:53.958 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [85ms] +2025-07-11 10:21:09.981 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [60ms] +2025-07-11 10:21:09.984 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [67ms] +2025-07-11 10:21:09.986 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [63ms] +2025-07-11 10:21:10.044 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-11 10:21:10.046 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [58ms] +2025-07-11 10:21:10.046 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [60ms] +2025-07-11 10:21:22.194 [info] > git add -A -- docs/hxzx/积分管理.md [56ms] +2025-07-11 10:21:22.251 [info] > git config --get commit.template [53ms] +2025-07-11 10:21:22.253 [info] > git symbolic-ref --short HEAD [56ms] +2025-07-11 10:21:22.309 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-11 10:21:22.311 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 10:21:22.416 [info] > git rev-parse refs/remotes/origin/master [105ms] +2025-07-11 10:21:22.483 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [62ms] +2025-07-11 10:21:22.483 [info] > git status -z -uall [64ms] +2025-07-11 10:21:22.569 [info] > git show --textconv HEAD:docs/hxzx/积分管理.md [60ms] +2025-07-11 10:21:22.570 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:22.570 [info] > git show --textconv :docs/hxzx/积分管理.md [63ms] +2025-07-11 10:21:22.572 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [61ms] +2025-07-11 10:21:22.575 [info] > git ls-tree -l HEAD -- docs/hxzx/积分管理.md [61ms] +2025-07-11 10:21:22.575 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:22.627 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [53ms] +2025-07-11 10:21:23.452 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [70ms] +2025-07-11 10:21:23.454 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [70ms] +2025-07-11 10:21:23.457 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [70ms] +2025-07-11 10:21:23.460 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [70ms] +2025-07-11 10:21:23.462 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [69ms] +2025-07-11 10:21:23.466 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [70ms] +2025-07-11 10:21:23.523 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [66ms] +2025-07-11 10:21:23.524 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [69ms] +2025-07-11 10:21:23.529 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [69ms] +2025-07-11 10:21:23.533 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [71ms] +2025-07-11 10:21:23.534 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [69ms] +2025-07-11 10:21:23.537 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [69ms] +2025-07-11 10:21:23.595 [info] > git show --textconv :docs/hxzx/订单管理.md [68ms] +2025-07-11 10:21:23.598 [info] > git show --textconv :docs/hxzx/登录后台.md [68ms] +2025-07-11 10:21:23.600 [info] > git show --textconv :docs/hxzx/商品管理.md [67ms] +2025-07-11 10:21:23.606 [info] > git show --textconv :docs/hxzx/营销管理.md [69ms] +2025-07-11 10:21:23.607 [info] > git show --textconv :docs/hxzx/账号权限管理.md [67ms] +2025-07-11 10:21:23.609 [info] > git show --textconv :docs/hxzx/积分管理.md [67ms] +2025-07-11 10:21:24.456 [info] > git config --get commit.template [59ms] +2025-07-11 10:21:24.457 [info] > git symbolic-ref --short HEAD [62ms] +2025-07-11 10:21:24.517 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-11 10:21:24.520 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 10:21:24.577 [info] > git rev-parse refs/remotes/origin/master [57ms] +2025-07-11 10:21:24.646 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [64ms] +2025-07-11 10:21:24.650 [info] > git status -z -uall [71ms] +2025-07-11 10:21:33.158 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [62ms] +2025-07-11 10:21:33.159 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:33.159 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [60ms] +2025-07-11 10:21:33.161 [info] > git show --textconv :docs/hxzx/安全管理.md [67ms] +2025-07-11 10:21:33.162 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [60ms] +2025-07-11 10:21:33.162 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:33.217 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [56ms] +2025-07-11 10:21:34.034 [info] > git show --textconv HEAD:docs/hxzx/积分管理.md [62ms] +2025-07-11 10:21:34.034 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:34.034 [info] > git show --textconv :docs/hxzx/积分管理.md [64ms] +2025-07-11 10:21:34.038 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [64ms] +2025-07-11 10:21:34.040 [info] > git ls-tree -l HEAD -- docs/hxzx/积分管理.md [64ms] +2025-07-11 10:21:34.040 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:34.095 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [55ms] +2025-07-11 10:21:48.248 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [74ms] +2025-07-11 10:21:48.251 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [72ms] +2025-07-11 10:21:48.253 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [76ms] +2025-07-11 10:21:48.370 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [119ms] +2025-07-11 10:21:48.370 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [116ms] +2025-07-11 10:21:48.377 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [120ms] +2025-07-11 10:21:49.349 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-11 10:21:49.352 [info] > git config --get commit.template [58ms] +2025-07-11 10:21:49.408 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-11 10:21:49.410 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 10:21:49.465 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-11 10:21:49.526 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-11 10:21:49.530 [info] > git status -z -uall [63ms] +2025-07-11 10:21:50.233 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [62ms] +2025-07-11 10:21:50.233 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:50.234 [info] > git show --textconv :docs/hxzx/登录后台.md [64ms] +2025-07-11 10:21:50.234 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [62ms] +2025-07-11 10:21:50.237 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [62ms] +2025-07-11 10:21:50.238 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:50.291 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [55ms] +2025-07-11 10:21:52.831 [info] > git show --textconv :docs/hxzx/登录后台.md [64ms] +2025-07-11 10:21:52.835 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [64ms] +2025-07-11 10:21:52.837 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [69ms] +2025-07-11 10:21:52.837 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [65ms] +2025-07-11 10:21:52.838 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:52.838 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:52.893 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [56ms] +2025-07-11 10:21:53.565 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [64ms] +2025-07-11 10:21:53.565 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:53.567 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [64ms] +2025-07-11 10:21:53.569 [info] > git show --textconv :docs/hxzx/账号权限管理.md [70ms] +2025-07-11 10:21:53.570 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [64ms] +2025-07-11 10:21:53.570 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:53.627 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [58ms] +2025-07-11 10:21:54.984 [info] > git show --textconv :docs/hxzx/登录后台.md [63ms] +2025-07-11 10:21:54.985 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [62ms] +2025-07-11 10:21:54.985 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:54.991 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [66ms] +2025-07-11 10:21:54.993 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [67ms] +2025-07-11 10:21:54.994 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:55.051 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [59ms] +2025-07-11 10:21:57.884 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [55ms] +2025-07-11 10:21:57.887 [info] > git show --textconv :docs/hxzx/常见问题解答.md [61ms] +2025-07-11 10:21:57.941 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [54ms] +2025-07-11 10:21:59.069 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [56ms] +2025-07-11 10:21:59.128 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [56ms] +2025-07-11 10:21:59.648 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [92ms] +2025-07-11 10:21:59.728 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [76ms] +2025-07-11 10:22:00.835 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [60ms] +2025-07-11 10:22:00.838 [info] > git show --textconv :docs/hxzx/积分管理.md [64ms] +2025-07-11 10:22:00.891 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [53ms] +2025-07-11 10:22:01.341 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-11 10:22:01.600 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [60ms] +2025-07-11 10:22:01.660 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-11 10:22:01.965 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [63ms] +2025-07-11 10:22:01.968 [info] > git show --textconv :docs/hxzx/终端管理.md [67ms] +2025-07-11 10:22:02.024 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [56ms] +2025-07-11 10:22:02.348 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [60ms] +2025-07-11 10:22:02.351 [info] > git show --textconv :docs/hxzx/自提管理.md [65ms] +2025-07-11 10:22:02.403 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [52ms] +2025-07-11 10:22:03.056 [info] > git ls-files --stage -- docs/hxzx/image.png [66ms] +2025-07-11 10:22:03.059 [info] > git ls-files --stage -- docs/hxzx/image.png [67ms] +2025-07-11 10:22:03.123 [info] > git cat-file -s e9d3cb1f27a14434ee4eaa7eb2a7b08ac398eead [64ms] +2025-07-11 10:22:03.123 [info] > git cat-file -s e9d3cb1f27a14434ee4eaa7eb2a7b08ac398eead [63ms] +2025-07-11 10:22:03.216 [info] > git ls-files --stage -- docs/hxzx/image.png [54ms] +2025-07-11 10:22:03.219 [info] > git show --textconv :docs/hxzx/image.png [58ms] +2025-07-11 10:22:03.271 [info] > git cat-file -s e9d3cb1f27a14434ee4eaa7eb2a7b08ac398eead [52ms] +2025-07-11 10:22:03.541 [info] > git check-ignore -v -z --stdin [51ms] +2025-07-11 10:22:05.007 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [58ms] +2025-07-11 10:22:05.009 [info] > git show --textconv :docs/hxzx/自提管理.md [62ms] +2025-07-11 10:22:05.063 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [55ms] +2025-07-11 10:22:08.477 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [60ms] +2025-07-11 10:22:08.479 [info] > git show --textconv :docs/hxzx/积分管理.md [64ms] +2025-07-11 10:22:08.531 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [53ms] +2025-07-11 10:22:08.830 [info] > git show --textconv HEAD:docs/hxzx/积分管理.md [60ms] +2025-07-11 10:22:08.830 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:22:08.831 [info] > git ls-tree -l HEAD -- docs/hxzx/积分管理.md [59ms] +2025-07-11 10:22:08.831 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:22:26.872 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [66ms] +2025-07-11 10:22:26.875 [info] > git show --textconv :docs/hxzx/自提管理.md [71ms] +2025-07-11 10:22:26.942 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [67ms] +2025-07-11 10:22:27.745 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [57ms] +2025-07-11 10:22:27.747 [info] > git show --textconv :docs/hxzx/终端管理.md [62ms] +2025-07-11 10:22:27.800 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [53ms] +2025-07-11 10:22:29.440 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [60ms] +2025-07-11 10:22:29.498 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [55ms] +2025-07-11 10:22:30.319 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [61ms] +2025-07-11 10:22:30.321 [info] > git show --textconv :docs/hxzx/积分管理.md [66ms] +2025-07-11 10:22:30.374 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [53ms] +2025-07-11 10:22:31.185 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [58ms] +2025-07-11 10:22:31.317 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [129ms] +2025-07-11 10:22:32.288 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [58ms] +2025-07-11 10:22:32.346 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [56ms] +2025-07-11 10:22:32.946 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [59ms] +2025-07-11 10:22:32.948 [info] > git show --textconv :docs/hxzx/常见问题解答.md [64ms] +2025-07-11 10:22:33.000 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [53ms] +2025-07-11 10:22:33.491 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [60ms] +2025-07-11 10:22:33.494 [info] > git show --textconv :docs/hxzx/安全管理.md [65ms] +2025-07-11 10:22:33.549 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [56ms] +2025-07-11 10:22:45.389 [info] > git show --textconv :docs/hxzx/常见问题解答.md [299ms] +2025-07-11 10:22:45.390 [info] > git show --textconv :docs/hxzx/积分管理.md [293ms] +2025-07-11 10:22:45.390 [info] > git show --textconv HEAD:docs/hxzx/分销体系.md [297ms] +2025-07-11 10:22:45.399 [info] > git show --textconv :docs/hxzx/自提管理.md [297ms] +2025-07-11 10:22:45.400 [info] > git show --textconv :docs/hxzx/终端管理.md [300ms] +2025-07-11 10:22:45.400 [info] > git show --textconv :docs/hxzx/分销体系.md [305ms] +2025-07-11 10:22:45.400 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/图片7.png [246ms] +2025-07-11 10:22:45.411 [info] > git show --textconv :docs/hxzx/image/image.png [297ms] +2025-07-11 10:22:45.412 [info] > git show --textconv :docs/hxzx/image.png [304ms] +2025-07-11 10:22:45.424 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/图片4.png [283ms] +2025-07-11 10:22:45.425 [info] > git ls-files --stage -- docs/hxzx/image.png [114ms] +2025-07-11 10:22:45.428 [info] > git show --textconv :docs/hxzx/image/图片2.png [317ms] +2025-07-11 10:22:45.457 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [167ms] +2025-07-11 10:22:45.467 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/图片11.png [222ms] +2025-07-11 10:22:45.484 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/微信截图_20250710152635.png [225ms] +2025-07-11 10:22:45.486 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/微信截图_20250710152838.png [218ms] +2025-07-11 10:22:45.491 [info] > git show --textconv :docs/hxzx/image-1.png [385ms] +2025-07-11 10:22:45.495 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/微信截图_20250710153324.png [222ms] +2025-07-11 10:22:45.527 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/图片12.png [273ms] +2025-07-11 10:22:45.539 [info] > git show --textconv :docs/hxzx/image/分销体系/image.png [416ms] +2025-07-11 10:22:45.551 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/图片7.png [203ms] +2025-07-11 10:22:45.557 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/1111.png [430ms] +2025-07-11 10:22:45.558 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/图片8.png [355ms] +2025-07-11 10:22:45.572 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [175ms] +2025-07-11 10:22:45.594 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [297ms] +2025-07-11 10:22:45.599 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/image-shouhou.png [273ms] +2025-07-11 10:22:45.619 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/图片9.png [390ms] +2025-07-11 10:22:45.637 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/图片3.png [499ms] +2025-07-11 10:22:45.638 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/微信截图_20250710154636.png [357ms] +2025-07-11 10:22:45.644 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [343ms] +2025-07-11 10:22:45.714 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/图片10.png [482ms] +2025-07-11 10:22:45.714 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/图片3.png [378ms] +2025-07-11 10:22:45.718 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/图片11.png [354ms] +2025-07-11 10:22:45.720 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/微信截图_20250710152838.png [346ms] +2025-07-11 10:22:45.724 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [421ms] +2025-07-11 10:22:45.736 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/图片12.png [370ms] +2025-07-11 10:22:45.743 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/图片4.png [403ms] +2025-07-11 10:22:45.763 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/图片10.png [403ms] +2025-07-11 10:22:45.786 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/微信截图_20250710153324.png [407ms] +2025-07-11 10:22:45.812 [info] > git cat-file -s e9d3cb1f27a14434ee4eaa7eb2a7b08ac398eead [384ms] +2025-07-11 10:22:45.819 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/图片6.png [475ms] +2025-07-11 10:22:45.849 [info] > git ls-files --stage -- docs/hxzx/image-1.png [541ms] +2025-07-11 10:22:45.857 [info] > git cat-file -s 1a9171824a6f87d2bd3979260828cb14a7602b96 [304ms] +2025-07-11 10:22:45.859 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/微信截图_20250710153839.png [582ms] +2025-07-11 10:22:45.861 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [575ms] +2025-07-11 10:22:45.871 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [577ms] +2025-07-11 10:22:45.878 [info] > git ls-files --stage -- docs/hxzx/image/图片2.png [560ms] +2025-07-11 10:22:45.887 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [312ms] +2025-07-11 10:22:45.897 [info] > git show --textconv :docs/hxzx/安全管理.md [503ms] +2025-07-11 10:22:45.897 [info] > git show --textconv :docs/hxzx/image/分销体系/image-shouhou.png [780ms] +2025-07-11 10:22:45.900 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/图片6.png [749ms] +2025-07-11 10:22:45.907 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/微信截图_20250710153839.png [525ms] +2025-07-11 10:22:45.910 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [313ms] +2025-07-11 10:22:45.913 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/图片9.png [557ms] +2025-07-11 10:22:45.941 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/图片8.png [589ms] +2025-07-11 10:22:45.943 [info] > git cat-file -s b34631d1211f11251032cfc7f6cf879977992095 [198ms] +2025-07-11 10:22:45.944 [info] > git cat-file -s c15620654f1234948df876d54baf9a546abd33a2 [223ms] +2025-07-11 10:22:45.944 [info] > git cat-file -s 356c8b4ef05a017373ad1b55bf0e04cadce9657a [155ms] +2025-07-11 10:22:45.945 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/微信截图_20250710154636.png [557ms] +2025-07-11 10:22:45.951 [info] > git cat-file -s 6dfb5513bd110e562b0efdc94beb54652633947d [349ms] +2025-07-11 10:22:45.982 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/1111.png [649ms] +2025-07-11 10:22:45.991 [info] > git cat-file -s b220a8f91502d7709fbcd7c07a25f80e16edbb0b [110ms] +2025-07-11 10:22:45.994 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/微信截图_20250710152635.png [623ms] +2025-07-11 10:22:46.015 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [288ms] +2025-07-11 10:22:46.035 [info] > git cat-file -s 2cdbef25fc7de0a1dff46a1b142e744c1ac30d3f [270ms] +2025-07-11 10:22:46.042 [info] > git cat-file -s 0f426077c66457fc9400eadbcf19d583f31b9ba7 [325ms] +2025-07-11 10:22:46.097 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/image.png [769ms] +2025-07-11 10:22:46.101 [info] > git cat-file -s 1f50e2bc2b60c286479187d5218082b42c7ca985 [192ms] +2025-07-11 10:22:46.102 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [237ms] +2025-07-11 10:22:46.102 [info] > git cat-file -s 7a1bef9301b353835b8505105469f6f9facc23d7 [228ms] +2025-07-11 10:22:46.102 [info] > git ls-files --stage -- docs/hxzx/image/image.png [781ms] +2025-07-11 10:22:46.172 [info] > git cat-file -s 7d41d5317b5cc9e1fcad9afebd80c1391d107623 [320ms] +2025-07-11 10:22:46.189 [info] > git cat-file -s 754f5d78857d916bec3a2ff9850bc91b934374ab [368ms] +2025-07-11 10:22:46.192 [info] > git cat-file -s ef35abbe886abef0b887e8a4b7688750e3c73ba7 [243ms] +2025-07-11 10:22:46.205 [info] > git cat-file -s 1690a9d91311030789b7ee45b86e253c2bdbc481 [482ms] +2025-07-11 10:22:46.205 [info] > git cat-file -s c651ad130866a8299410de55a43747801095cc9a [289ms] +2025-07-11 10:22:46.209 [info] > git cat-file -s d6ec4237e4c460083ec777a87a09c8cf47a087d9 [265ms] +2025-07-11 10:22:46.271 [info] > git cat-file -s 44d7d3ed027cc80b72b4e95ce1ee41f03c342569 [533ms] +2025-07-11 10:22:46.275 [info] > git cat-file -s b34631d1211f11251032cfc7f6cf879977992095 [290ms] +2025-07-11 10:22:46.275 [info] > git cat-file -s 3594f25a0442022050a62407eb6756d930ccef9e [277ms] +2025-07-11 10:22:46.275 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [629ms] +2025-07-11 10:22:46.285 [info] > git cat-file -s 8abd4d47886909c910da539811113ead24d2d4e2 [183ms] +2025-07-11 10:22:46.294 [info] > git cat-file -s 7d41d5317b5cc9e1fcad9afebd80c1391d107623 [188ms] +2025-07-11 10:23:12.997 [info] > git show --textconv :docs/hxzx/常见问题解答.md [62ms] +2025-07-11 10:23:12.999 [info] > git show --textconv HEAD:docs/hxzx/常见问题解答.md [61ms] +2025-07-11 10:23:12.999 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:23:13.000 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [61ms] +2025-07-11 10:23:13.003 [info] > git ls-tree -l HEAD -- docs/hxzx/常见问题解答.md [62ms] +2025-07-11 10:23:13.003 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:23:13.056 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [53ms] +2025-07-11 10:23:26.282 [info] > git show --textconv :docs/hxzx/自提管理.md [65ms] +2025-07-11 10:23:26.283 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [62ms] +2025-07-11 10:23:26.283 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:23:26.284 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [61ms] +2025-07-11 10:23:26.288 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [63ms] +2025-07-11 10:23:26.288 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:23:26.340 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [54ms] +2025-07-11 10:23:27.182 [info] > git show --textconv :docs/hxzx/终端管理.md [64ms] +2025-07-11 10:23:27.183 [info] > git show --textconv HEAD:docs/hxzx/终端管理.md [63ms] +2025-07-11 10:23:27.183 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:23:27.184 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [62ms] +2025-07-11 10:23:27.187 [info] > git ls-tree -l HEAD -- docs/hxzx/终端管理.md [62ms] +2025-07-11 10:23:27.188 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:23:27.241 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [54ms] +2025-07-11 10:23:28.859 [info] > git show --textconv :docs/hxzx/分销体系.md [65ms] +2025-07-11 10:23:28.863 [info] > git show --textconv HEAD:docs/hxzx/分销体系.md [66ms] +2025-07-11 10:23:28.864 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [65ms] +2025-07-11 10:23:28.867 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [66ms] +2025-07-11 10:23:28.932 [info] > git cat-file -s 7a1bef9301b353835b8505105469f6f9facc23d7 [65ms] +2025-07-11 10:23:29.688 [info] > git show --textconv HEAD:docs/hxzx/积分管理.md [62ms] +2025-07-11 10:23:29.688 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:23:29.689 [info] > git show --textconv :docs/hxzx/积分管理.md [64ms] +2025-07-11 10:23:29.690 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [61ms] +2025-07-11 10:23:29.692 [info] > git ls-tree -l HEAD -- docs/hxzx/积分管理.md [61ms] +2025-07-11 10:23:29.692 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:23:29.748 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [57ms] +2025-07-11 10:23:30.515 [info] > git show --textconv :docs/hxzx/分销体系.md [65ms] +2025-07-11 10:23:30.517 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [63ms] +2025-07-11 10:23:30.519 [info] > git show --textconv HEAD:docs/hxzx/分销体系.md [67ms] +2025-07-11 10:23:30.520 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [64ms] +2025-07-11 10:23:30.575 [info] > git cat-file -s 7a1bef9301b353835b8505105469f6f9facc23d7 [56ms] +2025-07-11 10:23:31.898 [info] > git show --textconv HEAD:docs/hxzx/积分管理.md [62ms] +2025-07-11 10:23:31.899 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:23:31.899 [info] > git show --textconv :docs/hxzx/积分管理.md [64ms] +2025-07-11 10:23:31.900 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [61ms] +2025-07-11 10:23:31.903 [info] > git ls-tree -l HEAD -- docs/hxzx/积分管理.md [62ms] +2025-07-11 10:23:31.903 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:23:31.955 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [53ms] +2025-07-11 10:23:53.027 [info] > git show --textconv :.git/COMMIT_EDITMSG [58ms] +2025-07-11 10:23:53.027 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.git/COMMIT_EDITMSG.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.git%5C%5CCOMMIT_EDITMSG%22%2C%22ref%22%3A%22%22%7D +2025-07-11 10:23:53.029 [info] > git ls-files --stage -- .git/COMMIT_EDITMSG [59ms] +2025-07-11 10:23:53.030 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.git/COMMIT_EDITMSG.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.git%5C%5CCOMMIT_EDITMSG%22%2C%22ref%22%3A%22%22%7D +2025-07-11 10:23:53.801 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [78ms] +2025-07-11 10:23:53.811 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [86ms] +2025-07-11 10:23:53.820 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [93ms] +2025-07-11 10:23:53.822 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [93ms] +2025-07-11 10:23:53.829 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [97ms] +2025-07-11 10:23:53.838 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [103ms] +2025-07-11 10:23:53.848 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [111ms] +2025-07-11 10:23:53.853 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [108ms] +2025-07-11 10:23:53.856 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [114ms] +2025-07-11 10:23:53.860 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [111ms] +2025-07-11 10:23:53.870 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [118ms] +2025-07-11 10:23:53.897 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [142ms] +2025-07-11 10:23:53.914 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [110ms] +2025-07-11 10:23:53.926 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [112ms] +2025-07-11 10:23:53.927 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [105ms] +2025-07-11 10:23:53.941 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [116ms] +2025-07-11 10:23:53.941 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [109ms] +2025-07-11 10:23:53.949 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [108ms] +2025-07-11 10:23:53.989 [info] > git cat-file -s 7a1bef9301b353835b8505105469f6f9facc23d7 [134ms] +2025-07-11 10:23:53.993 [info] > git show --textconv HEAD:docs/hxzx/分销体系.md [134ms] +2025-07-11 10:23:53.993 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [143ms] +2025-07-11 10:23:53.998 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [136ms] +2025-07-11 10:23:54.002 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [130ms] +2025-07-11 10:23:54.007 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [107ms] +2025-07-11 10:23:54.033 [info] > git show --textconv :docs/hxzx/登录后台.md [115ms] +2025-07-11 10:23:54.037 [info] > git show --textconv :docs/hxzx/订单管理.md [107ms] +2025-07-11 10:23:54.037 [info] > git show --textconv :docs/hxzx/商品管理.md [103ms] +2025-07-11 10:23:54.065 [info] > git show --textconv :docs/hxzx/账号权限管理.md [117ms] +2025-07-11 10:23:54.073 [info] > git show --textconv :docs/hxzx/安全管理.md [121ms] +2025-07-11 10:23:54.078 [info] > git show --textconv :docs/hxzx/营销管理.md [133ms] +2025-07-11 10:23:54.086 [info] > git show --textconv :docs/hxzx/分销体系.md [94ms] +2025-07-11 10:23:54.088 [info] > git show --textconv :docs/hxzx/积分管理.md [86ms] +2025-07-11 10:23:54.093 [info] > git show --textconv :docs/hxzx/常见问题解答.md [95ms] +2025-07-11 10:23:54.093 [info] > git show --textconv :docs/hxzx/终端管理.md [87ms] +2025-07-11 10:23:54.096 [info] > git show --textconv :docs/hxzx/自提管理.md [85ms] +2025-07-11 10:25:47.656 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [63ms] +2025-07-11 10:25:47.658 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [63ms] +2025-07-11 10:25:47.662 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [64ms] +2025-07-11 10:25:47.665 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [64ms] +2025-07-11 10:25:47.717 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [59ms] +2025-07-11 10:25:47.720 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [59ms] +2025-07-11 10:25:47.723 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [59ms] +2025-07-11 10:25:47.724 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [57ms] +2025-07-11 10:26:03.639 [info] > git show --textconv :docs/zsw/banner_settings.md [70ms] +2025-07-11 10:26:03.641 [info] > git ls-files --stage -- docs/zsw/banner_settings.md [69ms] +2025-07-11 10:26:03.696 [info] > git cat-file -s 30465414027bcd579637afc65c56b2778b795381 [53ms] +2025-07-11 10:26:09.022 [info] > git ls-files --stage -- docs/zsw/drive.md [55ms] +2025-07-11 10:26:09.024 [info] > git show --textconv :docs/zsw/drive.md [58ms] +2025-07-11 10:26:09.081 [info] > git cat-file -s 320e95883ed6bb069371ed42ff32dadbc11e17ac [57ms] +2025-07-11 10:26:12.014 [info] > git ls-files --stage -- docs/zsw/intro.md [57ms] +2025-07-11 10:26:12.017 [info] > git show --textconv :docs/zsw/intro.md [62ms] +2025-07-11 10:26:12.070 [info] > git cat-file -s 44a3ea753cf3f57b1c1c19672bdf8f779f6c39a6 [54ms] +2025-07-11 10:26:14.559 [info] > git ls-files --stage -- docs/zsw/member.md [59ms] +2025-07-11 10:26:14.563 [info] > git show --textconv :docs/zsw/member.md [65ms] +2025-07-11 10:26:14.619 [info] > git cat-file -s 4f17831fa71bb19b61d68eba3de51f8c0f674585 [57ms] +2025-07-11 10:26:28.812 [info] > git show --textconv :docs/hxzx/安全管理.md [64ms] +2025-07-11 10:26:28.813 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [63ms] +2025-07-11 10:26:28.813 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:26:28.814 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [62ms] +2025-07-11 10:26:28.817 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [63ms] +2025-07-11 10:26:28.817 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:26:28.871 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [55ms] +2025-07-11 10:26:46.992 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [70ms] +2025-07-11 10:26:46.996 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [72ms] +2025-07-11 10:26:47.000 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [72ms] +2025-07-11 10:26:47.003 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [72ms] +2025-07-11 10:26:47.065 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [69ms] +2025-07-11 10:26:47.069 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [71ms] +2025-07-11 10:26:47.076 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [70ms] +2025-07-11 10:26:47.076 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [73ms] +2025-07-11 10:26:47.224 [info] > git show --textconv :.vscode/launch.json [60ms] +2025-07-11 10:26:47.224 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.vscode/launch.json.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.vscode%5C%5Claunch.json%22%2C%22ref%22%3A%22%22%7D +2025-07-11 10:26:47.224 [info] > git ls-files --stage -- .vscode/launch.json [58ms] +2025-07-11 10:26:47.224 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.vscode/launch.json.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.vscode%5C%5Claunch.json%22%2C%22ref%22%3A%22%22%7D +2025-07-11 10:26:47.282 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- .vscode/launch.json [54ms] +2025-07-11 10:26:47.282 [info] fatal: no such path .vscode/launch.json in 84e81a2b2f02798acbb48e1045be9ddac82d8632 +2025-07-11 10:27:21.104 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [64ms] +2025-07-11 10:27:21.110 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [68ms] +2025-07-11 10:27:21.115 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [66ms] +2025-07-11 10:27:21.118 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [72ms] +2025-07-11 10:27:21.167 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [60ms] +2025-07-11 10:27:21.174 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [61ms] +2025-07-11 10:27:21.180 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [63ms] +2025-07-11 10:27:21.182 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [62ms] +2025-07-11 10:27:42.302 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [69ms] +2025-07-11 10:27:42.306 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [68ms] +2025-07-11 10:27:42.309 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [73ms] +2025-07-11 10:27:42.313 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [72ms] +2025-07-11 10:27:42.367 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [63ms] +2025-07-11 10:27:42.370 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [61ms] +2025-07-11 10:27:42.374 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [62ms] +2025-07-11 10:27:42.376 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [61ms] +2025-07-11 10:28:08.515 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [74ms] +2025-07-11 10:28:08.520 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [71ms] +2025-07-11 10:28:08.523 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [79ms] +2025-07-11 10:28:08.527 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [75ms] +2025-07-11 10:28:08.580 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [63ms] +2025-07-11 10:28:08.588 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [65ms] +2025-07-11 10:28:08.592 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [66ms] +2025-07-11 10:28:08.592 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [63ms] +2025-07-11 10:31:21.347 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [70ms] +2025-07-11 10:31:21.350 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [70ms] +2025-07-11 10:31:21.356 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [74ms] +2025-07-11 10:31:21.358 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [74ms] +2025-07-11 10:31:21.414 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [64ms] +2025-07-11 10:31:21.414 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [61ms] +2025-07-11 10:31:21.417 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [59ms] +2025-07-11 10:31:21.419 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [58ms] +2025-07-11 10:31:48.024 [info] > git check-ignore -v -z --stdin [52ms] +2025-07-11 10:32:54.673 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [76ms] +2025-07-11 10:32:54.679 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [79ms] +2025-07-11 10:32:54.682 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [80ms] +2025-07-11 10:32:54.685 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [80ms] +2025-07-11 10:32:54.730 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [56ms] +2025-07-11 10:32:54.739 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [59ms] +2025-07-11 10:32:54.741 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [57ms] +2025-07-11 10:32:54.742 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [55ms] +2025-07-11 10:33:43.044 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [79ms] +2025-07-11 10:33:43.047 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [74ms] +2025-07-11 10:33:43.050 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [97ms] +2025-07-11 10:33:43.054 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [98ms] +2025-07-11 10:33:43.115 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [68ms] +2025-07-11 10:33:43.116 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [67ms] +2025-07-11 10:33:43.119 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [65ms] +2025-07-11 10:33:43.122 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [65ms] +2025-07-11 10:34:12.556 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [69ms] +2025-07-11 10:34:12.559 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [70ms] +2025-07-11 10:34:12.561 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [65ms] +2025-07-11 10:34:12.563 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [72ms] +2025-07-11 10:34:12.618 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [59ms] +2025-07-11 10:34:12.619 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [58ms] +2025-07-11 10:34:12.622 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [58ms] +2025-07-11 10:34:12.623 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [58ms] +2025-07-11 10:36:10.020 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [72ms] +2025-07-11 10:36:10.023 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [79ms] +2025-07-11 10:36:10.025 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [70ms] +2025-07-11 10:36:10.026 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [75ms] +2025-07-11 10:36:10.086 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [61ms] +2025-07-11 10:36:10.086 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [63ms] +2025-07-11 10:36:10.088 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [62ms] +2025-07-11 10:36:10.089 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [61ms] +2025-07-11 10:37:19.782 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [71ms] +2025-07-11 10:37:19.784 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [87ms] +2025-07-11 10:37:19.786 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [84ms] +2025-07-11 10:37:19.788 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [71ms] +2025-07-11 10:37:19.842 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [58ms] +2025-07-11 10:37:19.843 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [57ms] +2025-07-11 10:37:19.845 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [57ms] +2025-07-11 10:37:19.847 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [56ms] +2025-07-11 10:38:01.122 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [77ms] +2025-07-11 10:38:01.124 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [71ms] +2025-07-11 10:38:01.126 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [77ms] +2025-07-11 10:38:01.128 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [69ms] +2025-07-11 10:38:01.186 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [62ms] +2025-07-11 10:38:01.187 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [61ms] +2025-07-11 10:38:01.190 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [63ms] +2025-07-11 10:38:01.190 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [60ms] +2025-07-11 10:38:04.508 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [78ms] +2025-07-11 10:38:04.511 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [67ms] +2025-07-11 10:38:04.513 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [75ms] +2025-07-11 10:38:04.515 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [81ms] +2025-07-11 10:38:04.573 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [63ms] +2025-07-11 10:38:04.581 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [68ms] +2025-07-11 10:38:04.586 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [71ms] +2025-07-11 10:38:04.587 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [70ms] +2025-07-11 10:38:25.018 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [66ms] +2025-07-11 10:38:25.022 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [68ms] +2025-07-11 10:38:25.025 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [68ms] +2025-07-11 10:38:25.027 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [68ms] +2025-07-11 10:38:25.082 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [62ms] +2025-07-11 10:38:25.086 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [62ms] +2025-07-11 10:38:25.090 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [63ms] +2025-07-11 10:38:25.091 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [61ms] +2025-07-11 10:38:43.337 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [110ms] +2025-07-11 10:38:43.346 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [110ms] +2025-07-11 10:38:43.352 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [120ms] +2025-07-11 10:38:43.356 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [112ms] +2025-07-11 10:38:43.419 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [78ms] +2025-07-11 10:38:43.427 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [78ms] +2025-07-11 10:38:43.431 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [76ms] +2025-07-11 10:38:43.435 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [77ms] +2025-07-11 10:39:12.857 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [79ms] +2025-07-11 10:39:12.860 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [74ms] +2025-07-11 10:39:12.862 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [79ms] +2025-07-11 10:39:12.864 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [75ms] +2025-07-11 10:39:12.923 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [64ms] +2025-07-11 10:39:12.925 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [63ms] +2025-07-11 10:39:12.927 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [63ms] +2025-07-11 10:39:12.930 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [64ms] +2025-07-11 10:43:46.581 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [76ms] +2025-07-11 10:43:46.585 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [82ms] +2025-07-11 10:43:46.588 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [75ms] +2025-07-11 10:43:46.590 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [81ms] +2025-07-11 10:43:46.652 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [68ms] +2025-07-11 10:43:46.655 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [67ms] +2025-07-11 10:43:46.658 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [69ms] +2025-07-11 10:43:46.660 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [68ms] +2025-07-11 10:43:51.151 [info] > git ls-files --stage -- .git/COMMIT_EDITMSG [58ms] +2025-07-11 10:43:51.151 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.git/COMMIT_EDITMSG.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.git%5C%5CCOMMIT_EDITMSG%22%2C%22ref%22%3A%22%22%7D +2025-07-11 10:43:51.151 [info] > git show --textconv :.git/COMMIT_EDITMSG [62ms] +2025-07-11 10:43:51.151 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.git/COMMIT_EDITMSG.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.git%5C%5CCOMMIT_EDITMSG%22%2C%22ref%22%3A%22%22%7D +2025-07-11 10:45:16.095 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [60ms] +2025-07-11 10:45:16.098 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [61ms] +2025-07-11 10:45:16.102 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [63ms] +2025-07-11 10:45:16.104 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [64ms] +2025-07-11 10:45:16.159 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [62ms] +2025-07-11 10:45:16.164 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [63ms] +2025-07-11 10:45:16.167 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [63ms] +2025-07-11 10:45:16.168 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [61ms] +2025-07-11 10:47:08.046 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [278ms] +2025-07-11 10:47:08.049 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [289ms] +2025-07-11 10:47:08.051 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [279ms] +2025-07-11 10:47:08.054 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [298ms] +2025-07-11 10:47:08.127 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [78ms] +2025-07-11 10:47:08.136 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [84ms] +2025-07-11 10:47:08.139 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [85ms] +2025-07-11 10:47:08.145 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [88ms] +2025-07-11 10:47:22.164 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [65ms] +2025-07-11 10:47:22.167 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [63ms] +2025-07-11 10:47:22.169 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [67ms] +2025-07-11 10:47:22.172 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [64ms] +2025-07-11 10:47:22.229 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [61ms] +2025-07-11 10:47:22.230 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [64ms] +2025-07-11 10:47:22.232 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [60ms] +2025-07-11 10:47:22.233 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [58ms] +2025-07-11 10:48:06.494 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [63ms] +2025-07-11 10:48:06.497 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [64ms] +2025-07-11 10:48:06.500 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [64ms] +2025-07-11 10:48:06.503 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [62ms] +2025-07-11 10:48:06.556 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [60ms] +2025-07-11 10:48:06.560 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [60ms] +2025-07-11 10:48:06.564 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [61ms] +2025-07-11 10:48:06.565 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [60ms] +2025-07-11 10:49:13.083 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [82ms] +2025-07-11 10:49:13.086 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [88ms] +2025-07-11 10:49:13.090 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [87ms] +2025-07-11 10:49:13.094 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [86ms] +2025-07-11 10:49:13.146 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [60ms] +2025-07-11 10:49:13.147 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [59ms] +2025-07-11 10:49:13.150 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [58ms] +2025-07-11 10:49:13.153 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [57ms] +2025-07-11 10:49:15.944 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [71ms] +2025-07-11 10:49:15.946 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [77ms] +2025-07-11 10:49:15.949 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [73ms] +2025-07-11 10:49:15.952 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [73ms] +2025-07-11 10:49:16.327 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [371ms] +2025-07-11 10:49:16.328 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [376ms] +2025-07-11 10:49:16.328 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [379ms] +2025-07-11 10:49:16.328 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [382ms] +2025-07-11 10:49:51.146 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [72ms] +2025-07-11 10:49:51.150 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [73ms] +2025-07-11 10:49:51.154 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [73ms] +2025-07-11 10:49:51.158 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [73ms] +2025-07-11 10:49:51.222 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [74ms] +2025-07-11 10:49:51.223 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [70ms] +2025-07-11 10:49:51.228 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [70ms] +2025-07-11 10:49:51.230 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [70ms] +2025-07-11 10:49:51.400 [info] > git show --textconv :.vscode/launch.json [58ms] +2025-07-11 10:49:51.401 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.vscode/launch.json.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.vscode%5C%5Claunch.json%22%2C%22ref%22%3A%22%22%7D +2025-07-11 10:49:51.401 [info] > git ls-files --stage -- .vscode/launch.json [56ms] +2025-07-11 10:49:51.401 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.vscode/launch.json.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.vscode%5C%5Claunch.json%22%2C%22ref%22%3A%22%22%7D +2025-07-11 10:50:02.179 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [73ms] +2025-07-11 10:50:02.192 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [84ms] +2025-07-11 10:50:02.195 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [83ms] +2025-07-11 10:50:02.198 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [83ms] +2025-07-11 10:50:02.244 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [63ms] +2025-07-11 10:50:02.254 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [60ms] +2025-07-11 10:50:02.255 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [58ms] +2025-07-11 10:50:02.258 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [58ms] +2025-07-11 10:50:03.482 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [65ms] +2025-07-11 10:50:03.485 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [64ms] +2025-07-11 10:50:03.490 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [66ms] +2025-07-11 10:50:03.492 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [65ms] +2025-07-11 10:50:03.707 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [215ms] +2025-07-11 10:50:03.707 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [213ms] +2025-07-11 10:50:03.708 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [220ms] +2025-07-11 10:50:03.708 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [223ms] +2025-07-11 10:50:21.009 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [73ms] +2025-07-11 10:50:21.012 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [81ms] +2025-07-11 10:50:21.014 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [81ms] +2025-07-11 10:50:21.016 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [77ms] +2025-07-11 10:50:21.071 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [60ms] +2025-07-11 10:50:21.073 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [59ms] +2025-07-11 10:50:21.075 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [59ms] +2025-07-11 10:50:21.078 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [59ms] +2025-07-11 10:50:32.341 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [94ms] +2025-07-11 10:50:32.348 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [93ms] +2025-07-11 10:50:32.351 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [93ms] +2025-07-11 10:50:32.355 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [104ms] +2025-07-11 10:50:32.410 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [66ms] +2025-07-11 10:50:32.418 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [68ms] +2025-07-11 10:50:32.421 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [67ms] +2025-07-11 10:50:32.424 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [66ms] +2025-07-11 10:59:56.213 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [71ms] +2025-07-11 10:59:56.216 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [70ms] +2025-07-11 10:59:56.219 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [69ms] +2025-07-11 10:59:56.221 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [69ms] +2025-07-11 10:59:56.276 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [59ms] +2025-07-11 10:59:56.276 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [58ms] +2025-07-11 10:59:56.283 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [62ms] +2025-07-11 10:59:56.283 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [60ms] +2025-07-11 11:00:11.188 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [75ms] +2025-07-11 11:00:11.192 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [76ms] +2025-07-11 11:00:11.200 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [79ms] +2025-07-11 11:00:11.203 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [84ms] +2025-07-11 11:00:11.253 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [57ms] +2025-07-11 11:00:11.254 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [63ms] +2025-07-11 11:00:11.261 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [58ms] +2025-07-11 11:00:11.262 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [57ms] +2025-07-11 11:00:12.413 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [104ms] +2025-07-11 11:00:12.415 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [103ms] +2025-07-11 11:00:12.417 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [111ms] +2025-07-11 11:00:12.419 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [115ms] +2025-07-11 11:00:12.787 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [367ms] +2025-07-11 11:00:12.788 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [370ms] +2025-07-11 11:00:12.788 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [373ms] +2025-07-11 11:00:12.788 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [370ms] +2025-07-11 11:01:24.000 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [68ms] +2025-07-11 11:01:24.003 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [65ms] +2025-07-11 11:01:24.005 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [70ms] +2025-07-11 11:01:24.007 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [66ms] +2025-07-11 11:01:24.065 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [62ms] +2025-07-11 11:01:24.067 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [62ms] +2025-07-11 11:01:24.070 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [63ms] +2025-07-11 11:01:24.072 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [62ms] +2025-07-11 11:01:29.905 [info] > git show --textconv :docs/hxzx/安全管理.md [59ms] +2025-07-11 11:01:29.910 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [62ms] +2025-07-11 11:01:29.910 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:29.911 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [61ms] +2025-07-11 11:01:29.914 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [62ms] +2025-07-11 11:01:29.914 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:29.967 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [53ms] +2025-07-11 11:01:31.043 [info] > git show --textconv :docs/hxzx/常见问题解答.md [63ms] +2025-07-11 11:01:31.047 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [62ms] +2025-07-11 11:01:31.049 [info] > git show --textconv HEAD:docs/hxzx/常见问题解答.md [66ms] +2025-07-11 11:01:31.050 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:31.051 [info] > git ls-tree -l HEAD -- docs/hxzx/常见问题解答.md [64ms] +2025-07-11 11:01:31.051 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:31.105 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [56ms] +2025-07-11 11:01:31.861 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [62ms] +2025-07-11 11:01:31.864 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [68ms] +2025-07-11 11:01:31.864 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:31.865 [info] > git show --textconv :docs/hxzx/订单管理.md [71ms] +2025-07-11 11:01:31.865 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [64ms] +2025-07-11 11:01:31.865 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:31.921 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [56ms] +2025-07-11 11:01:32.478 [info] > git show --textconv :docs/hxzx/积分管理.md [62ms] +2025-07-11 11:01:32.481 [info] > git show --textconv HEAD:docs/hxzx/积分管理.md [63ms] +2025-07-11 11:01:32.481 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:32.481 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [61ms] +2025-07-11 11:01:32.484 [info] > git ls-tree -l HEAD -- docs/hxzx/积分管理.md [61ms] +2025-07-11 11:01:32.484 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:32.536 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [53ms] +2025-07-11 11:01:32.898 [info] > git show --textconv :docs/hxzx/营销管理.md [62ms] +2025-07-11 11:01:32.901 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [63ms] +2025-07-11 11:01:32.901 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:32.902 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [63ms] +2025-07-11 11:01:32.904 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [62ms] +2025-07-11 11:01:32.905 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:32.961 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-11 11:01:34.037 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [113ms] +2025-07-11 11:01:34.037 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:34.051 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [129ms] +2025-07-11 11:01:34.054 [info] > git show --textconv :docs/hxzx/自提管理.md [137ms] +2025-07-11 11:01:34.054 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [135ms] +2025-07-11 11:01:34.055 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:34.117 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [64ms] +2025-07-11 11:01:34.371 [info] > git show --textconv :docs/hxzx/订单管理.md [64ms] +2025-07-11 11:01:34.373 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [63ms] +2025-07-11 11:01:34.373 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:34.373 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [61ms] +2025-07-11 11:01:34.377 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [63ms] +2025-07-11 11:01:34.377 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:34.433 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [57ms] +2025-07-11 11:01:34.695 [info] > git show --textconv :docs/hxzx/登录后台.md [63ms] +2025-07-11 11:01:34.697 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [63ms] +2025-07-11 11:01:34.697 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:34.699 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [63ms] +2025-07-11 11:01:34.701 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [63ms] +2025-07-11 11:01:34.701 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:34.760 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [59ms] +2025-07-11 11:01:35.025 [info] > git show --textconv :docs/hxzx/安全管理.md [65ms] +2025-07-11 11:01:35.028 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [66ms] +2025-07-11 11:01:35.028 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:35.029 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [64ms] +2025-07-11 11:01:35.031 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [64ms] +2025-07-11 11:01:35.031 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:35.087 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [56ms] +2025-07-11 11:01:46.280 [info] > git show --textconv :.vscode/launch.json [63ms] +2025-07-11 11:01:46.281 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.vscode/launch.json.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.vscode%5C%5Claunch.json%22%2C%22ref%22%3A%22%22%7D +2025-07-11 11:01:46.283 [info] > git ls-files --stage -- .vscode/launch.json [61ms] +2025-07-11 11:01:46.283 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.vscode/launch.json.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.vscode%5C%5Claunch.json%22%2C%22ref%22%3A%22%22%7D +2025-07-11 11:02:04.153 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [83ms] +2025-07-11 11:02:04.158 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [85ms] +2025-07-11 11:02:04.167 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [89ms] +2025-07-11 11:02:04.173 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [88ms] +2025-07-11 11:02:04.233 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [77ms] +2025-07-11 11:02:04.235 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [75ms] +2025-07-11 11:02:04.242 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [73ms] +2025-07-11 11:02:04.250 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [73ms] +2025-07-11 11:03:25.717 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [100ms] +2025-07-11 11:03:25.727 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [107ms] +2025-07-11 11:03:25.732 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [104ms] +2025-07-11 11:03:25.735 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [113ms] +2025-07-11 11:03:25.799 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [80ms] +2025-07-11 11:03:25.808 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [76ms] +2025-07-11 11:03:25.814 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [79ms] +2025-07-11 11:03:25.814 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [76ms] +2025-07-11 11:05:56.933 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [66ms] +2025-07-11 11:05:56.941 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [71ms] +2025-07-11 11:05:56.943 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [69ms] +2025-07-11 11:05:56.945 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [69ms] +2025-07-11 11:05:56.990 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [55ms] +2025-07-11 11:05:56.999 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [56ms] +2025-07-11 11:05:56.999 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [54ms] +2025-07-11 11:05:57.002 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [55ms] +2025-07-11 11:06:28.843 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [117ms] +2025-07-11 11:06:28.848 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [76ms] +2025-07-11 11:06:28.851 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [83ms] +2025-07-11 11:06:28.852 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [87ms] +2025-07-11 11:06:28.920 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [75ms] +2025-07-11 11:06:28.924 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [73ms] +2025-07-11 11:06:28.929 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [77ms] +2025-07-11 11:06:28.931 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [76ms] +2025-07-11 11:06:47.128 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [73ms] +2025-07-11 11:06:47.134 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [72ms] +2025-07-11 11:06:47.136 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [78ms] +2025-07-11 11:06:47.139 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [74ms] +2025-07-11 11:06:47.197 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [67ms] +2025-07-11 11:06:47.209 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [73ms] +2025-07-11 11:06:47.211 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [72ms] +2025-07-11 11:06:47.212 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [70ms] +2025-07-11 11:08:52.725 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [78ms] +2025-07-11 11:08:52.730 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [76ms] +2025-07-11 11:08:52.733 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [75ms] +2025-07-11 11:08:52.735 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [85ms] +2025-07-11 11:08:52.791 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [63ms] +2025-07-11 11:08:52.794 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [59ms] +2025-07-11 11:08:52.795 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [62ms] +2025-07-11 11:08:52.797 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [58ms] +2025-07-11 11:11:37.547 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [69ms] +2025-07-11 11:11:37.556 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [72ms] +2025-07-11 11:11:37.558 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [78ms] +2025-07-11 11:11:37.561 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [73ms] +2025-07-11 11:11:37.610 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [60ms] +2025-07-11 11:11:37.617 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [59ms] +2025-07-11 11:11:37.619 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [58ms] +2025-07-11 11:11:37.620 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [58ms] +2025-07-11 11:11:43.828 [info] > git show --textconv :docs/hxzx/账号权限管理.md [68ms] +2025-07-11 11:11:43.829 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [67ms] +2025-07-11 11:11:43.829 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:11:43.831 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [66ms] +2025-07-11 11:11:43.834 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [66ms] +2025-07-11 11:11:43.834 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:11:43.885 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [51ms] +2025-07-11 11:11:44.401 [info] > git show --textconv :docs/hxzx/营销管理.md [64ms] +2025-07-11 11:11:44.402 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [62ms] +2025-07-11 11:11:44.402 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:11:44.404 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-11 11:11:44.409 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [64ms] +2025-07-11 11:11:44.409 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:11:44.461 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [55ms] +2025-07-11 11:11:44.823 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [120ms] +2025-07-11 11:11:44.823 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:11:44.825 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [120ms] +2025-07-11 11:11:44.827 [info] > git show --textconv :docs/hxzx/商品管理.md [128ms] +2025-07-11 11:11:44.848 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [141ms] +2025-07-11 11:11:44.849 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:11:44.892 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [65ms] +2025-07-11 11:11:47.870 [info] > git show --textconv :docs/hxzx/终端管理.md [63ms] +2025-07-11 11:11:47.875 [info] > git show --textconv HEAD:docs/hxzx/终端管理.md [65ms] +2025-07-11 11:11:47.875 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:11:47.877 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [65ms] +2025-07-11 11:11:47.879 [info] > git ls-tree -l HEAD -- docs/hxzx/终端管理.md [64ms] +2025-07-11 11:11:47.879 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:11:47.934 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [56ms] +2025-07-11 11:11:48.558 [info] > git show --textconv :docs/hxzx/自提管理.md [68ms] +2025-07-11 11:11:48.560 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [68ms] +2025-07-11 11:11:48.560 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:11:48.562 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [68ms] +2025-07-11 11:11:48.564 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [67ms] +2025-07-11 11:11:48.564 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:11:48.632 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [69ms] +2025-07-11 11:12:03.368 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [73ms] +2025-07-11 11:12:03.371 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [74ms] +2025-07-11 11:12:03.374 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [74ms] +2025-07-11 11:12:03.377 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [74ms] +2025-07-11 11:12:03.447 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [76ms] +2025-07-11 11:12:03.448 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [75ms] +2025-07-11 11:12:03.453 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [73ms] +2025-07-11 11:12:03.454 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [77ms] +2025-07-11 11:12:03.922 [info] > git check-ignore -v -z --stdin [58ms] +2025-07-11 11:12:08.861 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [144ms] +2025-07-11 11:12:08.875 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [155ms] +2025-07-11 11:12:08.894 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [171ms] +2025-07-11 11:12:08.897 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [172ms] +2025-07-11 11:12:08.959 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [90ms] +2025-07-11 11:12:08.964 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [86ms] +2025-07-11 11:12:08.971 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [74ms] +2025-07-11 11:12:08.975 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [74ms] +2025-07-11 11:12:10.803 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [67ms] +2025-07-11 11:12:10.807 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [67ms] +2025-07-11 11:12:10.809 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [68ms] +2025-07-11 11:12:10.812 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [67ms] +2025-07-11 11:12:10.863 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [58ms] +2025-07-11 11:12:10.867 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [58ms] +2025-07-11 11:12:10.868 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [56ms] +2025-07-11 11:12:10.871 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [57ms] +2025-07-11 11:12:12.774 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [64ms] +2025-07-11 11:12:12.774 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:12.775 [info] > git show --textconv :docs/hxzx/自提管理.md [67ms] +2025-07-11 11:12:12.775 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [63ms] +2025-07-11 11:12:12.778 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [64ms] +2025-07-11 11:12:12.778 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:12.833 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [56ms] +2025-07-11 11:12:14.250 [info] > git show --textconv :docs/hxzx/终端管理.md [63ms] +2025-07-11 11:12:14.256 [info] > git show --textconv HEAD:docs/hxzx/终端管理.md [66ms] +2025-07-11 11:12:14.256 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:14.256 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [65ms] +2025-07-11 11:12:14.259 [info] > git ls-tree -l HEAD -- docs/hxzx/终端管理.md [64ms] +2025-07-11 11:12:14.259 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:14.317 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [58ms] +2025-07-11 11:12:15.628 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [61ms] +2025-07-11 11:12:15.628 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:15.629 [info] > git show --textconv :docs/hxzx/营销管理.md [65ms] +2025-07-11 11:12:15.630 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [61ms] +2025-07-11 11:12:15.634 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [62ms] +2025-07-11 11:12:15.634 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:15.687 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [54ms] +2025-07-11 11:12:17.055 [info] > git show --textconv :docs/hxzx/商品管理.md [65ms] +2025-07-11 11:12:17.059 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [66ms] +2025-07-11 11:12:17.059 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:17.061 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [66ms] +2025-07-11 11:12:17.063 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [65ms] +2025-07-11 11:12:17.063 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:17.121 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [59ms] +2025-07-11 11:12:17.599 [info] > git show --textconv :docs/hxzx/积分管理.md [62ms] +2025-07-11 11:12:17.600 [info] > git show --textconv HEAD:docs/hxzx/积分管理.md [61ms] +2025-07-11 11:12:17.600 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:17.604 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [63ms] +2025-07-11 11:12:17.607 [info] > git ls-tree -l HEAD -- docs/hxzx/积分管理.md [63ms] +2025-07-11 11:12:17.607 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:17.663 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [56ms] +2025-07-11 11:12:18.637 [info] > git show --textconv :docs/hxzx/自提管理.md [63ms] +2025-07-11 11:12:18.638 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [62ms] +2025-07-11 11:12:18.638 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:18.639 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [60ms] +2025-07-11 11:12:18.642 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [62ms] +2025-07-11 11:12:18.643 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:18.696 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [55ms] +2025-07-11 11:12:36.995 [info] > git show --textconv :docs/hxzx/自提管理.md [66ms] +2025-07-11 11:12:36.995 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [65ms] +2025-07-11 11:12:36.995 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:36.997 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [64ms] +2025-07-11 11:12:37.000 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [64ms] +2025-07-11 11:12:37.000 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:37.054 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [55ms] +2025-07-11 11:13:20.547 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-11 11:13:21.704 [info] > git ls-files --stage -- docs/erp/1、登录系统.md [70ms] +2025-07-11 11:13:21.706 [info] > git show --textconv :docs/erp/1、登录系统.md [75ms] +2025-07-11 11:13:21.762 [info] > git cat-file -s e959cc93830db486b4a5fab818a6fd23cd6986ca [55ms] +2025-07-11 11:13:23.235 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-11 11:19:54.491 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [637ms] +2025-07-11 11:19:54.493 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [645ms] +2025-07-11 11:19:54.496 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [644ms] +2025-07-11 11:19:54.498 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [635ms] +2025-07-11 11:19:54.558 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [65ms] +2025-07-11 11:19:54.562 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [67ms] +2025-07-11 11:19:54.564 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [65ms] +2025-07-11 11:19:54.567 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [66ms] +2025-07-11 11:20:23.779 [info] > git show --textconv :docs/hxzx/商品管理.md [66ms] +2025-07-11 11:20:23.781 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [66ms] +2025-07-11 11:20:23.781 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:20:23.782 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [65ms] +2025-07-11 11:20:23.785 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [66ms] +2025-07-11 11:20:23.785 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:20:23.845 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [60ms] +2025-07-11 11:21:54.299 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [73ms] +2025-07-11 11:21:54.302 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [73ms] +2025-07-11 11:21:54.304 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [69ms] +2025-07-11 11:21:54.308 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [69ms] +2025-07-11 11:21:54.365 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [64ms] +2025-07-11 11:21:54.368 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [64ms] +2025-07-11 11:21:54.370 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [62ms] +2025-07-11 11:21:54.371 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [60ms] +2025-07-11 11:23:34.576 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [83ms] +2025-07-11 11:23:34.580 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [78ms] +2025-07-11 11:23:34.583 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [73ms] +2025-07-11 11:23:34.585 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [89ms] +2025-07-11 11:23:34.641 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [63ms] +2025-07-11 11:23:34.647 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [64ms] +2025-07-11 11:23:34.649 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [64ms] +2025-07-11 11:23:34.651 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [63ms] +2025-07-11 11:23:48.922 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [73ms] +2025-07-11 11:23:48.926 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [69ms] +2025-07-11 11:23:48.929 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [77ms] +2025-07-11 11:23:48.932 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [72ms] +2025-07-11 11:23:48.989 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [65ms] +2025-07-11 11:23:48.993 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [65ms] +2025-07-11 11:23:48.996 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [64ms] +2025-07-11 11:23:48.997 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [64ms] +2025-07-11 11:24:00.699 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [75ms] +2025-07-11 11:24:00.702 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [75ms] +2025-07-11 11:24:00.705 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [75ms] +2025-07-11 11:24:00.708 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [76ms] +2025-07-11 11:24:00.767 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [65ms] +2025-07-11 11:24:00.767 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [62ms] +2025-07-11 11:24:00.769 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [61ms] +2025-07-11 11:24:00.772 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [61ms] +2025-07-11 11:24:03.453 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-11 11:24:13.137 [info] > git show --textconv HEAD:docs/hxzx/终端管理.md [62ms] +2025-07-11 11:24:13.137 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:24:13.137 [info] > git show --textconv :docs/hxzx/终端管理.md [65ms] +2025-07-11 11:24:13.140 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [62ms] +2025-07-11 11:24:13.144 [info] > git ls-tree -l HEAD -- docs/hxzx/终端管理.md [65ms] +2025-07-11 11:24:13.144 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:24:13.198 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [57ms] +2025-07-11 11:24:13.871 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [63ms] +2025-07-11 11:24:13.871 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:24:13.872 [info] > git show --textconv :docs/hxzx/自提管理.md [66ms] +2025-07-11 11:24:13.875 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [64ms] +2025-07-11 11:24:13.878 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [65ms] +2025-07-11 11:24:13.878 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:24:13.935 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [58ms] +2025-07-11 11:24:14.300 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [61ms] +2025-07-11 11:24:14.300 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:24:14.300 [info] > git show --textconv :docs/hxzx/账号权限管理.md [65ms] +2025-07-11 11:24:14.301 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [60ms] +2025-07-11 11:24:14.305 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [60ms] +2025-07-11 11:24:14.305 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:24:14.358 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [55ms] +2025-07-11 11:24:14.788 [info] > git show --textconv :docs/hxzx/营销管理.md [64ms] +2025-07-11 11:24:14.789 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [62ms] +2025-07-11 11:24:14.789 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:24:14.790 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [61ms] +2025-07-11 11:24:14.792 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [62ms] +2025-07-11 11:24:14.793 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:24:14.849 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-11 11:24:15.111 [info] > git show --textconv :docs/hxzx/商品管理.md [64ms] +2025-07-11 11:24:15.113 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [63ms] +2025-07-11 11:24:15.113 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:24:15.114 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [62ms] +2025-07-11 11:24:15.116 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [62ms] +2025-07-11 11:24:15.117 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:24:15.172 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [55ms] +2025-07-11 11:24:26.569 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [81ms] +2025-07-11 11:24:26.573 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [90ms] +2025-07-11 11:24:26.576 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [84ms] +2025-07-11 11:24:26.578 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [82ms] +2025-07-11 11:24:26.632 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [60ms] +2025-07-11 11:24:26.633 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [57ms] +2025-07-11 11:24:26.636 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [59ms] +2025-07-11 11:24:26.638 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [59ms] +2025-07-11 11:25:11.555 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [81ms] +2025-07-11 11:25:11.558 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [78ms] +2025-07-11 11:25:11.562 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [73ms] +2025-07-11 11:25:11.565 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [78ms] +2025-07-11 11:25:11.616 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [59ms] +2025-07-11 11:25:11.617 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [57ms] +2025-07-11 11:25:11.624 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [57ms] +2025-07-11 11:25:11.624 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [60ms] +2025-07-11 11:30:23.937 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [84ms] +2025-07-11 11:30:23.942 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [76ms] +2025-07-11 11:30:23.945 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [83ms] +2025-07-11 11:30:23.947 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [75ms] +2025-07-11 11:30:23.995 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [57ms] +2025-07-11 11:30:24.002 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [58ms] +2025-07-11 11:30:24.006 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [56ms] +2025-07-11 11:30:24.006 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [60ms] +2025-07-11 11:31:15.457 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [76ms] +2025-07-11 11:31:15.460 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [70ms] +2025-07-11 11:31:15.462 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [84ms] +2025-07-11 11:31:15.465 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [80ms] +2025-07-11 11:31:15.518 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [59ms] +2025-07-11 11:31:15.520 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [58ms] +2025-07-11 11:31:15.522 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [58ms] +2025-07-11 11:31:15.523 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [56ms] +2025-07-11 11:35:17.385 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [107ms] +2025-07-11 11:35:17.388 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [123ms] +2025-07-11 11:35:17.391 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [121ms] +2025-07-11 11:35:17.394 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [132ms] +2025-07-11 11:35:17.463 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [72ms] +2025-07-11 11:35:17.465 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [71ms] +2025-07-11 11:35:17.466 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [78ms] +2025-07-11 11:35:17.469 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [72ms] +2025-07-11 11:37:05.984 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [76ms] +2025-07-11 11:37:05.987 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [83ms] +2025-07-11 11:37:05.990 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [78ms] +2025-07-11 11:37:05.993 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [92ms] +2025-07-11 11:37:06.051 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [64ms] +2025-07-11 11:37:06.052 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [62ms] +2025-07-11 11:37:06.053 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [60ms] +2025-07-11 11:37:06.054 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [58ms] +2025-07-11 11:37:21.738 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [99ms] +2025-07-11 11:37:21.742 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [98ms] +2025-07-11 11:37:21.745 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [97ms] +2025-07-11 11:37:21.746 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [106ms] +2025-07-11 11:37:21.803 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [61ms] +2025-07-11 11:37:21.804 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [59ms] +2025-07-11 11:37:21.805 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [58ms] +2025-07-11 11:37:21.807 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [59ms] +2025-07-11 11:37:23.278 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [70ms] +2025-07-11 11:37:23.281 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [75ms] +2025-07-11 11:37:23.283 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [72ms] +2025-07-11 11:37:23.286 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [72ms] +2025-07-11 11:37:23.532 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [244ms] +2025-07-11 11:37:23.532 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [249ms] +2025-07-11 11:37:23.533 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [252ms] +2025-07-11 11:37:23.533 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [247ms] +2025-07-11 11:37:26.852 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [67ms] +2025-07-11 11:37:26.855 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [65ms] +2025-07-11 11:37:26.859 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [71ms] +2025-07-11 11:37:26.861 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [68ms] +2025-07-11 11:37:26.916 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [62ms] +2025-07-11 11:37:26.918 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [59ms] +2025-07-11 11:37:26.921 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [61ms] +2025-07-11 11:37:26.922 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [59ms] +2025-07-11 11:39:23.320 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [61ms] +2025-07-11 11:39:23.323 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [61ms] +2025-07-11 11:39:23.331 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [66ms] +2025-07-11 11:39:23.333 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [65ms] +2025-07-11 11:39:23.386 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [60ms] +2025-07-11 11:39:23.386 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [64ms] +2025-07-11 11:39:23.395 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [62ms] +2025-07-11 11:39:23.397 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [61ms] +2025-07-11 11:39:49.336 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [172ms] +2025-07-11 11:39:49.341 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [172ms] +2025-07-11 11:39:49.345 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [185ms] +2025-07-11 11:39:49.349 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [183ms] +2025-07-11 11:39:49.426 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [87ms] +2025-07-11 11:39:49.427 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [83ms] +2025-07-11 11:39:49.441 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [92ms] +2025-07-11 11:39:49.442 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [90ms] +2025-07-11 11:39:57.605 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [68ms] +2025-07-11 11:39:57.610 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [69ms] +2025-07-11 11:39:57.613 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [69ms] +2025-07-11 11:39:57.617 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [68ms] +2025-07-11 11:39:57.677 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [70ms] +2025-07-11 11:39:57.678 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [65ms] +2025-07-11 11:39:57.681 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [64ms] +2025-07-11 11:39:57.683 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [63ms] +2025-07-11 11:41:37.596 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [88ms] +2025-07-11 11:41:37.599 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [93ms] +2025-07-11 11:41:37.602 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [87ms] +2025-07-11 11:41:37.605 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [94ms] +2025-07-11 11:41:37.668 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [69ms] +2025-07-11 11:41:37.673 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [71ms] +2025-07-11 11:41:37.675 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [70ms] +2025-07-11 11:41:37.682 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [75ms] +2025-07-11 11:42:10.736 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [73ms] +2025-07-11 11:42:10.740 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [79ms] +2025-07-11 11:42:10.742 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [74ms] +2025-07-11 11:42:10.744 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [72ms] +2025-07-11 11:42:10.800 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [61ms] +2025-07-11 11:42:10.804 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [62ms] +2025-07-11 11:42:10.808 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [61ms] +2025-07-11 11:42:10.808 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [64ms] +2025-07-11 11:42:15.886 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [73ms] +2025-07-11 11:42:15.890 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [74ms] +2025-07-11 11:42:15.893 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [74ms] +2025-07-11 11:42:15.896 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [74ms] +2025-07-11 11:42:15.953 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [64ms] +2025-07-11 11:42:15.956 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [63ms] +2025-07-11 11:42:15.958 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [62ms] +2025-07-11 11:42:15.961 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [62ms] +2025-07-11 11:42:24.693 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [86ms] +2025-07-11 11:42:24.704 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [87ms] +2025-07-11 11:42:24.707 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [94ms] +2025-07-11 11:42:24.710 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [100ms] +2025-07-11 11:42:24.762 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [67ms] +2025-07-11 11:42:24.774 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [67ms] +2025-07-11 11:42:24.779 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [67ms] +2025-07-11 11:42:24.780 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [70ms] +2025-07-11 11:42:25.628 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [70ms] +2025-07-11 11:42:25.635 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [74ms] +2025-07-11 11:42:25.638 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [74ms] +2025-07-11 11:42:25.640 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [74ms] +2025-07-11 11:42:26.031 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [391ms] +2025-07-11 11:42:26.031 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [388ms] +2025-07-11 11:42:26.031 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [393ms] +2025-07-11 11:42:26.031 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [402ms] +2025-07-11 11:42:34.418 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [78ms] +2025-07-11 11:42:34.422 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [85ms] +2025-07-11 11:42:34.425 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [78ms] +2025-07-11 11:42:34.427 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [84ms] +2025-07-11 11:42:34.498 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [73ms] +2025-07-11 11:42:34.499 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [72ms] +2025-07-11 11:42:34.500 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [79ms] +2025-07-11 11:42:34.500 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [71ms] +2025-07-11 11:42:52.647 [info] > git show --textconv :.git/COMMIT_EDITMSG [57ms] +2025-07-11 11:42:52.647 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.git/COMMIT_EDITMSG.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.git%5C%5CCOMMIT_EDITMSG%22%2C%22ref%22%3A%22%22%7D +2025-07-11 11:42:52.648 [info] > git ls-files --stage -- .git/COMMIT_EDITMSG [54ms] +2025-07-11 11:42:52.648 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.git/COMMIT_EDITMSG.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.git%5C%5CCOMMIT_EDITMSG%22%2C%22ref%22%3A%22%22%7D +2025-07-11 11:42:59.813 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [64ms] +2025-07-11 11:42:59.816 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [68ms] +2025-07-11 11:42:59.819 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [67ms] +2025-07-11 11:42:59.822 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [67ms] +2025-07-11 11:42:59.885 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [66ms] +2025-07-11 11:42:59.885 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [70ms] +2025-07-11 11:42:59.888 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [67ms] +2025-07-11 11:42:59.890 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [66ms] +2025-07-11 11:43:07.286 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [184ms] +2025-07-11 11:43:07.288 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [183ms] +2025-07-11 11:43:07.290 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [194ms] +2025-07-11 11:43:07.292 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [193ms] +2025-07-11 11:43:07.417 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [130ms] +2025-07-11 11:43:07.437 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [148ms] +2025-07-11 11:43:07.438 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [145ms] +2025-07-11 11:43:07.439 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [147ms] +2025-07-11 11:43:10.333 [info] > git show --textconv :.vscode/launch.json [60ms] +2025-07-11 11:43:10.333 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.vscode/launch.json.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.vscode%5C%5Claunch.json%22%2C%22ref%22%3A%22%22%7D +2025-07-11 11:43:10.333 [info] > git ls-files --stage -- .vscode/launch.json [59ms] +2025-07-11 11:43:10.333 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.vscode/launch.json.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.vscode%5C%5Claunch.json%22%2C%22ref%22%3A%22%22%7D +2025-07-11 11:43:57.296 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [66ms] +2025-07-11 11:43:57.300 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [68ms] +2025-07-11 11:43:57.303 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [67ms] +2025-07-11 11:43:57.306 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [66ms] +2025-07-11 11:43:57.357 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [60ms] +2025-07-11 11:43:57.364 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [59ms] +2025-07-11 11:43:57.365 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [62ms] +2025-07-11 11:43:57.367 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [59ms] +2025-07-11 11:44:03.925 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [67ms] +2025-07-11 11:44:03.929 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [68ms] +2025-07-11 11:44:03.932 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [67ms] +2025-07-11 11:44:03.934 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [66ms] +2025-07-11 11:44:04.148 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [211ms] +2025-07-11 11:44:04.148 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [214ms] +2025-07-11 11:44:04.148 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [216ms] +2025-07-11 11:44:04.148 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [221ms] +2025-07-11 11:44:20.338 [info] > git show --textconv :docs/hxzx/商品管理.md [64ms] +2025-07-11 11:44:20.342 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [66ms] +2025-07-11 11:44:20.342 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:44:20.344 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [66ms] +2025-07-11 11:44:20.346 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [66ms] +2025-07-11 11:44:20.346 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:44:20.402 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [56ms] +2025-07-11 11:44:21.022 [info] > git ls-files --stage -- .vscode/launch.json [58ms] +2025-07-11 11:44:21.022 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.vscode/launch.json.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.vscode%5C%5Claunch.json%22%2C%22ref%22%3A%22%22%7D +2025-07-11 11:44:21.023 [info] > git show --textconv :.vscode/launch.json [61ms] +2025-07-11 11:44:21.023 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.vscode/launch.json.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.vscode%5C%5Claunch.json%22%2C%22ref%22%3A%22%22%7D +2025-07-11 11:44:23.059 [info] > git show --textconv :.git/COMMIT_EDITMSG [62ms] +2025-07-11 11:44:23.059 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.git/COMMIT_EDITMSG.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.git%5C%5CCOMMIT_EDITMSG%22%2C%22ref%22%3A%22%22%7D +2025-07-11 11:44:23.060 [info] > git ls-files --stage -- .git/COMMIT_EDITMSG [61ms] +2025-07-11 11:44:23.060 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.git/COMMIT_EDITMSG.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.git%5C%5CCOMMIT_EDITMSG%22%2C%22ref%22%3A%22%22%7D +2025-07-11 11:52:40.352 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [74ms] +2025-07-11 11:52:40.355 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [73ms] +2025-07-11 11:52:40.358 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [73ms] +2025-07-11 11:52:40.361 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [72ms] +2025-07-11 11:52:40.415 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [61ms] +2025-07-11 11:52:40.419 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [61ms] +2025-07-11 11:52:40.424 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [60ms] +2025-07-11 11:52:40.424 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [63ms] +2025-07-11 11:52:55.465 [info] [main] 日志级别: Debug +2025-07-11 11:54:06.286 [info] > git show --textconv :.git/COMMIT_EDITMSG [60ms] +2025-07-11 11:54:06.287 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.git/COMMIT_EDITMSG.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.git%5C%5CCOMMIT_EDITMSG%22%2C%22ref%22%3A%22%22%7D +2025-07-11 11:54:06.287 [info] > git ls-files --stage -- .git/COMMIT_EDITMSG [59ms] +2025-07-11 11:54:06.288 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.git/COMMIT_EDITMSG.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.git%5C%5CCOMMIT_EDITMSG%22%2C%22ref%22%3A%22%22%7D +2025-07-11 11:54:08.216 [info] > git -c user.useConfigOnly=true commit --quiet [5415787ms] +2025-07-11 11:54:08.216 [info] Aborting commit due to empty commit message. +2025-07-11 11:54:08.283 [info] > git config --get commit.template [62ms] +2025-07-11 11:54:08.283 [info] > git symbolic-ref --short HEAD [65ms] +2025-07-11 11:54:08.354 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [68ms] +2025-07-11 11:54:08.357 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 11:54:08.427 [info] > git rev-parse refs/remotes/origin/master [71ms] +2025-07-11 11:54:08.491 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-11 11:54:08.495 [info] > git status -z -uall [65ms] +2025-07-11 11:55:00.377 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [67ms] +2025-07-11 11:55:00.380 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [67ms] +2025-07-11 11:55:00.382 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [65ms] +2025-07-11 11:55:00.385 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [66ms] +2025-07-11 11:55:00.443 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [61ms] +2025-07-11 11:55:00.443 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [63ms] +2025-07-11 11:55:00.444 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [60ms] +2025-07-11 11:55:00.450 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [63ms] +2025-07-11 11:55:31.949 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [75ms] +2025-07-11 11:55:31.952 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [72ms] +2025-07-11 11:55:31.955 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [72ms] +2025-07-11 11:55:31.958 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [69ms] +2025-07-11 11:55:32.013 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [61ms] +2025-07-11 11:55:32.014 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [60ms] +2025-07-11 11:55:32.017 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [60ms] +2025-07-11 11:55:32.018 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [58ms] +2025-07-11 11:56:16.829 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [65ms] +2025-07-11 11:56:16.831 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [65ms] +2025-07-11 11:56:16.834 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [65ms] +2025-07-11 11:56:16.837 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [63ms] +2025-07-11 11:56:16.891 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [60ms] +2025-07-11 11:56:16.892 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [59ms] +2025-07-11 11:56:16.897 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [60ms] +2025-07-11 11:56:16.899 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [59ms] +2025-07-11 12:04:31.348 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [74ms] +2025-07-11 12:04:31.357 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [80ms] +2025-07-11 12:04:31.359 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [75ms] +2025-07-11 12:04:31.361 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [80ms] +2025-07-11 12:04:31.409 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [58ms] +2025-07-11 12:04:31.420 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [59ms] +2025-07-11 12:04:31.420 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [61ms] +2025-07-11 12:04:31.422 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [59ms] +2025-07-11 12:05:02.460 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [68ms] +2025-07-11 12:05:02.462 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [68ms] +2025-07-11 12:05:02.465 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [68ms] +2025-07-11 12:05:02.468 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [67ms] +2025-07-11 12:05:02.522 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [59ms] +2025-07-11 12:05:02.523 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [58ms] +2025-07-11 12:05:02.525 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [57ms] +2025-07-11 12:05:02.527 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [56ms] +2025-07-11 12:06:51.438 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [64ms] +2025-07-11 12:06:51.441 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [65ms] +2025-07-11 12:06:51.444 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [66ms] +2025-07-11 12:06:51.447 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [66ms] +2025-07-11 12:06:51.511 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [70ms] +2025-07-11 12:06:51.513 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [70ms] +2025-07-11 12:06:51.516 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [70ms] +2025-07-11 12:06:51.519 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [70ms] +2025-07-11 12:08:17.111 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [68ms] +2025-07-11 12:08:17.115 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [75ms] +2025-07-11 12:08:17.117 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [71ms] +2025-07-11 12:08:17.119 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [70ms] +2025-07-11 12:08:17.175 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [60ms] +2025-07-11 12:08:17.179 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [62ms] +2025-07-11 12:08:17.180 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [61ms] +2025-07-11 12:08:17.182 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [61ms] +2025-07-11 12:08:34.615 [info] > git show --textconv :docs/hxzx/安全管理.md [66ms] +2025-07-11 12:08:34.616 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [63ms] +2025-07-11 12:08:34.619 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [68ms] +2025-07-11 12:08:34.619 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:08:34.621 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [66ms] +2025-07-11 12:08:34.621 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:08:34.676 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [57ms] +2025-07-11 12:08:44.956 [debug] [CommandCenter][getSCMResource] git.getSCMResource.uri: file:///c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md +2025-07-11 12:08:44.956 [debug] [CommandCenter][getSCMResource] repo root: c:\Users\zsw\Desktop\zsw-docs +2025-07-11 12:08:45.036 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [59ms] +2025-07-11 12:08:45.096 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [57ms] +2025-07-11 12:09:02.612 [info] > git show --textconv :docs/hxzx/订单管理.md [63ms] +2025-07-11 12:09:02.613 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [62ms] +2025-07-11 12:09:02.613 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:09:02.616 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [63ms] +2025-07-11 12:09:02.618 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [63ms] +2025-07-11 12:09:02.619 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:09:02.675 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [57ms] +2025-07-11 12:09:21.239 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-11 12:09:22.073 [info] > git ls-files --stage -- docs/erp/生产管理/生产计划.md [59ms] +2025-07-11 12:09:22.075 [info] > git show --textconv :docs/erp/生产管理/生产计划.md [63ms] +2025-07-11 12:09:22.133 [info] > git cat-file -s 93b8fc73e374942e05cebbc825afa03f539c9baf [58ms] +2025-07-11 12:09:23.011 [info] > git ls-files --stage -- docs/erp/生产管理/生产入库.md [60ms] +2025-07-11 12:09:23.014 [info] > git show --textconv :docs/erp/生产管理/生产入库.md [64ms] +2025-07-11 12:09:23.131 [info] > git cat-file -s b6b0588796cbb4aa12ab34019b19d678dc8afe72 [118ms] +2025-07-11 12:09:23.744 [info] > git ls-files --stage -- docs/erp/生产管理/生产计划.md [59ms] +2025-07-11 12:09:23.747 [info] > git show --textconv :docs/erp/生产管理/生产计划.md [66ms] +2025-07-11 12:09:23.800 [info] > git cat-file -s 93b8fc73e374942e05cebbc825afa03f539c9baf [53ms] +2025-07-11 12:09:24.108 [info] > git ls-files --stage -- docs/erp/生产管理/_category_.json [61ms] +2025-07-11 12:09:24.111 [info] > git show --textconv :docs/erp/生产管理/_category_.json [66ms] +2025-07-11 12:09:24.166 [info] > git cat-file -s 39ccc18e59a5df62dc5b66dfb8331fd6f22901f7 [55ms] +2025-07-11 12:09:24.855 [info] > git check-ignore -v -z --stdin [60ms] +2025-07-11 12:09:28.793 [info] > git ls-files --stage -- docs/erp/2、账期管理.md [59ms] +2025-07-11 12:09:28.796 [info] > git show --textconv :docs/erp/2、账期管理.md [64ms] +2025-07-11 12:09:28.853 [info] > git cat-file -s e8d51ff7312a91ae4c59be9b090aaf9dccd25d20 [57ms] +2025-07-11 12:09:35.614 [info] > git show --textconv :docs/hxzx/订单管理.md [66ms] +2025-07-11 12:09:35.615 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [65ms] +2025-07-11 12:09:35.615 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:09:35.616 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [64ms] +2025-07-11 12:09:35.619 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [65ms] +2025-07-11 12:09:35.619 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:09:35.675 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [56ms] +2025-07-11 12:09:37.195 [info] > git show --textconv :docs/hxzx/登录后台.md [64ms] +2025-07-11 12:09:37.199 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [66ms] +2025-07-11 12:09:37.199 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:09:37.200 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [64ms] +2025-07-11 12:09:37.202 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [64ms] +2025-07-11 12:09:37.203 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:09:37.255 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [53ms] +2025-07-11 12:09:39.160 [info] > git show --textconv :docs/hxzx/营销管理.md [66ms] +2025-07-11 12:09:39.161 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [64ms] +2025-07-11 12:09:39.161 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:09:39.164 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [64ms] +2025-07-11 12:09:39.166 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [65ms] +2025-07-11 12:09:39.167 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:09:39.225 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-11 12:09:39.820 [info] > git show --textconv :docs/hxzx/订单管理.md [67ms] +2025-07-11 12:09:39.822 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [68ms] +2025-07-11 12:09:39.823 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:09:39.823 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [67ms] +2025-07-11 12:09:39.826 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [67ms] +2025-07-11 12:09:39.826 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:09:39.894 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [69ms] +2025-07-11 12:09:40.487 [info] > git show --textconv :docs/hxzx/安全管理.md [65ms] +2025-07-11 12:09:40.491 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [63ms] +2025-07-11 12:09:40.494 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [69ms] +2025-07-11 12:09:40.494 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:09:40.494 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [65ms] +2025-07-11 12:09:40.494 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:09:40.550 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [56ms] +2025-07-11 12:10:11.813 [info] > git show --textconv HEAD:docs/hxzx/常见问题解答.md [63ms] +2025-07-11 12:10:11.813 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:10:11.814 [info] > git show --textconv :docs/hxzx/常见问题解答.md [66ms] +2025-07-11 12:10:11.817 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [65ms] +2025-07-11 12:10:11.819 [info] > git ls-tree -l HEAD -- docs/hxzx/常见问题解答.md [65ms] +2025-07-11 12:10:11.819 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:10:11.879 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [60ms] +2025-07-11 12:10:13.144 [info] > git ls-files --stage -- docs/erp/生产管理/生产计划.md [56ms] +2025-07-11 12:10:13.147 [info] > git show --textconv :docs/erp/生产管理/生产计划.md [61ms] +2025-07-11 12:10:13.201 [info] > git cat-file -s 93b8fc73e374942e05cebbc825afa03f539c9baf [55ms] +2025-07-11 12:10:15.495 [info] > git show --textconv HEAD:docs/hxzx/常见问题解答.md [63ms] +2025-07-11 12:10:15.496 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:10:15.496 [info] > git show --textconv :docs/hxzx/常见问题解答.md [66ms] +2025-07-11 12:10:15.496 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [61ms] +2025-07-11 12:10:15.500 [info] > git ls-tree -l HEAD -- docs/hxzx/常见问题解答.md [63ms] +2025-07-11 12:10:15.500 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:10:15.550 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [52ms] +2025-07-11 12:10:18.333 [info] > git show --textconv :docs/hxzx/订单管理.md [66ms] +2025-07-11 12:10:18.337 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [67ms] +2025-07-11 12:10:18.337 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:10:18.338 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [67ms] +2025-07-11 12:10:18.341 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [67ms] +2025-07-11 12:10:18.341 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:10:18.400 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [60ms] +2025-07-11 12:10:18.869 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [67ms] +2025-07-11 12:10:18.930 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [59ms] +2025-07-11 12:11:28.539 [info] > git ls-files --stage -- docs/odoo/bom.md [57ms] +2025-07-11 12:11:28.542 [info] > git show --textconv :docs/odoo/bom.md [62ms] +2025-07-11 12:11:28.598 [info] > git cat-file -s 425085f10c68e31f0924eb923bbc5469517870fa [56ms] diff --git a/odoo/Git888888.log b/odoo/Git888888.log new file mode 100644 index 0000000..538124c --- /dev/null +++ b/odoo/Git888888.log @@ -0,0 +1,6075 @@ +2025-07-10 12:05:16.199 [info] [main] 日志级别: Info +2025-07-10 12:05:16.199 [info] [main] 正在验证在以下位置找到的 git: "C:\Program Files\Git\cmd\git.exe" +2025-07-10 12:05:17.162 [info] [main] 使用来自 "C:\Program Files\Git\cmd\git.exe" 的 git "2.47.0.windows.1" +2025-07-10 12:05:17.162 [info] [Model][doInitialScan] Initial repository scan started +2025-07-10 12:05:17.226 [info] > git rev-parse --show-toplevel [55ms] +2025-07-10 12:05:17.226 [info] fatal: not a git repository (or any of the parent directories): .git +2025-07-10 12:05:17.228 [info] [Model][doInitialScan] Initial repository scan completed - repositories (0), closed repositories (0), parent repositories (0), unsafe repositories (0) +2025-07-10 13:57:48.614 [info] > git rev-parse --show-toplevel [997ms] +2025-07-10 13:57:48.614 [info] fatal: not a git repository (or any of the parent directories): .git +2025-07-10 14:31:05.411 [info] [GitProtocolHandler][handleUri] URI:(vscode://vscode.git/clone?url%3Dhttps%3A%2F%2Fgit.lotus-wallet.com%2FLoki%2Fzsw-docs.git) +2025-07-10 14:31:05.419 [info] [GitProtocolHandler][clone] Executing git.clone for https://git.lotus-wallet.com/Loki/zsw-docs.git +2025-07-10 14:31:39.122 [info] > git clone https://git.lotus-wallet.com/Loki/zsw-docs.git c:\Users\zsw\Desktop\zsw-docs --progress [27546ms] (cancelled) +2025-07-10 14:32:31.278 [info] [GitProtocolHandler][handleUri] URI:(vscode://vscode.git/clone?url%3Dhttps%3A%2F%2Fgit.lotus-wallet.com%2FLoki%2Fzsw-docs.git) +2025-07-10 14:32:31.281 [info] [GitProtocolHandler][clone] Executing git.clone for https://git.lotus-wallet.com/Loki/zsw-docs.git +2025-07-10 14:36:21.137 [info] > git clone https://git.lotus-wallet.com/Loki/zsw-docs.git c:\Users\zsw\Desktop\zsw-docs-1 --progress [224822ms] (cancelled) +2025-07-10 14:37:04.706 [info] [main] 日志级别: Info +2025-07-10 14:37:04.706 [info] [main] 正在验证在以下位置找到的 git: "C:\Program Files\Git\cmd\git.exe" +2025-07-10 14:37:04.706 [info] [main] 使用来自 "C:\Program Files\Git\cmd\git.exe" 的 git "2.47.0.windows.1" +2025-07-10 14:37:04.706 [info] [Model][doInitialScan] Initial repository scan started +2025-07-10 14:37:04.706 [info] > git rev-parse --show-toplevel [132ms] +2025-07-10 14:37:04.859 [info] > git rev-parse --git-dir --git-common-dir [150ms] +2025-07-10 14:37:04.868 [info] [Model][openRepository] Opened repository (path): c:\Users\zsw\Desktop\zsw-docs +2025-07-10 14:37:04.868 [info] [Model][openRepository] Opened repository (real path): c:\Users\zsw\Desktop\zsw-docs +2025-07-10 14:37:04.872 [info] [Model][doInitialScan] Initial repository scan completed - repositories (1), closed repositories (0), parent repositories (0), unsafe repositories (0) +2025-07-10 14:37:04.883 [warning] [Git][getHEAD] Failed to parse HEAD file: Repository is using reftable format. +2025-07-10 14:37:04.954 [info] > git config --get commit.template [75ms] +2025-07-10 14:37:04.954 [info] > git symbolic-ref --short HEAD [70ms] +2025-07-10 14:37:04.954 [info] fatal: No such ref: HEAD +2025-07-10 14:37:05.013 [info] > git rev-parse HEAD [57ms] +2025-07-10 14:37:05.013 [info] fatal: ambiguous argument 'HEAD': unknown revision or path not in the working tree. +Use '--' to separate paths from revisions, like this: +'git [...] -- [...]' +2025-07-10 14:37:05.071 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [53ms] +2025-07-10 14:37:05.072 [info] > git status -z -uall [56ms] +2025-07-10 14:37:05.132 [info] > git symbolic-ref --short HEAD [55ms] +2025-07-10 14:37:05.132 [info] fatal: No such ref: HEAD +2025-07-10 14:37:05.135 [info] > git config --get commit.template [56ms] +2025-07-10 14:37:05.188 [info] > git rev-parse HEAD [55ms] +2025-07-10 14:37:05.188 [info] fatal: ambiguous argument 'HEAD': unknown revision or path not in the working tree. +Use '--' to separate paths from revisions, like this: +'git [...] -- [...]' +2025-07-10 14:37:05.251 [info] > git status -z -uall [61ms] +2025-07-10 14:37:05.252 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 14:38:03.775 [info] > git check-ignore -v -z --stdin [75ms] +2025-07-10 14:38:04.970 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 14:38:05.144 [info] > git symbolic-ref --short HEAD [58ms] +2025-07-10 14:38:05.147 [info] > git config --get commit.template [58ms] +2025-07-10 14:38:05.202 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 14:38:05.204 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:38:05.257 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 14:38:05.321 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [60ms] +2025-07-10 14:38:05.806 [info] > git status -z -uall [547ms] +2025-07-10 14:38:05.865 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 14:38:05.878 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 14:38:05.935 [info] > git config --get --local branch.master.vscode-merge-base [54ms] +2025-07-10 14:38:05.935 [warning] [Git][config] git config failed: Failed to execute git +2025-07-10 14:38:05.996 [info] > git reflog master --grep-reflog=branch: Created from *. [59ms] +2025-07-10 14:38:06.052 [info] > git symbolic-ref --short refs/remotes/origin/HEAD [53ms] +2025-07-10 14:38:06.111 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/origin/master refs/remotes/origin/master [57ms] +2025-07-10 14:38:06.170 [info] > git config --add --local branch.master.vscode-merge-base origin/master [56ms] +2025-07-10 14:38:06.249 [info] > git config --get commit.template [74ms] +2025-07-10 14:38:06.250 [info] > git symbolic-ref --short HEAD [78ms] +2025-07-10 14:38:06.306 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [54ms] +2025-07-10 14:38:06.308 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:38:06.360 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 14:38:06.426 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [60ms] +2025-07-10 14:38:06.912 [info] > git status -z -uall [549ms] +2025-07-10 14:38:06.977 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [61ms] +2025-07-10 14:38:06.980 [info] > git merge-base refs/heads/master refs/remotes/origin/master [61ms] +2025-07-10 14:38:07.037 [info] > git config --get --local branch.master.vscode-merge-base [58ms] +2025-07-10 14:38:07.040 [info] > git diff --name-status -z --diff-filter=ADMR 84e81a2b2f02798acbb48e1045be9ddac82d8632...refs/remotes/origin/master [58ms] +2025-07-10 14:38:07.091 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/origin/master refs/remotes/origin/master [52ms] +2025-07-10 14:38:07.909 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 14:38:08.580 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 14:38:09.859 [info] > git ls-files --stage -- blog/2019-05-29-long-blog-post.md [69ms] +2025-07-10 14:38:09.865 [info] > git show --textconv :blog/2019-05-29-long-blog-post.md [78ms] +2025-07-10 14:38:09.931 [info] > git cat-file -s 26ffb1b1f65347e4f834542113930327a6ea5e79 [69ms] +2025-07-10 14:38:10.985 [info] > git ls-files --stage -- blog/2019-05-28-first-blog-post.md [60ms] +2025-07-10 14:38:10.988 [info] > git show --textconv :blog/2019-05-28-first-blog-post.md [66ms] +2025-07-10 14:38:11.041 [info] > git cat-file -s 02f3f81bd27b49aff20ffe18fcf62452df9e11ca [54ms] +2025-07-10 14:38:16.376 [info] > git ls-files --stage -- .gitignore [55ms] +2025-07-10 14:38:16.378 [info] > git show --textconv :.gitignore [59ms] +2025-07-10 14:38:16.435 [info] > git cat-file -s b68152863b898067904ae769c86d10935119de91 [57ms] +2025-07-10 14:38:17.888 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 14:38:25.389 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 14:38:26.179 [info] > git check-ignore -v -z --stdin [62ms] +2025-07-10 14:38:27.014 [info] > git show --textconv :src/components/HomepageFeatures/index.js [215ms] +2025-07-10 14:38:27.015 [info] > git ls-files --stage -- src/components/HomepageFeatures/index.js [214ms] +2025-07-10 14:38:27.139 [info] > git cat-file -s 06b51ccb27640a494756ed920a5faadb4e6ae881 [122ms] +2025-07-10 14:38:27.738 [info] > git show --textconv :src/components/HomepageFeatures/styles.module.css [148ms] +2025-07-10 14:38:27.746 [info] > git ls-files --stage -- src/components/HomepageFeatures/styles.module.css [146ms] +2025-07-10 14:38:27.826 [info] > git cat-file -s b248eb2e5dee2c37f58ab867ab87be47ef804386 [76ms] +2025-07-10 14:38:29.013 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 14:38:29.427 [info] > git ls-files --stage -- src/css/custom.css [60ms] +2025-07-10 14:38:29.430 [info] > git show --textconv :src/css/custom.css [66ms] +2025-07-10 14:38:29.490 [info] > git cat-file -s 2bc6a4cfdef4e06006b9a2501525889aa5e597c9 [60ms] +2025-07-10 14:38:30.847 [info] > git check-ignore -v -z --stdin [52ms] +2025-07-10 14:38:31.253 [info] > git ls-files --stage -- src/pages/index.js [61ms] +2025-07-10 14:38:31.255 [info] > git show --textconv :src/pages/index.js [66ms] +2025-07-10 14:38:31.312 [info] > git cat-file -s 06d0e9aa7adc72561e65657ec86eb051d4bb7aa5 [57ms] +2025-07-10 14:38:33.996 [info] > git show --textconv :src/pages/index.module.css [60ms] +2025-07-10 14:38:33.997 [info] > git ls-files --stage -- src/pages/index.module.css [59ms] +2025-07-10 14:38:34.054 [info] > git cat-file -s 9f71a5da775bd99379fa5c4d5bb73dc816d78bdd [54ms] +2025-07-10 14:38:35.005 [info] > git ls-files --stage -- src/pages/markdown-page.md [54ms] +2025-07-10 14:38:35.008 [info] > git show --textconv :src/pages/markdown-page.md [59ms] +2025-07-10 14:38:35.067 [info] > git cat-file -s 9756c5b6685a7fa67f41e11bc2cb6b990c2b12b2 [60ms] +2025-07-10 14:38:36.842 [info] > git ls-files --stage -- static/.nojekyll [56ms] +2025-07-10 14:38:36.844 [info] > git show --textconv :static/.nojekyll [60ms] +2025-07-10 14:38:36.899 [info] > git cat-file -s e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 [55ms] +2025-07-10 14:38:37.600 [info] > git check-ignore -v -z --stdin [55ms] +2025-07-10 14:38:43.910 [info] > git check-ignore -v -z --stdin [58ms] +2025-07-10 14:38:44.649 [info] > git check-ignore -v -z --stdin [51ms] +2025-07-10 14:38:45.818 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 14:38:46.579 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 14:38:51.255 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 14:39:03.350 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 14:39:03.951 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [62ms] +2025-07-10 14:39:03.954 [info] > git show --textconv :docs/hxzx/分销体系.md [68ms] +2025-07-10 14:39:04.012 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [58ms] +2025-07-10 14:39:04.907 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 14:39:12.444 [info] > git check-ignore -v -z --stdin [51ms] +2025-07-10 14:39:34.109 [info] > git show --textconv :docs/hxzx/登录 [59ms] +2025-07-10 14:39:34.112 [info] > git ls-files --stage -- docs/hxzx/登录 [61ms] +2025-07-10 14:39:34.170 [info] > git hash-object -t tree /dev/null [58ms] +2025-07-10 14:39:34.170 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:39:34.171 [info] > git hash-object -t tree /dev/null [56ms] +2025-07-10 14:39:34.171 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:39:34.409 [info] > git check-ignore -v -z --stdin [58ms] +2025-07-10 14:39:34.954 [info] > git config --get commit.template [56ms] +2025-07-10 14:39:34.955 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-10 14:39:35.012 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 14:39:35.014 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:39:35.067 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 14:39:35.126 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [54ms] +2025-07-10 14:39:35.612 [info] > git status -z -uall [543ms] +2025-07-10 14:39:49.916 [info] > git check-ignore -v -z --stdin [63ms] +2025-07-10 14:39:50.724 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 14:39:51.470 [info] > git check-ignore -v -z --stdin [52ms] +2025-07-10 14:39:54.736 [info] > git show --textconv :docs/bxgo/商品管理/_category_.json [62ms] +2025-07-10 14:39:54.781 [info] > git ls-files --stage -- docs/bxgo/商品管理/_category_.json [60ms] +2025-07-10 14:39:54.841 [info] > git cat-file -s 9038f98f8e26d700c7bb5eff9ebcfe83fb0e4c5d [58ms] +2025-07-10 14:39:55.892 [info] > git ls-files --stage -- docs/bxgo/商品管理/管理商品.md [56ms] +2025-07-10 14:39:55.895 [info] > git show --textconv :docs/bxgo/商品管理/管理商品.md [61ms] +2025-07-10 14:39:55.949 [info] > git cat-file -s 06c065d07716033ac3e709ab01d5a44a5228e505 [55ms] +2025-07-10 14:40:07.191 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/bxgo/商品管理/管理商品.md [63ms] +2025-07-10 14:40:24.458 [info] > git ls-files --stage -- docs/bxgo/1、登录系统.md [56ms] +2025-07-10 14:40:24.461 [info] > git show --textconv :docs/bxgo/1、登录系统.md [62ms] +2025-07-10 14:40:24.517 [info] > git cat-file -s dcc83ab8f7bf58fc8c20a32e8243a563edf86f19 [57ms] +2025-07-10 14:40:29.683 [info] > git ls-files --stage -- docs/bxgo/2、首页.md [54ms] +2025-07-10 14:40:29.686 [info] > git show --textconv :docs/bxgo/2、首页.md [59ms] +2025-07-10 14:40:29.739 [info] > git cat-file -s a509c1c2dcdba1ce221eaf48221cc8fd45302e30 [53ms] +2025-07-10 14:40:31.521 [info] > git ls-files --stage -- docs/bxgo/1、登录系统.md [72ms] +2025-07-10 14:40:31.524 [info] > git show --textconv :docs/bxgo/1、登录系统.md [77ms] +2025-07-10 14:40:31.581 [info] > git cat-file -s dcc83ab8f7bf58fc8c20a32e8243a563edf86f19 [58ms] +2025-07-10 14:40:33.959 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/bxgo/1、登录系统.md [59ms] +2025-07-10 14:41:05.450 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [74ms] +2025-07-10 14:41:05.452 [info] > git show --textconv :docs/hxzx/分销体系.md [80ms] +2025-07-10 14:41:05.505 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [53ms] +2025-07-10 14:41:17.154 [info] > git check-ignore -v -z --stdin [52ms] +2025-07-10 14:41:26.292 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [56ms] +2025-07-10 14:41:26.295 [info] > git show --textconv :docs/hxzx/分销体系.md [61ms] +2025-07-10 14:41:26.351 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [56ms] +2025-07-10 14:42:34.119 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [60ms] +2025-07-10 14:42:34.121 [info] > git show --textconv :docs/hxzx/分销体系.md [65ms] +2025-07-10 14:42:34.176 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [54ms] +2025-07-10 14:42:34.886 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 14:42:50.769 [info] > git show --textconv :docs/hxzx/分销体系 copy.md [63ms] +2025-07-10 14:42:50.770 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%88%86%E9%94%80%E4%BD%93%E7%B3%BB%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%88%86%E9%94%80%E4%BD%93%E7%B3%BB%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:42:50.772 [info] > git ls-files --stage -- docs/hxzx/分销体系 copy.md [62ms] +2025-07-10 14:42:50.772 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%88%86%E9%94%80%E4%BD%93%E7%B3%BB%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%88%86%E9%94%80%E4%BD%93%E7%B3%BB%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:42:51.098 [info] > git check-ignore -v -z --stdin [55ms] +2025-07-10 14:42:51.648 [info] > git symbolic-ref --short HEAD [61ms] +2025-07-10 14:42:51.651 [info] > git config --get commit.template [62ms] +2025-07-10 14:42:51.706 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 14:42:51.708 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:42:51.763 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 14:42:51.827 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 14:42:52.308 [info] > git status -z -uall [543ms] +2025-07-10 14:43:10.740 [info] > git config --get commit.template [57ms] +2025-07-10 14:43:10.741 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 14:43:10.799 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 14:43:10.802 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:43:10.856 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 14:43:10.917 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 14:43:11.396 [info] > git status -z -uall [537ms] +2025-07-10 14:43:12.850 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [56ms] +2025-07-10 14:43:12.852 [info] > git show --textconv :docs/hxzx/分销体系.md [62ms] +2025-07-10 14:43:12.906 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [54ms] +2025-07-10 14:43:58.471 [info] > git show --textconv :docs/hxzx/登录后台.md [56ms] +2025-07-10 14:43:58.471 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:43:58.472 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [56ms] +2025-07-10 14:43:58.472 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:43:58.539 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/登录后台.md [63ms] +2025-07-10 14:43:58.539 [info] fatal: no such path docs/hxzx/登录后台.md in 84e81a2b2f02798acbb48e1045be9ddac82d8632 +2025-07-10 14:43:58.773 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 14:43:59.322 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 14:43:59.324 [info] > git config --get commit.template [59ms] +2025-07-10 14:43:59.380 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 14:43:59.383 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:43:59.435 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 14:43:59.498 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 14:43:59.983 [info] > git status -z -uall [545ms] +2025-07-10 14:46:23.059 [info] > git ls-files --stage -- docs/bxgo/2、首页.md [65ms] +2025-07-10 14:46:23.061 [info] > git show --textconv :docs/bxgo/2、首页.md [71ms] +2025-07-10 14:46:23.117 [info] > git cat-file -s a509c1c2dcdba1ce221eaf48221cc8fd45302e30 [56ms] +2025-07-10 14:46:32.517 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [54ms] +2025-07-10 14:46:32.520 [info] > git show --textconv :docs/hxzx/分销体系.md [58ms] +2025-07-10 14:46:32.574 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [55ms] +2025-07-10 14:46:47.202 [info] > git show --textconv :docs/hxzx/登录后台 copy.md [61ms] +2025-07-10 14:46:47.202 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:46:47.203 [info] > git ls-files --stage -- docs/hxzx/登录后台 copy.md [60ms] +2025-07-10 14:46:47.203 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:46:47.528 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 14:46:48.086 [info] > git config --get commit.template [54ms] +2025-07-10 14:46:48.086 [info] > git symbolic-ref --short HEAD [56ms] +2025-07-10 14:46:48.141 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [53ms] +2025-07-10 14:46:48.143 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:46:48.196 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 14:46:48.257 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-10 14:46:48.741 [info] > git status -z -uall [543ms] +2025-07-10 14:47:00.328 [info] > git ls-files --stage -- docs/hxzx/.md [64ms] +2025-07-10 14:47:00.329 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:47:00.329 [info] > git show --textconv :docs/hxzx/.md [67ms] +2025-07-10 14:47:00.329 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:47:00.615 [info] > git check-ignore -v -z --stdin [58ms] +2025-07-10 14:47:08.700 [info] > git config --get commit.template [68ms] +2025-07-10 14:47:08.701 [info] > git symbolic-ref --short HEAD [73ms] +2025-07-10 14:47:08.763 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-10 14:47:08.765 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:47:08.821 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 14:47:08.887 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [61ms] +2025-07-10 14:47:09.361 [info] > git status -z -uall [538ms] +2025-07-10 14:47:29.364 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [61ms] +2025-07-10 14:47:29.367 [info] > git show --textconv :docs/hxzx/分销体系.md [65ms] +2025-07-10 14:47:29.427 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [60ms] +2025-07-10 14:47:29.590 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 14:47:30.198 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-10 14:47:30.201 [info] > git config --get commit.template [61ms] +2025-07-10 14:47:30.259 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [58ms] +2025-07-10 14:47:30.261 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:47:30.318 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 14:47:30.380 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-10 14:47:30.870 [info] > git status -z -uall [550ms] +2025-07-10 14:47:30.882 [info] > git show --textconv :docs/hxzx/账号权限管理.md [55ms] +2025-07-10 14:47:30.882 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:47:30.882 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [54ms] +2025-07-10 14:47:30.883 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:49:13.755 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [60ms] +2025-07-10 14:49:13.758 [info] > git show --textconv :docs/hxzx/分销体系.md [64ms] +2025-07-10 14:49:13.815 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [57ms] +2025-07-10 14:49:20.217 [info] > git ls-files --stage -- docs/bxgo/5、商城配置.md [57ms] +2025-07-10 14:49:20.219 [info] > git show --textconv :docs/bxgo/5、商城配置.md [62ms] +2025-07-10 14:49:20.277 [info] > git cat-file -s 223e98885dd122cd0ed2af571f4e3601f6ef77cc [58ms] +2025-07-10 14:49:32.001 [info] > git show --textconv :docs/hxzx/账号权限管理 copy.md [62ms] +2025-07-10 14:49:32.001 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:49:32.002 [info] > git ls-files --stage -- docs/hxzx/账号权限管理 copy.md [61ms] +2025-07-10 14:49:32.002 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:49:32.322 [info] > git check-ignore -v -z --stdin [60ms] +2025-07-10 14:49:32.873 [info] > git symbolic-ref --short HEAD [62ms] +2025-07-10 14:49:32.875 [info] > git config --get commit.template [61ms] +2025-07-10 14:49:32.929 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [54ms] +2025-07-10 14:49:32.931 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:49:32.985 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 14:49:33.049 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 14:49:33.531 [info] > git status -z -uall [544ms] +2025-07-10 14:49:42.934 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [57ms] +2025-07-10 14:49:42.938 [info] > git show --textconv :docs/hxzx/分销体系.md [64ms] +2025-07-10 14:49:42.992 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [54ms] +2025-07-10 14:49:58.754 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [60ms] +2025-07-10 14:49:58.757 [info] > git show --textconv :docs/hxzx/分销体系.md [65ms] +2025-07-10 14:49:58.814 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [57ms] +2025-07-10 14:50:03.256 [info] > git log --format=%H%n%aN%n%aE%n%at%n%ct%n%P%n%D%n%B -z -n51 --shortstat --follow -- c:\Users\zsw\Desktop\zsw-docs\docs\hxzx\账号权限管理 copy.md [60ms] +2025-07-10 14:50:12.168 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [57ms] +2025-07-10 14:50:12.171 [info] > git show --textconv :docs/hxzx/分销体系.md [63ms] +2025-07-10 14:50:12.225 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [54ms] +2025-07-10 14:54:59.273 [info] > git config --get commit.template [71ms] +2025-07-10 14:54:59.274 [info] > git symbolic-ref --short HEAD [75ms] +2025-07-10 14:54:59.337 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [61ms] +2025-07-10 14:54:59.339 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:54:59.392 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 14:54:59.457 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [61ms] +2025-07-10 14:54:59.947 [info] > git status -z -uall [554ms] +2025-07-10 14:56:24.258 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [59ms] +2025-07-10 14:56:24.259 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:56:24.259 [info] > git show --textconv :docs/hxzx/商品管理.md [61ms] +2025-07-10 14:56:24.259 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:56:24.322 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/商品管理.md [59ms] +2025-07-10 14:56:24.322 [info] fatal: no such path docs/hxzx/商品管理.md in 84e81a2b2f02798acbb48e1045be9ddac82d8632 +2025-07-10 14:56:24.540 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 14:56:25.092 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-10 14:56:25.096 [info] > git config --get commit.template [60ms] +2025-07-10 14:56:25.151 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 14:56:25.154 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:56:25.209 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 14:56:25.273 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 14:56:25.768 [info] > git status -z -uall [557ms] +2025-07-10 14:56:29.861 [info] > git show --textconv :docs/hxzx/分销体系.md [58ms] +2025-07-10 14:56:29.861 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [56ms] +2025-07-10 14:56:29.919 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [55ms] +2025-07-10 14:56:33.424 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 14:56:34.082 [info] > git check-ignore -v -z --stdin [68ms] +2025-07-10 14:56:38.411 [info] > git check-ignore -v -z --stdin [52ms] +2025-07-10 14:56:40.628 [info] > git check-ignore -v -z --stdin [81ms] +2025-07-10 14:57:04.890 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 14:57:07.717 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [58ms] +2025-07-10 14:57:07.720 [info] > git show --textconv :docs/hxzx/分销体系.md [62ms] +2025-07-10 14:57:07.773 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [53ms] +2025-07-10 14:57:09.254 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [65ms] +2025-07-10 14:57:25.790 [info] > git ls-files --stage -- docs/bxgo/4、订单管理.md [55ms] +2025-07-10 14:57:25.792 [info] > git show --textconv :docs/bxgo/4、订单管理.md [59ms] +2025-07-10 14:57:25.848 [info] > git cat-file -s 87f5fec7255d6e3c4cbf8d57dc95aab5774443af [56ms] +2025-07-10 14:57:28.937 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/bxgo/4、订单管理.md [84ms] +2025-07-10 14:57:32.769 [info] > git ls-files --stage -- docs/bxgo/5、商城配置.md [59ms] +2025-07-10 14:57:32.771 [info] > git show --textconv :docs/bxgo/5、商城配置.md [63ms] +2025-07-10 14:57:32.829 [info] > git cat-file -s 223e98885dd122cd0ed2af571f4e3601f6ef77cc [58ms] +2025-07-10 14:57:34.595 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [56ms] +2025-07-10 14:57:34.597 [info] > git show --textconv :docs/hxzx/分销体系.md [62ms] +2025-07-10 14:57:34.671 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [74ms] +2025-07-10 14:57:42.465 [info] > git show --textconv :docs/hxzx/商品管理 copy.md [64ms] +2025-07-10 14:57:42.466 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:57:42.466 [info] > git ls-files --stage -- docs/hxzx/商品管理 copy.md [62ms] +2025-07-10 14:57:42.466 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:57:42.790 [info] > git check-ignore -v -z --stdin [61ms] +2025-07-10 14:57:43.302 [info] > git config --get commit.template [56ms] +2025-07-10 14:57:43.303 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-10 14:57:43.360 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [54ms] +2025-07-10 14:57:43.362 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:57:43.414 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 14:57:43.477 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [58ms] +2025-07-10 14:57:43.943 [info] > git status -z -uall [528ms] +2025-07-10 14:58:28.186 [info] > git show --textconv :docs/hxzx/订单管理.md [62ms] +2025-07-10 14:58:28.187 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:58:28.187 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [60ms] +2025-07-10 14:58:28.187 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 14:58:28.249 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/订单管理.md [58ms] +2025-07-10 14:58:28.249 [info] fatal: no such path docs/hxzx/订单管理.md in 84e81a2b2f02798acbb48e1045be9ddac82d8632 +2025-07-10 14:58:28.475 [info] > git check-ignore -v -z --stdin [58ms] +2025-07-10 14:58:29.031 [info] > git config --get commit.template [55ms] +2025-07-10 14:58:29.032 [info] > git symbolic-ref --short HEAD [58ms] +2025-07-10 14:58:29.112 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [78ms] +2025-07-10 14:58:29.115 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 14:58:29.174 [info] > git rev-parse refs/remotes/origin/master [58ms] +2025-07-10 14:58:29.237 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 14:58:29.729 [info] > git status -z -uall [553ms] +2025-07-10 14:58:58.689 [info] > git ls-files --stage -- docs/bxgo/2、首页.md [56ms] +2025-07-10 14:58:58.692 [info] > git show --textconv :docs/bxgo/2、首页.md [61ms] +2025-07-10 14:58:58.747 [info] > git cat-file -s a509c1c2dcdba1ce221eaf48221cc8fd45302e30 [55ms] +2025-07-10 14:59:00.043 [info] > git ls-files --stage -- docs/bxgo/1、登录系统.md [59ms] +2025-07-10 14:59:00.046 [info] > git show --textconv :docs/bxgo/1、登录系统.md [64ms] +2025-07-10 14:59:00.135 [info] > git cat-file -s dcc83ab8f7bf58fc8c20a32e8243a563edf86f19 [89ms] +2025-07-10 14:59:02.694 [info] > git ls-files --stage -- docs/bxgo/2、首页.md [60ms] +2025-07-10 14:59:02.697 [info] > git show --textconv :docs/bxgo/2、首页.md [65ms] +2025-07-10 14:59:02.752 [info] > git cat-file -s a509c1c2dcdba1ce221eaf48221cc8fd45302e30 [55ms] +2025-07-10 14:59:03.265 [info] > git show --textconv :docs/bxgo/4、订单管理.md [66ms] +2025-07-10 14:59:03.267 [info] > git ls-files --stage -- docs/bxgo/4、订单管理.md [65ms] +2025-07-10 14:59:03.333 [info] > git cat-file -s 87f5fec7255d6e3c4cbf8d57dc95aab5774443af [64ms] +2025-07-10 14:59:03.892 [info] > git ls-files --stage -- docs/bxgo/5、商城配置.md [59ms] +2025-07-10 14:59:03.896 [info] > git show --textconv :docs/bxgo/5、商城配置.md [64ms] +2025-07-10 14:59:03.955 [info] > git cat-file -s 223e98885dd122cd0ed2af571f4e3601f6ef77cc [59ms] +2025-07-10 14:59:05.452 [info] > git ls-files --stage -- docs/bxgo/4、订单管理.md [56ms] +2025-07-10 14:59:05.455 [info] > git show --textconv :docs/bxgo/4、订单管理.md [61ms] +2025-07-10 14:59:05.513 [info] > git cat-file -s 87f5fec7255d6e3c4cbf8d57dc95aab5774443af [59ms] +2025-07-10 14:59:06.311 [info] > git show --textconv :docs/bxgo/2、首页.md [63ms] +2025-07-10 14:59:06.311 [info] > git ls-files --stage -- docs/bxgo/2、首页.md [61ms] +2025-07-10 14:59:06.374 [info] > git cat-file -s a509c1c2dcdba1ce221eaf48221cc8fd45302e30 [61ms] +2025-07-10 14:59:07.394 [info] > git ls-files --stage -- docs/bxgo/1、登录系统.md [59ms] +2025-07-10 14:59:07.397 [info] > git show --textconv :docs/bxgo/1、登录系统.md [65ms] +2025-07-10 14:59:07.458 [info] > git cat-file -s dcc83ab8f7bf58fc8c20a32e8243a563edf86f19 [61ms] +2025-07-10 14:59:08.020 [info] > git ls-files --stage -- docs/bxgo/商品管理/同城配送.md [57ms] +2025-07-10 14:59:08.023 [info] > git show --textconv :docs/bxgo/商品管理/同城配送.md [61ms] +2025-07-10 14:59:08.082 [info] > git cat-file -s 1ff277bccc5f1e6e4bc84d602c5604b4d05fdcb3 [60ms] +2025-07-10 14:59:08.730 [info] > git ls-files --stage -- docs/bxgo/商品管理/商品规格.md [63ms] +2025-07-10 14:59:08.733 [info] > git show --textconv :docs/bxgo/商品管理/商品规格.md [69ms] +2025-07-10 14:59:08.804 [info] > git cat-file -s 4392859e74c4265f5c6ccb727297896c15f5de37 [72ms] +2025-07-10 14:59:09.845 [info] > git ls-files --stage -- docs/bxgo/商品管理/商品分类.md [61ms] +2025-07-10 14:59:09.847 [info] > git show --textconv :docs/bxgo/商品管理/商品分类.md [66ms] +2025-07-10 14:59:09.905 [info] > git cat-file -s 08411d866a8ce2f6629676b0757a2b343aaae83a [57ms] +2025-07-10 14:59:11.184 [info] > git ls-files --stage -- docs/bxgo/商品管理/管理商品.md [66ms] +2025-07-10 14:59:11.186 [info] > git show --textconv :docs/bxgo/商品管理/管理商品.md [70ms] +2025-07-10 14:59:11.240 [info] > git cat-file -s 06c065d07716033ac3e709ab01d5a44a5228e505 [53ms] +2025-07-10 14:59:12.970 [info] > git ls-files --stage -- docs/bxgo/商品管理/商品规格.md [55ms] +2025-07-10 14:59:12.972 [info] > git show --textconv :docs/bxgo/商品管理/商品规格.md [60ms] +2025-07-10 14:59:13.029 [info] > git cat-file -s 4392859e74c4265f5c6ccb727297896c15f5de37 [56ms] +2025-07-10 14:59:13.839 [info] > git show --textconv :docs/bxgo/商品管理/同城配送.md [58ms] +2025-07-10 14:59:13.840 [info] > git ls-files --stage -- docs/bxgo/商品管理/同城配送.md [56ms] +2025-07-10 14:59:13.897 [info] > git cat-file -s 1ff277bccc5f1e6e4bc84d602c5604b4d05fdcb3 [55ms] +2025-07-10 14:59:15.105 [info] > git ls-files --stage -- docs/bxgo/商品管理/运费模版.md [55ms] +2025-07-10 14:59:15.107 [info] > git show --textconv :docs/bxgo/商品管理/运费模版.md [59ms] +2025-07-10 14:59:15.162 [info] > git cat-file -s 45bfde72ad5db666f96b345c16b6fb9a77a09663 [55ms] +2025-07-10 14:59:20.745 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [57ms] +2025-07-10 14:59:20.748 [info] > git show --textconv :docs/hxzx/分销体系.md [62ms] +2025-07-10 14:59:20.801 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [54ms] +2025-07-10 14:59:22.234 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [54ms] +2025-07-10 14:59:22.237 [info] > git show --textconv :docs/hxzx/分销体系.md [59ms] +2025-07-10 14:59:22.289 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [53ms] +2025-07-10 15:00:06.610 [info] > git ls-files --stage -- docs/hxzx/账号权限管理 copy.md [57ms] +2025-07-10 15:00:06.610 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 15:00:06.610 [info] > git show --textconv :docs/hxzx/账号权限管理 copy.md [60ms] +2025-07-10 15:00:06.611 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 15:00:07.462 [info] > git config --get commit.template [55ms] +2025-07-10 15:00:07.463 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-10 15:00:07.518 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [53ms] +2025-07-10 15:00:07.520 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:00:07.572 [info] > git rev-parse refs/remotes/origin/master [51ms] +2025-07-10 15:00:07.631 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 15:00:08.099 [info] > git status -z -uall [526ms] +2025-07-10 15:01:55.826 [info] > git check-ignore -v -z --stdin [61ms] +2025-07-10 15:01:56.330 [info] > git show --textconv :docs/hxzx/营销管理.md [59ms] +2025-07-10 15:01:56.330 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 15:01:56.331 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [57ms] +2025-07-10 15:01:56.331 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 15:01:56.395 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/营销管理.md [61ms] +2025-07-10 15:01:56.395 [info] fatal: no such path docs/hxzx/营销管理.md in 84e81a2b2f02798acbb48e1045be9ddac82d8632 +2025-07-10 15:01:56.400 [info] > git symbolic-ref --short HEAD [58ms] +2025-07-10 15:01:56.403 [info] > git config --get commit.template [58ms] +2025-07-10 15:01:56.460 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 15:01:56.462 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:01:56.521 [info] > git rev-parse refs/remotes/origin/master [59ms] +2025-07-10 15:01:56.584 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 15:01:57.103 [info] > git status -z -uall [580ms] +2025-07-10 15:01:57.150 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [87ms] +2025-07-10 15:01:57.150 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 15:01:57.151 [info] > git show --textconv :docs/hxzx/营销管理.md [89ms] +2025-07-10 15:01:57.151 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 15:02:52.900 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 15:03:00.345 [info] > git ls-files --stage -- docs/bxgo/商品管理/管理商品.md [57ms] +2025-07-10 15:03:00.348 [info] > git show --textconv :docs/bxgo/商品管理/管理商品.md [62ms] +2025-07-10 15:03:00.401 [info] > git cat-file -s 06c065d07716033ac3e709ab01d5a44a5228e505 [54ms] +2025-07-10 15:04:35.132 [info] > git ls-files --stage -- docs/bxgo/4、订单管理.md [53ms] +2025-07-10 15:04:35.134 [info] > git show --textconv :docs/bxgo/4、订单管理.md [59ms] +2025-07-10 15:04:35.193 [info] > git cat-file -s 87f5fec7255d6e3c4cbf8d57dc95aab5774443af [59ms] +2025-07-10 15:05:38.006 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 15:05:45.500 [info] > git ls-files --stage -- docs/bxgo/商品管理/同城配送.md [61ms] +2025-07-10 15:05:45.503 [info] > git show --textconv :docs/bxgo/商品管理/同城配送.md [67ms] +2025-07-10 15:05:45.564 [info] > git cat-file -s 1ff277bccc5f1e6e4bc84d602c5604b4d05fdcb3 [61ms] +2025-07-10 15:05:46.781 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/bxgo/商品管理/同城配送.md [66ms] +2025-07-10 15:06:45.038 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 15:06:45.696 [info] > git check-ignore -v -z --stdin [55ms] +2025-07-10 15:14:38.745 [info] > git show --textconv :docs/app/好生意App/扫码核销.md [62ms] +2025-07-10 15:14:38.745 [info] > git ls-files --stage -- docs/app/好生意App/扫码核销.md [59ms] +2025-07-10 15:14:38.824 [info] > git cat-file -s 9f9921c2c2f2cb8daffae7dba7fccc28ef65cfd5 [76ms] +2025-07-10 15:15:33.936 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/app/好生意App/扫码核销.md [57ms] +2025-07-10 15:17:37.220 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 15:17:37.778 [info] > git config --get commit.template [55ms] +2025-07-10 15:17:37.779 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-10 15:17:37.836 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 15:17:37.838 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:17:37.893 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 15:17:37.953 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-10 15:17:38.426 [info] > git status -z -uall [531ms] +2025-07-10 15:17:52.050 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 15:17:52.554 [info] > git config --get commit.template [57ms] +2025-07-10 15:17:52.555 [info] > git symbolic-ref --short HEAD [61ms] +2025-07-10 15:17:52.615 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 15:17:52.618 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:17:52.674 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 15:17:52.738 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 15:17:53.218 [info] > git status -z -uall [541ms] +2025-07-10 15:18:20.580 [info] > git check-ignore -v -z --stdin [60ms] +2025-07-10 15:18:21.126 [info] > git symbolic-ref --short HEAD [78ms] +2025-07-10 15:18:21.129 [info] > git config --get commit.template [78ms] +2025-07-10 15:18:21.195 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [67ms] +2025-07-10 15:18:21.198 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:18:21.252 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 15:18:21.316 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 15:18:21.795 [info] > git status -z -uall [540ms] +2025-07-10 15:22:07.283 [info] > git check-ignore -v -z --stdin [55ms] +2025-07-10 15:22:14.417 [info] > git ls-files --stage -- docs/bxgo/1、登录系统.md [57ms] +2025-07-10 15:22:14.420 [info] > git show --textconv :docs/bxgo/1、登录系统.md [63ms] +2025-07-10 15:22:14.482 [info] > git cat-file -s dcc83ab8f7bf58fc8c20a32e8243a563edf86f19 [62ms] +2025-07-10 15:22:15.272 [info] > git ls-files --stage -- docs/bxgo/2、首页.md [60ms] +2025-07-10 15:22:15.275 [info] > git show --textconv :docs/bxgo/2、首页.md [66ms] +2025-07-10 15:22:15.331 [info] > git cat-file -s a509c1c2dcdba1ce221eaf48221cc8fd45302e30 [57ms] +2025-07-10 15:22:15.784 [info] > git ls-files --stage -- docs/bxgo/4、订单管理.md [56ms] +2025-07-10 15:22:15.787 [info] > git show --textconv :docs/bxgo/4、订单管理.md [62ms] +2025-07-10 15:22:15.841 [info] > git cat-file -s 87f5fec7255d6e3c4cbf8d57dc95aab5774443af [54ms] +2025-07-10 15:22:16.185 [info] > git show --textconv :docs/bxgo/5、商城配置.md [60ms] +2025-07-10 15:22:16.186 [info] > git ls-files --stage -- docs/bxgo/5、商城配置.md [58ms] +2025-07-10 15:22:16.243 [info] > git cat-file -s 223e98885dd122cd0ed2af571f4e3601f6ef77cc [55ms] +2025-07-10 15:22:18.100 [info] > git ls-files --stage -- docs/bxgo/4、订单管理.md [55ms] +2025-07-10 15:22:18.102 [info] > git show --textconv :docs/bxgo/4、订单管理.md [60ms] +2025-07-10 15:22:18.158 [info] > git cat-file -s 87f5fec7255d6e3c4cbf8d57dc95aab5774443af [55ms] +2025-07-10 15:22:19.548 [info] > git ls-files --stage -- docs/bxgo/2、首页.md [55ms] +2025-07-10 15:22:19.551 [info] > git show --textconv :docs/bxgo/2、首页.md [59ms] +2025-07-10 15:22:19.605 [info] > git cat-file -s a509c1c2dcdba1ce221eaf48221cc8fd45302e30 [55ms] +2025-07-10 15:22:23.212 [info] > git ls-files --stage -- docs/bxgo/4、订单管理.md [56ms] +2025-07-10 15:22:23.214 [info] > git show --textconv :docs/bxgo/4、订单管理.md [61ms] +2025-07-10 15:22:23.269 [info] > git cat-file -s 87f5fec7255d6e3c4cbf8d57dc95aab5774443af [55ms] +2025-07-10 15:22:23.634 [info] > git ls-files --stage -- docs/bxgo/5、商城配置.md [56ms] +2025-07-10 15:22:23.636 [info] > git show --textconv :docs/bxgo/5、商城配置.md [61ms] +2025-07-10 15:22:23.693 [info] > git cat-file -s 223e98885dd122cd0ed2af571f4e3601f6ef77cc [56ms] +2025-07-10 15:22:24.300 [info] > git ls-files --stage -- docs/bxgo/4、订单管理.md [56ms] +2025-07-10 15:22:24.303 [info] > git show --textconv :docs/bxgo/4、订单管理.md [61ms] +2025-07-10 15:22:24.357 [info] > git cat-file -s 87f5fec7255d6e3c4cbf8d57dc95aab5774443af [55ms] +2025-07-10 15:22:24.700 [info] > git ls-files --stage -- docs/bxgo/5、商城配置.md [58ms] +2025-07-10 15:22:24.703 [info] > git show --textconv :docs/bxgo/5、商城配置.md [63ms] +2025-07-10 15:22:24.760 [info] > git cat-file -s 223e98885dd122cd0ed2af571f4e3601f6ef77cc [57ms] +2025-07-10 15:22:25.083 [info] > git ls-files --stage -- docs/bxgo/4、订单管理.md [56ms] +2025-07-10 15:22:25.086 [info] > git show --textconv :docs/bxgo/4、订单管理.md [61ms] +2025-07-10 15:22:25.141 [info] > git cat-file -s 87f5fec7255d6e3c4cbf8d57dc95aab5774443af [54ms] +2025-07-10 15:22:25.451 [info] > git ls-files --stage -- docs/bxgo/2、首页.md [57ms] +2025-07-10 15:22:25.454 [info] > git show --textconv :docs/bxgo/2、首页.md [63ms] +2025-07-10 15:22:25.510 [info] > git cat-file -s a509c1c2dcdba1ce221eaf48221cc8fd45302e30 [56ms] +2025-07-10 15:22:25.999 [info] > git ls-files --stage -- docs/bxgo/1、登录系统.md [71ms] +2025-07-10 15:22:26.001 [info] > git show --textconv :docs/bxgo/1、登录系统.md [76ms] +2025-07-10 15:22:26.056 [info] > git cat-file -s dcc83ab8f7bf58fc8c20a32e8243a563edf86f19 [55ms] +2025-07-10 15:22:29.818 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [55ms] +2025-07-10 15:22:29.822 [info] > git show --textconv :docs/hxzx/分销体系.md [61ms] +2025-07-10 15:22:29.876 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [55ms] +2025-07-10 15:22:32.769 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [55ms] +2025-07-10 15:22:32.772 [info] > git show --textconv :docs/hxzx/分销体系.md [61ms] +2025-07-10 15:22:32.826 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [54ms] +2025-07-10 15:23:01.438 [info] > git log --format=%H%n%aN%n%aE%n%at%n%ct%n%P%n%D%n%B -z --shortstat --diff-merges=first-parent -n50 --skip=0 --topo-order --decorate=full --stdin [1066ms] +2025-07-10 15:23:59.178 [info] > git log --format=%H%n%aN%n%aE%n%at%n%ct%n%P%n%D%n%B -z --shortstat --diff-merges=first-parent -n50 --skip=0 --topo-order --decorate=full --stdin [1080ms] +2025-07-10 15:24:01.626 [info] > git log --format=%H%n%aN%n%aE%n%at%n%ct%n%P%n%D%n%B -z --shortstat --diff-merges=first-parent -n50 --skip=0 --topo-order --decorate=full --stdin [1062ms] +2025-07-10 15:24:12.754 [info] > git log --format=%H%n%aN%n%aE%n%at%n%ct%n%P%n%D%n%B -z --shortstat --diff-merges=first-parent -n50 --skip=0 --topo-order --decorate=full --stdin [1049ms] +2025-07-10 15:24:28.082 [info] > git diff-tree -r --name-status -z --diff-filter=ADMR --find-renames=50% 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 84e81a2b2f02798acbb48e1045be9ddac82d8632 [55ms] +2025-07-10 15:24:28.650 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 15:24:29.158 [info] > git show --textconv 84e81a2b2f02798acbb48e1045be9ddac82d8632:docs/hxzx/分销体系.md [100ms] +2025-07-10 15:24:29.158 [info] > git show --textconv 3091e1b89a47e6798a989bdbbd067c4b5c5d8178:docs/hxzx/分销体系.md [102ms] +2025-07-10 15:24:29.164 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [104ms] +2025-07-10 15:24:29.165 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [101ms] +2025-07-10 15:24:29.659 [info] > git check-ignore -v -z --stdin [81ms] +2025-07-10 15:24:34.302 [info] > git diff-tree -r --name-status -z --diff-filter=ADMR --find-renames=50% 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 84e81a2b2f02798acbb48e1045be9ddac82d8632 [59ms] +2025-07-10 15:24:34.368 [info] > git show --textconv 3091e1b89a47e6798a989bdbbd067c4b5c5d8178:docs/hxzx/分销体系.md [61ms] +2025-07-10 15:24:34.369 [info] > git show --textconv 84e81a2b2f02798acbb48e1045be9ddac82d8632:docs/hxzx/分销体系.md [61ms] +2025-07-10 15:24:34.374 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 15:24:34.376 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [63ms] +2025-07-10 15:24:34.808 [info] > git check-ignore -v -z --stdin [52ms] +2025-07-10 15:24:58.126 [info] > git add -A -- docs/hxzx/登录后台.md [521ms] +2025-07-10 15:24:58.201 [info] > git symbolic-ref --short HEAD [72ms] +2025-07-10 15:24:58.204 [info] > git config --get commit.template [73ms] +2025-07-10 15:24:58.267 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [63ms] +2025-07-10 15:24:58.269 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:24:58.324 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 15:24:58.386 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 15:24:58.390 [info] > git status -z -uall [63ms] +2025-07-10 15:24:58.508 [info] > git show --textconv :docs/hxzx/登录后台.md [62ms] +2025-07-10 15:24:58.511 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [62ms] +2025-07-10 15:24:58.511 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:24:58.512 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [62ms] +2025-07-10 15:24:58.515 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [61ms] +2025-07-10 15:24:58.515 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:24:58.567 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [53ms] +2025-07-10 15:24:59.438 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [64ms] +2025-07-10 15:24:59.439 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 15:24:59.439 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [60ms] +2025-07-10 15:24:59.502 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [61ms] +2025-07-10 15:24:59.505 [info] > git show --textconv 3091e1b89a47e6798a989bdbbd067c4b5c5d8178:docs/hxzx/分销体系.md [62ms] +2025-07-10 15:24:59.507 [info] > git show --textconv 84e81a2b2f02798acbb48e1045be9ddac82d8632:docs/hxzx/分销体系.md [60ms] +2025-07-10 15:24:59.559 [info] > git show --textconv :docs/hxzx/登录后台.md [54ms] +2025-07-10 15:25:00.446 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-10 15:25:00.449 [info] > git config --get commit.template [57ms] +2025-07-10 15:25:00.512 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [63ms] +2025-07-10 15:25:00.514 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:25:00.567 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 15:25:00.629 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 15:25:00.632 [info] > git status -z -uall [63ms] +2025-07-10 15:25:03.956 [info] > git add -A -- docs/hxzx/订单管理.md [57ms] +2025-07-10 15:25:04.013 [info] > git symbolic-ref --short HEAD [55ms] +2025-07-10 15:25:04.016 [info] > git config --get commit.template [56ms] +2025-07-10 15:25:04.068 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [53ms] +2025-07-10 15:25:04.071 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:25:04.125 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 15:25:04.184 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [54ms] +2025-07-10 15:25:04.187 [info] > git status -z -uall [61ms] +2025-07-10 15:25:04.341 [info] > git show --textconv :docs/hxzx/订单管理.md [62ms] +2025-07-10 15:25:04.345 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [61ms] +2025-07-10 15:25:04.347 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [65ms] +2025-07-10 15:25:04.347 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:25:04.348 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [61ms] +2025-07-10 15:25:04.348 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:25:04.400 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [53ms] +2025-07-10 15:25:05.216 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [60ms] +2025-07-10 15:25:05.216 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [59ms] +2025-07-10 15:25:05.220 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [60ms] +2025-07-10 15:25:05.279 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [57ms] +2025-07-10 15:25:05.282 [info] > git show --textconv 3091e1b89a47e6798a989bdbbd067c4b5c5d8178:docs/hxzx/分销体系.md [63ms] +2025-07-10 15:25:05.283 [info] > git show --textconv 84e81a2b2f02798acbb48e1045be9ddac82d8632:docs/hxzx/分销体系.md [58ms] +2025-07-10 15:25:05.338 [info] > git show --textconv :docs/hxzx/订单管理.md [57ms] +2025-07-10 15:25:05.891 [info] > git add -A -- docs/hxzx/商品管理.md [57ms] +2025-07-10 15:25:05.948 [info] > git config --get commit.template [53ms] +2025-07-10 15:25:05.949 [info] > git symbolic-ref --short HEAD [55ms] +2025-07-10 15:25:06.005 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [53ms] +2025-07-10 15:25:06.007 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:25:06.061 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 15:25:06.124 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 15:25:06.126 [info] > git status -z -uall [62ms] +2025-07-10 15:25:06.257 [info] > git config --get commit.template [86ms] +2025-07-10 15:25:06.258 [info] > git symbolic-ref --short HEAD [88ms] +2025-07-10 15:25:06.320 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-10 15:25:06.322 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:25:06.377 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 15:25:06.440 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 15:25:06.443 [info] > git status -z -uall [63ms] +2025-07-10 15:25:07.138 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [61ms] +2025-07-10 15:25:07.138 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [60ms] +2025-07-10 15:25:07.140 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 15:25:07.199 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [58ms] +2025-07-10 15:25:07.202 [info] > git show --textconv 84e81a2b2f02798acbb48e1045be9ddac82d8632:docs/hxzx/分销体系.md [59ms] +2025-07-10 15:25:07.204 [info] > git show --textconv 3091e1b89a47e6798a989bdbbd067c4b5c5d8178:docs/hxzx/分销体系.md [59ms] +2025-07-10 15:25:07.260 [info] > git show --textconv :docs/hxzx/订单管理.md [57ms] +2025-07-10 15:25:08.261 [info] > git add -A -- docs/hxzx/营销管理.md [59ms] +2025-07-10 15:25:08.318 [info] > git symbolic-ref --short HEAD [55ms] +2025-07-10 15:25:08.321 [info] > git config --get commit.template [56ms] +2025-07-10 15:25:08.374 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [53ms] +2025-07-10 15:25:08.377 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:25:08.436 [info] > git rev-parse refs/remotes/origin/master [59ms] +2025-07-10 15:25:08.498 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 15:25:08.501 [info] > git status -z -uall [62ms] +2025-07-10 15:25:09.625 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 15:25:09.629 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [60ms] +2025-07-10 15:25:09.631 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [65ms] +2025-07-10 15:25:09.691 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [59ms] +2025-07-10 15:25:09.691 [info] > git show --textconv 3091e1b89a47e6798a989bdbbd067c4b5c5d8178:docs/hxzx/分销体系.md [63ms] +2025-07-10 15:25:09.695 [info] > git show --textconv 84e81a2b2f02798acbb48e1045be9ddac82d8632:docs/hxzx/分销体系.md [61ms] +2025-07-10 15:25:09.780 [info] > git show --textconv :docs/hxzx/订单管理.md [86ms] +2025-07-10 15:25:10.283 [info] > git add -A -- docs/hxzx/账号权限管理.md [57ms] +2025-07-10 15:25:10.339 [info] > git symbolic-ref --short HEAD [54ms] +2025-07-10 15:25:10.342 [info] > git config --get commit.template [54ms] +2025-07-10 15:25:10.395 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [53ms] +2025-07-10 15:25:10.397 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:25:10.451 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 15:25:10.509 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [53ms] +2025-07-10 15:25:10.512 [info] > git status -z -uall [59ms] +2025-07-10 15:25:11.512 [info] > git symbolic-ref --short HEAD [64ms] +2025-07-10 15:25:11.515 [info] > git config --get commit.template [66ms] +2025-07-10 15:25:11.530 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 15:25:11.534 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [65ms] +2025-07-10 15:25:11.537 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [70ms] +2025-07-10 15:25:11.574 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-10 15:25:11.576 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:25:11.593 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [56ms] +2025-07-10 15:25:11.596 [info] > git show --textconv 3091e1b89a47e6798a989bdbbd067c4b5c5d8178:docs/hxzx/分销体系.md [62ms] +2025-07-10 15:25:11.597 [info] > git show --textconv 84e81a2b2f02798acbb48e1045be9ddac82d8632:docs/hxzx/分销体系.md [58ms] +2025-07-10 15:25:11.628 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 15:25:11.649 [info] > git show --textconv :docs/hxzx/订单管理.md [54ms] +2025-07-10 15:25:11.686 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [54ms] +2025-07-10 15:25:11.689 [info] > git status -z -uall [58ms] +2025-07-10 15:25:14.964 [info] > git add -A -- docs/hxzx/image/分销体系/image-shouhou.png [61ms] +2025-07-10 15:25:15.022 [info] > git config --get commit.template [53ms] +2025-07-10 15:25:15.022 [info] > git symbolic-ref --short HEAD [56ms] +2025-07-10 15:25:15.078 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [53ms] +2025-07-10 15:25:15.080 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:25:15.136 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 15:25:15.195 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 15:25:15.198 [info] > git status -z -uall [61ms] +2025-07-10 15:25:16.200 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [58ms] +2025-07-10 15:25:16.203 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [60ms] +2025-07-10 15:25:16.206 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [60ms] +2025-07-10 15:25:16.274 [info] > git show --textconv 3091e1b89a47e6798a989bdbbd067c4b5c5d8178:docs/hxzx/分销体系.md [71ms] +2025-07-10 15:25:16.275 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [67ms] +2025-07-10 15:25:16.279 [info] > git show --textconv 84e81a2b2f02798acbb48e1045be9ddac82d8632:docs/hxzx/分销体系.md [72ms] +2025-07-10 15:25:16.313 [info] > git show --textconv :docs/hxzx/商品管理.md [68ms] +2025-07-10 15:25:16.317 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [68ms] +2025-07-10 15:25:16.335 [info] > git show --textconv :docs/hxzx/订单管理.md [57ms] +2025-07-10 15:25:16.373 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [54ms] +2025-07-10 15:25:16.824 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 15:25:17.048 [info] > git show --textconv :docs/hxzx/登录后台.md [96ms] +2025-07-10 15:25:17.051 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [96ms] +2025-07-10 15:25:17.105 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [52ms] +2025-07-10 15:25:17.203 [info] > git symbolic-ref --short HEAD [58ms] +2025-07-10 15:25:17.205 [info] > git config --get commit.template [58ms] +2025-07-10 15:25:17.262 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 15:25:17.264 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:25:17.321 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 15:25:17.383 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [58ms] +2025-07-10 15:25:17.387 [info] > git status -z -uall [63ms] +2025-07-10 15:25:17.530 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 15:25:21.363 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [71ms] +2025-07-10 15:25:21.365 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 15:25:21.365 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [72ms] +2025-07-10 15:25:21.423 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [59ms] +2025-07-10 15:25:34.426 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/image-shouhou.png [64ms] +2025-07-10 15:25:34.429 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/image-shouhou.png [64ms] +2025-07-10 15:25:34.490 [info] > git cat-file -s 6dfb5513bd110e562b0efdc94beb54652633947d [62ms] +2025-07-10 15:25:34.493 [info] > git cat-file -s 6dfb5513bd110e562b0efdc94beb54652633947d [61ms] +2025-07-10 15:25:34.592 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/image-shouhou.png [54ms] +2025-07-10 15:25:34.594 [info] > git show --textconv :docs/hxzx/image/分销体系/image-shouhou.png [59ms] +2025-07-10 15:25:34.646 [info] > git cat-file -s 6dfb5513bd110e562b0efdc94beb54652633947d [52ms] +2025-07-10 15:25:34.925 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 15:26:04.404 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [65ms] +2025-07-10 15:26:04.405 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [68ms] +2025-07-10 15:26:27.858 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 15:26:27.861 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 15:26:41.913 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [69ms] +2025-07-10 15:26:41.913 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [73ms] +2025-07-10 15:26:56.605 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [68ms] +2025-07-10 15:26:56.605 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [65ms] +2025-07-10 15:27:02.844 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [70ms] +2025-07-10 15:27:02.846 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 15:27:03.540 [info] > git check-ignore -v -z --stdin [58ms] +2025-07-10 15:27:04.121 [info] > git symbolic-ref --short HEAD [74ms] +2025-07-10 15:27:04.124 [info] > git config --get commit.template [74ms] +2025-07-10 15:27:04.179 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 15:27:04.182 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:27:04.238 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 15:27:04.303 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [60ms] +2025-07-10 15:27:04.304 [info] > git status -z -uall [64ms] +2025-07-10 15:27:14.336 [info] > git show --textconv :docs/hxzx/登录后台.md [61ms] +2025-07-10 15:27:14.340 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [62ms] +2025-07-10 15:27:14.340 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:27:14.341 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [61ms] +2025-07-10 15:27:14.346 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [62ms] +2025-07-10 15:27:14.346 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:27:14.397 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [54ms] +2025-07-10 15:27:23.868 [info] > git show --textconv :docs/hxzx/订单管理.md [62ms] +2025-07-10 15:27:23.871 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [63ms] +2025-07-10 15:27:23.871 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:27:23.874 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [63ms] +2025-07-10 15:27:23.877 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [64ms] +2025-07-10 15:27:23.877 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:27:23.933 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [57ms] +2025-07-10 15:27:55.408 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [74ms] +2025-07-10 15:27:55.410 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [73ms] +2025-07-10 15:28:03.112 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [64ms] +2025-07-10 15:28:03.113 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 15:28:16.888 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [66ms] +2025-07-10 15:28:16.889 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [63ms] +2025-07-10 15:28:42.629 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 15:28:42.630 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [65ms] +2025-07-10 15:28:51.666 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [65ms] +2025-07-10 15:28:51.666 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [63ms] +2025-07-10 15:28:54.951 [info] > git show --textconv :docs/hxzx/订单管理.md [62ms] +2025-07-10 15:28:54.955 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [64ms] +2025-07-10 15:28:54.955 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:28:54.956 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [62ms] +2025-07-10 15:28:54.959 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [62ms] +2025-07-10 15:28:54.959 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:28:55.014 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [56ms] +2025-07-10 15:28:57.350 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 15:28:57.905 [info] > git symbolic-ref --short HEAD [66ms] +2025-07-10 15:28:57.907 [info] > git config --get commit.template [66ms] +2025-07-10 15:28:57.965 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 15:28:57.967 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:28:58.021 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 15:28:58.087 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [61ms] +2025-07-10 15:28:58.089 [info] > git status -z -uall [65ms] +2025-07-10 15:29:18.728 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [56ms] +2025-07-10 15:29:18.731 [info] > git show --textconv :docs/hxzx/分销体系.md [61ms] +2025-07-10 15:29:18.785 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [54ms] +2025-07-10 15:29:24.142 [info] > git ls-files --stage -- docs/bxgo/4、订单管理.md [55ms] +2025-07-10 15:29:24.145 [info] > git show --textconv :docs/bxgo/4、订单管理.md [60ms] +2025-07-10 15:29:24.201 [info] > git cat-file -s 87f5fec7255d6e3c4cbf8d57dc95aab5774443af [57ms] +2025-07-10 15:29:42.842 [info] > git show --textconv :docs/hxzx/登录后台.md [70ms] +2025-07-10 15:29:42.848 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [70ms] +2025-07-10 15:29:42.851 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [76ms] +2025-07-10 15:29:42.851 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:29:42.853 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [73ms] +2025-07-10 15:29:42.853 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:29:42.907 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [56ms] +2025-07-10 15:29:45.365 [info] > git show --textconv :docs/hxzx/订单管理.md [64ms] +2025-07-10 15:29:45.366 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [61ms] +2025-07-10 15:29:45.366 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:29:45.369 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [62ms] +2025-07-10 15:29:45.371 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [63ms] +2025-07-10 15:29:45.371 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:29:45.425 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [54ms] +2025-07-10 15:30:04.656 [info] > git ls-files --stage -- docs/bxgo/2、首页.md [53ms] +2025-07-10 15:30:04.659 [info] > git show --textconv :docs/bxgo/2、首页.md [58ms] +2025-07-10 15:30:04.714 [info] > git cat-file -s a509c1c2dcdba1ce221eaf48221cc8fd45302e30 [55ms] +2025-07-10 15:30:05.462 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/bxgo/2、首页.md [58ms] +2025-07-10 15:30:19.842 [info] > git ls-files --stage -- docs/bxgo/1、登录系统.md [57ms] +2025-07-10 15:30:19.844 [info] > git show --textconv :docs/bxgo/1、登录系统.md [61ms] +2025-07-10 15:30:19.906 [info] > git cat-file -s dcc83ab8f7bf58fc8c20a32e8243a563edf86f19 [62ms] +2025-07-10 15:30:21.294 [info] > git ls-files --stage -- docs/bxgo/4、订单管理.md [58ms] +2025-07-10 15:30:21.297 [info] > git show --textconv :docs/bxgo/4、订单管理.md [63ms] +2025-07-10 15:30:21.351 [info] > git cat-file -s 87f5fec7255d6e3c4cbf8d57dc95aab5774443af [54ms] +2025-07-10 15:30:31.766 [info] > git show --textconv :docs/hxzx/订单管理.md [63ms] +2025-07-10 15:30:31.769 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [63ms] +2025-07-10 15:30:31.769 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:30:31.769 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [62ms] +2025-07-10 15:30:31.772 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [63ms] +2025-07-10 15:30:31.772 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:30:31.825 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [54ms] +2025-07-10 15:33:05.284 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [83ms] +2025-07-10 15:33:05.284 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [87ms] +2025-07-10 15:33:27.114 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [83ms] +2025-07-10 15:33:27.115 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [75ms] +2025-07-10 15:33:35.505 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [76ms] +2025-07-10 15:33:35.505 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [86ms] +2025-07-10 15:33:38.631 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 15:33:39.206 [info] > git config --get commit.template [58ms] +2025-07-10 15:33:39.208 [info] > git symbolic-ref --short HEAD [62ms] +2025-07-10 15:33:39.267 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 15:33:39.270 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:33:39.323 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 15:33:39.387 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [58ms] +2025-07-10 15:33:39.391 [info] > git status -z -uall [65ms] +2025-07-10 15:33:52.851 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 15:33:52.852 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [60ms] +2025-07-10 15:33:53.540 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 15:33:54.192 [info] > git config --get commit.template [56ms] +2025-07-10 15:33:54.192 [info] > git symbolic-ref --short HEAD [58ms] +2025-07-10 15:33:54.254 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [58ms] +2025-07-10 15:33:54.257 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:33:54.311 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 15:33:54.375 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 15:33:54.379 [info] > git status -z -uall [65ms] +2025-07-10 15:34:33.471 [info] > git show --textconv :docs/hxzx/订单管理.md [65ms] +2025-07-10 15:34:33.472 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [64ms] +2025-07-10 15:34:33.473 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:34:33.475 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [64ms] +2025-07-10 15:34:33.478 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [64ms] +2025-07-10 15:34:33.478 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:34:33.533 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [56ms] +2025-07-10 15:35:30.661 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [78ms] +2025-07-10 15:35:30.662 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [70ms] +2025-07-10 15:35:35.218 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [64ms] +2025-07-10 15:35:35.219 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [61ms] +2025-07-10 15:35:37.641 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 15:35:38.199 [info] > git config --get commit.template [55ms] +2025-07-10 15:35:38.199 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-10 15:35:38.254 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [54ms] +2025-07-10 15:35:38.257 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:35:38.308 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 15:35:38.368 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 15:35:38.371 [info] > git status -z -uall [61ms] +2025-07-10 15:35:53.041 [info] > git check-ignore -v -z --stdin [58ms] +2025-07-10 15:36:17.711 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 15:36:18.273 [info] > git config --get commit.template [57ms] +2025-07-10 15:36:18.274 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 15:36:18.331 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 15:36:18.333 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:36:18.387 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 15:36:18.451 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 15:36:18.454 [info] > git status -z -uall [65ms] +2025-07-10 15:36:18.531 [info] > git check-ignore -v -z --stdin [52ms] +2025-07-10 15:36:44.294 [info] > git show --textconv :docs/hxzx/订单管理.md [66ms] +2025-07-10 15:36:44.294 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [64ms] +2025-07-10 15:36:44.295 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:36:44.296 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [64ms] +2025-07-10 15:36:44.299 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [64ms] +2025-07-10 15:36:44.299 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:36:44.352 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [54ms] +2025-07-10 15:37:03.214 [info] > git show --textconv :docs/hxzx/订单管理.md [65ms] +2025-07-10 15:37:03.215 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [61ms] +2025-07-10 15:37:03.217 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [67ms] +2025-07-10 15:37:03.218 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:37:03.220 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [64ms] +2025-07-10 15:37:03.220 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:37:03.275 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [57ms] +2025-07-10 15:37:29.241 [info] > git show --textconv :docs/hxzx/商品管理.md [64ms] +2025-07-10 15:37:29.245 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [66ms] +2025-07-10 15:37:29.245 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:37:29.247 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [65ms] +2025-07-10 15:37:29.250 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [66ms] +2025-07-10 15:37:29.251 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:37:29.307 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [58ms] +2025-07-10 15:38:49.117 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [73ms] +2025-07-10 15:38:49.118 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [69ms] +2025-07-10 15:38:57.832 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [81ms] +2025-07-10 15:38:57.833 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [76ms] +2025-07-10 15:39:06.227 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 15:39:06.228 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [65ms] +2025-07-10 15:39:06.799 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 15:39:07.360 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 15:39:07.362 [info] > git config --get commit.template [58ms] +2025-07-10 15:39:07.419 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 15:39:07.421 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:39:07.474 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 15:39:07.537 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [58ms] +2025-07-10 15:39:07.541 [info] > git status -z -uall [64ms] +2025-07-10 15:39:11.905 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [65ms] +2025-07-10 15:39:11.905 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:39:11.905 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [64ms] +2025-07-10 15:39:11.908 [info] > git show --textconv :docs/hxzx/订单管理.md [71ms] +2025-07-10 15:39:11.909 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [64ms] +2025-07-10 15:39:11.909 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:39:11.964 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [56ms] +2025-07-10 15:39:19.092 [info] > git show --textconv :docs/hxzx/商品管理.md [64ms] +2025-07-10 15:39:19.095 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [64ms] +2025-07-10 15:39:19.095 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:39:19.097 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [64ms] +2025-07-10 15:39:19.100 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [65ms] +2025-07-10 15:39:19.100 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:39:19.158 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [58ms] +2025-07-10 15:40:32.400 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [78ms] +2025-07-10 15:40:32.400 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [73ms] +2025-07-10 15:45:36.840 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [76ms] +2025-07-10 15:45:36.844 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [74ms] +2025-07-10 15:45:50.652 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [69ms] +2025-07-10 15:45:50.653 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:45:50.653 [info] > git show --textconv :docs/hxzx/商品管理.md [73ms] +2025-07-10 15:45:50.654 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [68ms] +2025-07-10 15:45:50.657 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [68ms] +2025-07-10 15:45:50.657 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:45:50.710 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [54ms] +2025-07-10 15:46:52.734 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [75ms] +2025-07-10 15:46:52.734 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [73ms] +2025-07-10 15:47:00.955 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [63ms] +2025-07-10 15:47:00.957 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 15:47:01.631 [info] > git check-ignore -v -z --stdin [60ms] +2025-07-10 15:47:02.287 [info] > git symbolic-ref --short HEAD [92ms] +2025-07-10 15:47:02.295 [info] > git config --get commit.template [80ms] +2025-07-10 15:47:02.344 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 15:47:02.347 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:47:02.401 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 15:47:02.463 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 15:47:02.466 [info] > git status -z -uall [62ms] +2025-07-10 15:47:11.666 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [60ms] +2025-07-10 15:47:11.667 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [58ms] +2025-07-10 15:47:12.872 [info] > git symbolic-ref --short HEAD [56ms] +2025-07-10 15:47:12.875 [info] > git config --get commit.template [57ms] +2025-07-10 15:47:12.931 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 15:47:12.934 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:47:12.990 [info] > git rev-parse refs/remotes/origin/master [57ms] +2025-07-10 15:47:13.052 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 15:47:13.056 [info] > git status -z -uall [63ms] +2025-07-10 15:47:16.665 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [60ms] +2025-07-10 15:47:16.667 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [59ms] +2025-07-10 15:47:20.428 [info] > git check-ignore -v -z --stdin [58ms] +2025-07-10 15:47:20.990 [info] > git config --get commit.template [58ms] +2025-07-10 15:47:20.990 [info] > git symbolic-ref --short HEAD [62ms] +2025-07-10 15:47:21.052 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-10 15:47:21.054 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:47:21.112 [info] > git rev-parse refs/remotes/origin/master [59ms] +2025-07-10 15:47:21.173 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 15:47:21.176 [info] > git status -z -uall [62ms] +2025-07-10 15:47:34.324 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [98ms] +2025-07-10 15:47:34.327 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [103ms] +2025-07-10 15:47:34.327 [info] > git show --textconv :docs/hxzx/账号权限管理.md [105ms] +2025-07-10 15:47:34.327 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:47:34.328 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [101ms] +2025-07-10 15:47:34.329 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:47:34.380 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [53ms] +2025-07-10 15:47:34.441 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/账号权限管理.md [56ms] +2025-07-10 15:47:34.441 [info] fatal: no such path docs/hxzx/账号权限管理.md in 84e81a2b2f02798acbb48e1045be9ddac82d8632 +2025-07-10 15:47:34.898 [info] > git show --textconv :docs/hxzx/营销管理.md [64ms] +2025-07-10 15:47:34.899 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [62ms] +2025-07-10 15:47:34.899 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:47:34.901 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [61ms] +2025-07-10 15:47:34.905 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [64ms] +2025-07-10 15:47:34.906 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:47:34.964 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [60ms] +2025-07-10 15:47:35.419 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [64ms] +2025-07-10 15:47:35.419 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:47:35.420 [info] > git show --textconv :docs/hxzx/商品管理.md [67ms] +2025-07-10 15:47:35.420 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [64ms] +2025-07-10 15:47:35.423 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [64ms] +2025-07-10 15:47:35.423 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:47:35.477 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [54ms] +2025-07-10 15:47:57.615 [info] > git show --textconv :docs/hxzx/营销管理.md [63ms] +2025-07-10 15:47:57.615 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [62ms] +2025-07-10 15:47:57.616 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:47:57.618 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-10 15:47:57.620 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [62ms] +2025-07-10 15:47:57.620 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:47:57.674 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [54ms] +2025-07-10 15:48:17.283 [info] > git show --textconv :docs/hxzx/账号权限管理.md [64ms] +2025-07-10 15:48:17.284 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [63ms] +2025-07-10 15:48:17.284 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:17.286 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [63ms] +2025-07-10 15:48:17.288 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [63ms] +2025-07-10 15:48:17.289 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:17.347 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [59ms] +2025-07-10 15:48:22.416 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [61ms] +2025-07-10 15:48:22.416 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:22.417 [info] > git show --textconv :docs/hxzx/营销管理.md [64ms] +2025-07-10 15:48:22.418 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [61ms] +2025-07-10 15:48:22.421 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [62ms] +2025-07-10 15:48:22.421 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:22.474 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [54ms] +2025-07-10 15:48:23.507 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [61ms] +2025-07-10 15:48:23.508 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:23.508 [info] > git show --textconv :docs/hxzx/商品管理.md [65ms] +2025-07-10 15:48:23.509 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [60ms] +2025-07-10 15:48:23.512 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [61ms] +2025-07-10 15:48:23.513 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:23.565 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [53ms] +2025-07-10 15:48:25.231 [info] > git show --textconv :docs/hxzx/账号权限管理.md [62ms] +2025-07-10 15:48:25.232 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [61ms] +2025-07-10 15:48:25.232 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:25.235 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [62ms] +2025-07-10 15:48:25.237 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [62ms] +2025-07-10 15:48:25.238 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:25.293 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [56ms] +2025-07-10 15:48:27.321 [info] > git show --textconv :docs/hxzx/营销管理.md [64ms] +2025-07-10 15:48:27.322 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [63ms] +2025-07-10 15:48:27.322 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:27.322 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [60ms] +2025-07-10 15:48:27.326 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [62ms] +2025-07-10 15:48:27.326 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:27.382 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [58ms] +2025-07-10 15:48:27.869 [info] > git show --textconv :docs/hxzx/商品管理.md [68ms] +2025-07-10 15:48:27.869 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [65ms] +2025-07-10 15:48:27.870 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:27.870 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [63ms] +2025-07-10 15:48:27.873 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [64ms] +2025-07-10 15:48:27.873 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:27.926 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [54ms] +2025-07-10 15:48:29.108 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [55ms] +2025-07-10 15:48:29.111 [info] > git show --textconv :docs/hxzx/分销体系.md [60ms] +2025-07-10 15:48:29.165 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [55ms] +2025-07-10 15:48:31.129 [info] > git show --textconv :docs/hxzx/订单管理.md [62ms] +2025-07-10 15:48:31.130 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [61ms] +2025-07-10 15:48:31.131 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:31.132 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [61ms] +2025-07-10 15:48:31.135 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [63ms] +2025-07-10 15:48:31.136 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:48:31.190 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [56ms] +2025-07-10 15:48:54.842 [info] > git show --textconv :docs/hxzx/订单管理 copy.md [64ms] +2025-07-10 15:48:54.842 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 15:48:54.842 [info] > git ls-files --stage -- docs/hxzx/订单管理 copy.md [62ms] +2025-07-10 15:48:54.842 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 15:48:55.165 [info] > git check-ignore -v -z --stdin [60ms] +2025-07-10 15:48:55.712 [info] > git config --get commit.template [54ms] +2025-07-10 15:48:55.712 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-10 15:48:55.768 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [54ms] +2025-07-10 15:48:55.770 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:48:55.823 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 15:48:55.883 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 15:48:55.886 [info] > git status -z -uall [61ms] +2025-07-10 15:49:11.335 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [69ms] +2025-07-10 15:49:11.338 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [69ms] +2025-07-10 15:49:14.145 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [60ms] +2025-07-10 15:49:14.145 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [63ms] +2025-07-10 15:49:30.249 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [70ms] +2025-07-10 15:49:30.252 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [69ms] +2025-07-10 15:49:47.150 [info] > git show --textconv :docs/hxzx/分销体系.md [84ms] +2025-07-10 15:49:47.157 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [90ms] +2025-07-10 15:49:47.217 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [56ms] +2025-07-10 15:49:47.373 [info] > git check-ignore -v -z --stdin [55ms] +2025-07-10 15:49:47.956 [info] > git config --get commit.template [54ms] +2025-07-10 15:49:47.956 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-10 15:49:48.013 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 15:49:48.016 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:49:48.068 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 15:49:48.130 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 15:49:48.133 [info] > git status -z -uall [63ms] +2025-07-10 15:50:27.864 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [80ms] +2025-07-10 15:50:27.865 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [79ms] +2025-07-10 15:50:45.779 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [75ms] +2025-07-10 15:50:45.780 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [73ms] +2025-07-10 15:50:56.569 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [90ms] +2025-07-10 15:50:56.571 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [86ms] +2025-07-10 15:51:37.811 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [83ms] +2025-07-10 15:51:37.815 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [81ms] +2025-07-10 15:51:42.565 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 15:51:42.565 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [66ms] +2025-07-10 15:51:44.108 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 15:51:44.670 [info] > git config --get commit.template [53ms] +2025-07-10 15:51:44.670 [info] > git symbolic-ref --short HEAD [56ms] +2025-07-10 15:51:44.728 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 15:51:44.730 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:51:44.784 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 15:51:44.846 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [58ms] +2025-07-10 15:51:44.849 [info] > git status -z -uall [63ms] +2025-07-10 15:52:34.343 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [69ms] +2025-07-10 15:52:34.344 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 15:52:44.950 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [70ms] +2025-07-10 15:52:44.956 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [64ms] +2025-07-10 15:53:56.995 [info] > git show --textconv :docs/hxzx/订单管理.md [64ms] +2025-07-10 15:53:56.995 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [61ms] +2025-07-10 15:53:56.998 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [66ms] +2025-07-10 15:53:56.998 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:53:56.999 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [61ms] +2025-07-10 15:53:56.999 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:53:57.052 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [54ms] +2025-07-10 15:54:02.232 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [61ms] +2025-07-10 15:54:02.232 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [59ms] +2025-07-10 15:54:03.755 [info] > git show --textconv :docs/hxzx/账号权限管理.md [64ms] +2025-07-10 15:54:03.755 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [62ms] +2025-07-10 15:54:03.756 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:54:03.757 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [62ms] +2025-07-10 15:54:03.761 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [63ms] +2025-07-10 15:54:03.761 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:54:03.813 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [54ms] +2025-07-10 15:54:04.206 [info] > git show --textconv :docs/hxzx/营销管理.md [61ms] +2025-07-10 15:54:04.210 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [62ms] +2025-07-10 15:54:04.210 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:54:04.211 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [61ms] +2025-07-10 15:54:04.213 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [62ms] +2025-07-10 15:54:04.213 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:54:04.268 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [55ms] +2025-07-10 15:54:04.608 [info] > git show --textconv :docs/hxzx/商品管理.md [64ms] +2025-07-10 15:54:04.609 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [63ms] +2025-07-10 15:54:04.610 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:54:04.614 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [65ms] +2025-07-10 15:54:04.616 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [65ms] +2025-07-10 15:54:04.617 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:54:04.672 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [55ms] +2025-07-10 15:54:04.940 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [59ms] +2025-07-10 15:54:04.943 [info] > git show --textconv :docs/hxzx/分销体系.md [64ms] +2025-07-10 15:54:04.998 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [56ms] +2025-07-10 15:54:08.486 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [59ms] +2025-07-10 15:54:08.486 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [61ms] +2025-07-10 15:54:43.406 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [87ms] +2025-07-10 15:54:43.409 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [82ms] +2025-07-10 15:54:45.060 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [63ms] +2025-07-10 15:54:45.061 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 15:54:51.366 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 15:54:51.927 [info] > git config --get commit.template [55ms] +2025-07-10 15:54:51.928 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 15:54:51.985 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 15:54:51.987 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:54:52.041 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 15:54:52.102 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-10 15:54:52.106 [info] > git status -z -uall [63ms] +2025-07-10 15:55:48.143 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [79ms] +2025-07-10 15:55:48.143 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [68ms] +2025-07-10 15:56:14.147 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [122ms] +2025-07-10 15:56:14.149 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [119ms] +2025-07-10 15:56:36.111 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [86ms] +2025-07-10 15:56:36.117 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [89ms] +2025-07-10 15:56:37.432 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [68ms] +2025-07-10 15:56:37.432 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [65ms] +2025-07-10 15:56:45.491 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [69ms] +2025-07-10 15:56:45.493 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [68ms] +2025-07-10 15:56:46.084 [info] > git check-ignore -v -z --stdin [55ms] +2025-07-10 15:56:46.632 [info] > git config --get commit.template [58ms] +2025-07-10 15:56:46.633 [info] > git symbolic-ref --short HEAD [61ms] +2025-07-10 15:56:46.692 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 15:56:46.695 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:56:46.748 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 15:56:46.810 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 15:56:46.814 [info] > git status -z -uall [63ms] +2025-07-10 15:57:07.152 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [72ms] +2025-07-10 15:57:07.155 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [72ms] +2025-07-10 15:57:27.291 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [102ms] +2025-07-10 15:57:27.294 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [100ms] +2025-07-10 15:57:30.964 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [64ms] +2025-07-10 15:57:30.966 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 15:57:38.030 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [75ms] +2025-07-10 15:57:38.031 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [79ms] +2025-07-10 15:57:42.388 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [74ms] +2025-07-10 15:57:42.392 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [71ms] +2025-07-10 15:57:49.768 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [75ms] +2025-07-10 15:57:49.770 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [74ms] +2025-07-10 15:57:50.363 [info] > git check-ignore -v -z --stdin [60ms] +2025-07-10 15:57:50.922 [info] > git config --get commit.template [57ms] +2025-07-10 15:57:50.922 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 15:57:50.980 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 15:57:50.983 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 15:57:51.040 [info] > git rev-parse refs/remotes/origin/master [57ms] +2025-07-10 15:57:51.104 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 15:57:51.107 [info] > git status -z -uall [65ms] +2025-07-10 15:58:00.333 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [54ms] +2025-07-10 15:58:00.336 [info] > git show --textconv :docs/hxzx/分销体系.md [59ms] +2025-07-10 15:58:00.390 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [56ms] +2025-07-10 15:58:01.510 [info] > git show --textconv :docs/hxzx/商品管理.md [67ms] +2025-07-10 15:58:01.512 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [66ms] +2025-07-10 15:58:01.512 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:58:01.512 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [64ms] +2025-07-10 15:58:01.516 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [66ms] +2025-07-10 15:58:01.517 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:58:01.570 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [56ms] +2025-07-10 15:58:02.800 [info] > git show --textconv :docs/hxzx/营销管理.md [63ms] +2025-07-10 15:58:02.800 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [61ms] +2025-07-10 15:58:02.801 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:58:02.803 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-10 15:58:02.807 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [63ms] +2025-07-10 15:58:02.807 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:58:02.862 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [56ms] +2025-07-10 15:58:04.319 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [59ms] +2025-07-10 15:58:04.322 [info] > git show --textconv :docs/hxzx/分销体系.md [64ms] +2025-07-10 15:58:04.377 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [55ms] +2025-07-10 15:58:14.450 [info] > git show --textconv :docs/hxzx/商品管理.md [64ms] +2025-07-10 15:58:14.451 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [63ms] +2025-07-10 15:58:14.452 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:58:14.453 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [63ms] +2025-07-10 15:58:14.456 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [64ms] +2025-07-10 15:58:14.457 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:58:14.512 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [56ms] +2025-07-10 15:58:15.043 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [64ms] +2025-07-10 15:58:15.043 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:58:15.043 [info] > git show --textconv :docs/hxzx/营销管理.md [67ms] +2025-07-10 15:58:15.044 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [63ms] +2025-07-10 15:58:15.046 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [64ms] +2025-07-10 15:58:15.047 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 15:58:15.104 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [57ms] +2025-07-10 15:58:38.398 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [68ms] +2025-07-10 15:58:38.398 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [79ms] +2025-07-10 15:59:09.450 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [76ms] +2025-07-10 15:59:09.452 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [73ms] +2025-07-10 15:59:19.073 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [64ms] +2025-07-10 15:59:19.073 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [76ms] +2025-07-10 16:00:17.633 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [98ms] +2025-07-10 16:00:17.650 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [119ms] +2025-07-10 16:00:32.967 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [70ms] +2025-07-10 16:00:32.967 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [75ms] +2025-07-10 16:00:43.768 [info] > git show --textconv :docs/hxzx/终端管理 copy.md [64ms] +2025-07-10 16:00:43.768 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:00:43.769 [info] > git ls-files --stage -- docs/hxzx/终端管理 copy.md [63ms] +2025-07-10 16:00:43.769 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:00:44.092 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 16:00:44.594 [info] > git config --get commit.template [58ms] +2025-07-10 16:00:44.594 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-10 16:00:44.656 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-10 16:00:44.658 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:00:44.720 [info] > git rev-parse refs/remotes/origin/master [61ms] +2025-07-10 16:00:44.784 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 16:00:44.788 [info] > git status -z -uall [66ms] +2025-07-10 16:00:52.170 [info] > git show --textconv :docs/hxzx/安全管理.md [63ms] +2025-07-10 16:00:52.171 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:00:52.171 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [61ms] +2025-07-10 16:00:52.171 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:00:52.461 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 16:00:52.996 [info] > git config --get commit.template [53ms] +2025-07-10 16:00:52.996 [info] > git symbolic-ref --short HEAD [55ms] +2025-07-10 16:00:53.055 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 16:00:53.057 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:00:53.110 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 16:00:53.171 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 16:00:53.175 [info] > git status -z -uall [62ms] +2025-07-10 16:01:13.050 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [87ms] +2025-07-10 16:01:13.050 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [84ms] +2025-07-10 16:01:21.275 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [77ms] +2025-07-10 16:01:21.280 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [78ms] +2025-07-10 16:02:06.510 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [73ms] +2025-07-10 16:02:06.512 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [70ms] +2025-07-10 16:02:23.415 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [84ms] +2025-07-10 16:02:23.416 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [79ms] +2025-07-10 16:02:29.344 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 16:02:29.347 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 16:02:34.731 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [71ms] +2025-07-10 16:02:34.732 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [68ms] +2025-07-10 16:02:53.074 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [59ms] +2025-07-10 16:02:53.075 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [57ms] +2025-07-10 16:02:54.415 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 16:02:54.974 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 16:02:54.976 [info] > git config --get commit.template [59ms] +2025-07-10 16:02:55.034 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 16:02:55.036 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:02:55.092 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 16:02:55.153 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 16:02:55.157 [info] > git status -z -uall [63ms] +2025-07-10 16:03:23.251 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [81ms] +2025-07-10 16:03:23.254 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [79ms] +2025-07-10 16:03:35.230 [info] > git show --textconv :docs/hxzx/账号权限管理.md [65ms] +2025-07-10 16:03:35.231 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:03:35.231 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:35.233 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:03:35.235 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:03:35.236 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:35.291 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [56ms] +2025-07-10 16:03:35.601 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [64ms] +2025-07-10 16:03:35.601 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:35.601 [info] > git show --textconv :docs/hxzx/营销管理.md [66ms] +2025-07-10 16:03:35.602 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [63ms] +2025-07-10 16:03:35.605 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [64ms] +2025-07-10 16:03:35.605 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:35.659 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [55ms] +2025-07-10 16:03:35.968 [info] > git show --textconv :docs/hxzx/商品管理.md [66ms] +2025-07-10 16:03:35.973 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [68ms] +2025-07-10 16:03:35.973 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:35.973 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [66ms] +2025-07-10 16:03:35.976 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [67ms] +2025-07-10 16:03:35.977 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:36.031 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [55ms] +2025-07-10 16:03:36.279 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [56ms] +2025-07-10 16:03:36.282 [info] > git show --textconv :docs/hxzx/分销体系.md [61ms] +2025-07-10 16:03:36.337 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [56ms] +2025-07-10 16:03:36.602 [info] > git show --textconv :docs/hxzx/订单管理.md [62ms] +2025-07-10 16:03:36.605 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [62ms] +2025-07-10 16:03:36.607 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [66ms] +2025-07-10 16:03:36.608 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:36.608 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [63ms] +2025-07-10 16:03:36.608 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:36.663 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [56ms] +2025-07-10 16:03:37.844 [info] > git show --textconv :docs/hxzx/登录后台.md [62ms] +2025-07-10 16:03:37.845 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [61ms] +2025-07-10 16:03:37.846 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:37.846 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [60ms] +2025-07-10 16:03:37.851 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [62ms] +2025-07-10 16:03:37.851 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:37.902 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [53ms] +2025-07-10 16:03:41.812 [info] > git show --textconv :docs/hxzx/登录后台.md [68ms] +2025-07-10 16:03:41.814 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [67ms] +2025-07-10 16:03:41.814 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:41.815 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [66ms] +2025-07-10 16:03:41.817 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [66ms] +2025-07-10 16:03:41.818 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:41.871 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [54ms] +2025-07-10 16:03:46.932 [info] > git show --textconv :docs/hxzx/登录后台.md [63ms] +2025-07-10 16:03:46.936 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [64ms] +2025-07-10 16:03:46.936 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:46.938 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [65ms] +2025-07-10 16:03:46.941 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [65ms] +2025-07-10 16:03:46.941 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:03:46.997 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [57ms] +2025-07-10 16:03:56.657 [info] > git ls-files --stage -- docs/hxzx/安全管理 copy.md [60ms] +2025-07-10 16:03:56.657 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:03:56.657 [info] > git show --textconv :docs/hxzx/安全管理 copy.md [63ms] +2025-07-10 16:03:56.657 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:03:56.960 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 16:03:57.525 [info] > git config --get commit.template [60ms] +2025-07-10 16:03:57.526 [info] > git symbolic-ref --short HEAD [64ms] +2025-07-10 16:03:57.589 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [60ms] +2025-07-10 16:03:57.591 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:03:57.655 [info] > git rev-parse refs/remotes/origin/master [63ms] +2025-07-10 16:03:57.716 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 16:03:57.720 [info] > git status -z -uall [62ms] +2025-07-10 16:04:07.695 [info] > git show --textconv :docs/hxzx/常见问题解答.md [60ms] +2025-07-10 16:04:07.695 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:04:07.695 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [59ms] +2025-07-10 16:04:07.696 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:04:07.986 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 16:04:08.523 [info] > git config --get commit.template [57ms] +2025-07-10 16:04:08.524 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-10 16:04:08.606 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [80ms] +2025-07-10 16:04:08.609 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:04:08.666 [info] > git rev-parse refs/remotes/origin/master [58ms] +2025-07-10 16:04:08.725 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 16:04:08.730 [info] > git status -z -uall [62ms] +2025-07-10 16:04:08.786 [info] > git show --textconv :docs/hxzx/常见问题解答.md [56ms] +2025-07-10 16:04:08.787 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:04:08.788 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [54ms] +2025-07-10 16:04:08.788 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:04:43.494 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [111ms] +2025-07-10 16:04:43.503 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [185ms] +2025-07-10 16:04:51.258 [info] > git ls-files --stage -- docs/bxgo/1、登录系统.md [56ms] +2025-07-10 16:04:51.260 [info] > git show --textconv :docs/bxgo/1、登录系统.md [61ms] +2025-07-10 16:04:51.315 [info] > git cat-file -s dcc83ab8f7bf58fc8c20a32e8243a563edf86f19 [55ms] +2025-07-10 16:05:06.283 [info] > git show --textconv :docs/hxzx/登录后台.md [62ms] +2025-07-10 16:05:06.287 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [64ms] +2025-07-10 16:05:06.287 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:05:06.287 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [62ms] +2025-07-10 16:05:06.290 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [62ms] +2025-07-10 16:05:06.290 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:05:06.345 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [55ms] +2025-07-10 16:05:59.395 [info] > git show --textconv :docs/hxzx/商品管理.md [62ms] +2025-07-10 16:05:59.399 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [62ms] +2025-07-10 16:05:59.402 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [67ms] +2025-07-10 16:05:59.402 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:05:59.402 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [63ms] +2025-07-10 16:05:59.403 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:05:59.459 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [57ms] +2025-07-10 16:06:00.632 [info] > git show --textconv :docs/hxzx/营销管理.md [63ms] +2025-07-10 16:06:00.636 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-10 16:06:00.638 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [66ms] +2025-07-10 16:06:00.638 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [62ms] +2025-07-10 16:06:00.639 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:06:00.639 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:06:00.693 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [54ms] +2025-07-10 16:06:01.045 [info] > git show --textconv :docs/hxzx/账号权限管理.md [72ms] +2025-07-10 16:06:01.045 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [70ms] +2025-07-10 16:06:01.046 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:06:01.047 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [68ms] +2025-07-10 16:06:01.052 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 16:06:01.052 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:06:01.103 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [54ms] +2025-07-10 16:06:04.879 [info] > git show --textconv :docs/hxzx/营销管理.md [64ms] +2025-07-10 16:06:04.879 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [62ms] +2025-07-10 16:06:04.880 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:06:04.884 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [64ms] +2025-07-10 16:06:04.886 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [65ms] +2025-07-10 16:06:04.887 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:06:04.940 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [54ms] +2025-07-10 16:06:45.703 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [88ms] +2025-07-10 16:06:45.703 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [84ms] +2025-07-10 16:06:58.141 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [75ms] +2025-07-10 16:06:58.142 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [79ms] +2025-07-10 16:07:16.244 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [107ms] +2025-07-10 16:07:16.262 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [121ms] +2025-07-10 16:07:27.738 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [73ms] +2025-07-10 16:07:27.740 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [72ms] +2025-07-10 16:07:28.350 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 16:07:28.912 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-10 16:07:28.915 [info] > git config --get commit.template [61ms] +2025-07-10 16:07:28.974 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-10 16:07:28.977 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:07:29.048 [info] > git rev-parse refs/remotes/origin/master [72ms] +2025-07-10 16:07:29.108 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 16:07:29.112 [info] > git status -z -uall [61ms] +2025-07-10 16:07:36.231 [info] > git show --textconv :docs/hxzx/分销体系.md [65ms] +2025-07-10 16:07:36.231 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [62ms] +2025-07-10 16:07:36.289 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [55ms] +2025-07-10 16:07:37.410 [info] > git show --textconv :docs/hxzx/商品管理.md [62ms] +2025-07-10 16:07:37.411 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [62ms] +2025-07-10 16:07:37.412 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:07:37.416 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [64ms] +2025-07-10 16:07:37.419 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [65ms] +2025-07-10 16:07:37.419 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:07:37.474 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [55ms] +2025-07-10 16:07:38.811 [info] > git show --textconv :docs/hxzx/营销管理.md [63ms] +2025-07-10 16:07:38.813 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [62ms] +2025-07-10 16:07:38.813 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:07:38.815 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-10 16:07:38.817 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [63ms] +2025-07-10 16:07:38.818 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:07:38.871 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [55ms] +2025-07-10 16:08:09.001 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [83ms] +2025-07-10 16:08:09.005 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [79ms] +2025-07-10 16:08:15.021 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 16:08:15.021 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [65ms] +2025-07-10 16:08:19.605 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [93ms] +2025-07-10 16:08:19.633 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [112ms] +2025-07-10 16:08:20.188 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 16:08:20.733 [info] > git symbolic-ref --short HEAD [63ms] +2025-07-10 16:08:20.736 [info] > git config --get commit.template [63ms] +2025-07-10 16:08:20.794 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-10 16:08:20.796 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:08:20.850 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 16:08:20.911 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 16:08:20.915 [info] > git status -z -uall [62ms] +2025-07-10 16:08:26.956 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [61ms] +2025-07-10 16:08:26.956 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:08:26.956 [info] > git show --textconv :docs/hxzx/营销管理.md [65ms] +2025-07-10 16:08:26.959 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-10 16:08:26.962 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [63ms] +2025-07-10 16:08:26.962 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:08:27.018 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [57ms] +2025-07-10 16:08:43.253 [info] > git ls-files --stage -- docs/app/好生意App/App下载使用.md [55ms] +2025-07-10 16:08:43.255 [info] > git show --textconv :docs/app/好生意App/App下载使用.md [60ms] +2025-07-10 16:08:43.309 [info] > git cat-file -s 9c6da6c191281b25455afbd236997d5c45168b37 [54ms] +2025-07-10 16:09:31.609 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [65ms] +2025-07-10 16:09:31.609 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [68ms] +2025-07-10 16:09:36.935 [info] > git ls-files --stage -- docs/bxgo/1、登录系统.md [55ms] +2025-07-10 16:09:36.937 [info] > git show --textconv :docs/bxgo/1、登录系统.md [59ms] +2025-07-10 16:09:36.990 [info] > git cat-file -s dcc83ab8f7bf58fc8c20a32e8243a563edf86f19 [53ms] +2025-07-10 16:09:53.219 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 16:10:02.174 [info] > git check-ignore -v -z --stdin [63ms] +2025-07-10 16:10:02.880 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 16:10:07.736 [info] > git ls-files --stage -- docs/zsw/cashier_system/inventory.md [55ms] +2025-07-10 16:10:07.738 [info] > git show --textconv :docs/zsw/cashier_system/inventory.md [60ms] +2025-07-10 16:10:07.792 [info] > git cat-file -s e39dd3080664c66bff1ecc71f24280d63e01bd65 [55ms] +2025-07-10 16:10:38.756 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 16:10:39.991 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 16:10:49.052 [info] > git ls-files --stage -- docs/bxgo/商品管理/管理商品.md [56ms] +2025-07-10 16:10:49.054 [info] > git show --textconv :docs/bxgo/商品管理/管理商品.md [60ms] +2025-07-10 16:10:49.112 [info] > git cat-file -s 06c065d07716033ac3e709ab01d5a44a5228e505 [58ms] +2025-07-10 16:11:08.361 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [76ms] +2025-07-10 16:11:08.361 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [72ms] +2025-07-10 16:11:17.714 [info] > git ls-files --stage -- docs/crm/1、登录系统.md [56ms] +2025-07-10 16:11:17.716 [info] > git show --textconv :docs/crm/1、登录系统.md [60ms] +2025-07-10 16:11:17.771 [info] > git cat-file -s e2f8c2ea8433f89ea0083966503a5686ca12987d [55ms] +2025-07-10 16:11:21.265 [info] > git ls-files --stage -- docs/crm/2、客户管理.md [55ms] +2025-07-10 16:11:21.268 [info] > git show --textconv :docs/crm/2、客户管理.md [60ms] +2025-07-10 16:11:21.322 [info] > git cat-file -s b55a419db338067f2d62f57b01faebae944a89d1 [55ms] +2025-07-10 16:11:24.461 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 16:11:25.323 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 16:11:32.947 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 16:11:47.903 [info] > git ls-files --stage -- docs/odoo/bom.md [57ms] +2025-07-10 16:11:47.907 [info] > git show --textconv :docs/odoo/bom.md [63ms] +2025-07-10 16:11:47.962 [info] > git cat-file -s 425085f10c68e31f0924eb923bbc5469517870fa [56ms] +2025-07-10 16:11:57.328 [info] > git ls-files --stage -- docs/odoo/login.md [60ms] +2025-07-10 16:11:57.331 [info] > git show --textconv :docs/odoo/login.md [65ms] +2025-07-10 16:11:57.385 [info] > git cat-file -s dee0aeb518354cc3c1c9f4f65c2a2c608fc60490 [55ms] +2025-07-10 16:12:17.434 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [61ms] +2025-07-10 16:12:17.436 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [60ms] +2025-07-10 16:12:19.382 [info] > git show --textconv :docs/odoo/orderpoint.md [89ms] +2025-07-10 16:12:19.387 [info] > git ls-files --stage -- docs/odoo/orderpoint.md [89ms] +2025-07-10 16:12:19.443 [info] > git cat-file -s bcb496bfc3ff352121fda284b1c4339749547d6f [54ms] +2025-07-10 16:12:22.354 [info] > git ls-files --stage -- docs/odoo/login.md [58ms] +2025-07-10 16:12:22.357 [info] > git show --textconv :docs/odoo/login.md [64ms] +2025-07-10 16:12:22.416 [info] > git cat-file -s dee0aeb518354cc3c1c9f4f65c2a2c608fc60490 [58ms] +2025-07-10 16:12:23.148 [info] > git ls-files --stage -- docs/odoo/inventory.md [54ms] +2025-07-10 16:12:23.151 [info] > git show --textconv :docs/odoo/inventory.md [59ms] +2025-07-10 16:12:23.205 [info] > git cat-file -s 20d153093e1f4f9329e4cc629ebd1aa3a58cbc58 [55ms] +2025-07-10 16:12:24.117 [info] > git ls-files --stage -- docs/odoo/import.md [55ms] +2025-07-10 16:12:24.120 [info] > git show --textconv :docs/odoo/import.md [59ms] +2025-07-10 16:12:24.175 [info] > git cat-file -s cde90128defd5c8eb9657163e91aead4f4b44ad2 [55ms] +2025-07-10 16:12:27.797 [info] > git ls-files --stage -- docs/odoo/customer.md [55ms] +2025-07-10 16:12:27.800 [info] > git show --textconv :docs/odoo/customer.md [59ms] +2025-07-10 16:12:27.853 [info] > git cat-file -s a860ed033e36ee0c21299cc829607c8390fc7f64 [54ms] +2025-07-10 16:12:29.132 [info] > git ls-files --stage -- docs/odoo/bom.md [55ms] +2025-07-10 16:12:29.134 [info] > git show --textconv :docs/odoo/bom.md [59ms] +2025-07-10 16:12:29.189 [info] > git cat-file -s 425085f10c68e31f0924eb923bbc5469517870fa [54ms] +2025-07-10 16:12:31.136 [info] > git ls-files --stage -- docs/odoo/settlement.md [57ms] +2025-07-10 16:12:31.139 [info] > git show --textconv :docs/odoo/settlement.md [62ms] +2025-07-10 16:12:31.196 [info] > git cat-file -s 99cd10f94425b6d77c212b09c2e3c0e99a7b86d2 [58ms] +2025-07-10 16:12:32.319 [info] > git ls-files --stage -- docs/odoo/start.md [59ms] +2025-07-10 16:12:32.321 [info] > git show --textconv :docs/odoo/start.md [64ms] +2025-07-10 16:12:32.379 [info] > git cat-file -s f3c32b318d463b06c9f6f421ffbe48877e4e463b [58ms] +2025-07-10 16:12:33.145 [info] > git ls-files --stage -- docs/odoo/store.md [59ms] +2025-07-10 16:12:33.147 [info] > git show --textconv :docs/odoo/store.md [63ms] +2025-07-10 16:12:33.201 [info] > git cat-file -s fad7ce92561c4f7af1c12dd8c18fd931b22ed4de [54ms] +2025-07-10 16:12:34.414 [info] > git ls-files --stage -- docs/odoo/users.md [53ms] +2025-07-10 16:12:34.417 [info] > git show --textconv :docs/odoo/users.md [57ms] +2025-07-10 16:12:34.470 [info] > git cat-file -s 3a25060307d7229667f9047fef9b55f667095bf7 [54ms] +2025-07-10 16:13:11.792 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [65ms] +2025-07-10 16:13:11.792 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 16:13:16.685 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/odoo/users.md [59ms] +2025-07-10 16:14:08.320 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [70ms] +2025-07-10 16:14:08.320 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 16:14:22.099 [info] > git ls-files --stage -- docs/odoo/bom.md [57ms] +2025-07-10 16:14:22.102 [info] > git show --textconv :docs/odoo/bom.md [61ms] +2025-07-10 16:14:22.156 [info] > git cat-file -s 425085f10c68e31f0924eb923bbc5469517870fa [55ms] +2025-07-10 16:14:46.874 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [66ms] +2025-07-10 16:14:46.875 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [63ms] +2025-07-10 16:15:14.524 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [87ms] +2025-07-10 16:15:14.543 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [104ms] +2025-07-10 16:15:25.824 [info] > git show --textconv :docs/hxzx/登录后台.md [65ms] +2025-07-10 16:15:25.824 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [63ms] +2025-07-10 16:15:25.825 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:15:25.826 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [62ms] +2025-07-10 16:15:25.829 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [63ms] +2025-07-10 16:15:25.829 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:15:25.882 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [53ms] +2025-07-10 16:15:32.002 [info] > git show --textconv :docs/hxzx/订单管理.md [61ms] +2025-07-10 16:15:32.003 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [60ms] +2025-07-10 16:15:32.003 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:15:32.006 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [61ms] +2025-07-10 16:15:32.009 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [61ms] +2025-07-10 16:15:32.009 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:15:32.063 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [55ms] +2025-07-10 16:15:39.252 [info] > git show --textconv :docs/hxzx/分销体系.md [69ms] +2025-07-10 16:15:39.253 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [68ms] +2025-07-10 16:15:39.315 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [59ms] +2025-07-10 16:15:41.419 [info] > git show --textconv :docs/hxzx/商品管理.md [63ms] +2025-07-10 16:15:41.420 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [61ms] +2025-07-10 16:15:41.420 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:15:41.420 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [60ms] +2025-07-10 16:15:41.424 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [61ms] +2025-07-10 16:15:41.424 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:15:41.477 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [55ms] +2025-07-10 16:16:01.190 [info] > git show --textconv :docs/hxzx/登录后台.md [67ms] +2025-07-10 16:16:01.192 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [67ms] +2025-07-10 16:16:01.192 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:16:01.194 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [66ms] +2025-07-10 16:16:01.196 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [65ms] +2025-07-10 16:16:01.197 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:16:01.249 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [53ms] +2025-07-10 16:16:03.089 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [61ms] +2025-07-10 16:16:03.089 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:16:03.090 [info] > git show --textconv :docs/hxzx/订单管理.md [64ms] +2025-07-10 16:16:03.091 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [61ms] +2025-07-10 16:16:03.094 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [62ms] +2025-07-10 16:16:03.094 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:16:03.150 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [57ms] +2025-07-10 16:16:04.349 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [57ms] +2025-07-10 16:16:04.352 [info] > git show --textconv :docs/hxzx/分销体系.md [62ms] +2025-07-10 16:16:04.407 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [55ms] +2025-07-10 16:16:05.036 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [60ms] +2025-07-10 16:16:05.036 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:16:05.037 [info] > git show --textconv :docs/hxzx/商品管理.md [63ms] +2025-07-10 16:16:05.040 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [62ms] +2025-07-10 16:16:05.042 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [62ms] +2025-07-10 16:16:05.043 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:16:05.096 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [54ms] +2025-07-10 16:16:12.137 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [59ms] +2025-07-10 16:16:12.139 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [63ms] +2025-07-10 16:16:12.140 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:16:12.140 [info] > git show --textconv :docs/hxzx/登录后台.md [66ms] +2025-07-10 16:16:12.142 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [62ms] +2025-07-10 16:16:12.142 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:16:12.194 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [55ms] +2025-07-10 16:16:19.401 [info] > git show --textconv :docs/hxzx/订单管理.md [61ms] +2025-07-10 16:16:19.406 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [64ms] +2025-07-10 16:16:19.406 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:16:19.407 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [62ms] +2025-07-10 16:16:19.409 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [63ms] +2025-07-10 16:16:19.410 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:16:19.469 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [60ms] +2025-07-10 16:16:20.154 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [62ms] +2025-07-10 16:16:20.154 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:16:20.154 [info] > git show --textconv :docs/hxzx/商品管理.md [65ms] +2025-07-10 16:16:20.156 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [62ms] +2025-07-10 16:16:20.159 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [63ms] +2025-07-10 16:16:20.159 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:16:20.212 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [54ms] +2025-07-10 16:17:16.814 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [86ms] +2025-07-10 16:17:16.816 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [76ms] +2025-07-10 16:17:29.411 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [89ms] +2025-07-10 16:17:29.412 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [81ms] +2025-07-10 16:17:29.989 [info] > git check-ignore -v -z --stdin [52ms] +2025-07-10 16:17:30.578 [info] > git symbolic-ref --short HEAD [65ms] +2025-07-10 16:17:30.580 [info] > git config --get commit.template [65ms] +2025-07-10 16:17:30.639 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [58ms] +2025-07-10 16:17:30.641 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:17:30.746 [info] > git rev-parse refs/remotes/origin/master [104ms] +2025-07-10 16:17:30.814 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [63ms] +2025-07-10 16:17:30.819 [info] > git status -z -uall [71ms] +2025-07-10 16:17:35.582 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [60ms] +2025-07-10 16:17:35.582 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:35.583 [info] > git show --textconv :docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:17:35.586 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [61ms] +2025-07-10 16:17:35.588 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:17:35.588 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:35.647 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [59ms] +2025-07-10 16:17:35.884 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-10 16:17:35.886 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [66ms] +2025-07-10 16:17:35.887 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:35.887 [info] > git show --textconv :docs/hxzx/营销管理.md [69ms] +2025-07-10 16:17:35.887 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [63ms] +2025-07-10 16:17:35.888 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:35.939 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [53ms] +2025-07-10 16:17:37.044 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [64ms] +2025-07-10 16:17:37.044 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:37.044 [info] > git show --textconv :docs/hxzx/商品管理.md [66ms] +2025-07-10 16:17:37.045 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [62ms] +2025-07-10 16:17:37.048 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [63ms] +2025-07-10 16:17:37.048 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:37.104 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [57ms] +2025-07-10 16:17:37.601 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [58ms] +2025-07-10 16:17:37.604 [info] > git show --textconv :docs/hxzx/分销体系.md [63ms] +2025-07-10 16:17:37.665 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [62ms] +2025-07-10 16:17:37.938 [info] > git show --textconv :docs/hxzx/订单管理.md [67ms] +2025-07-10 16:17:37.938 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [65ms] +2025-07-10 16:17:37.939 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:37.940 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [65ms] +2025-07-10 16:17:37.942 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [64ms] +2025-07-10 16:17:37.943 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:38.000 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [58ms] +2025-07-10 16:17:39.362 [info] > git show --textconv :docs/hxzx/账号权限管理.md [64ms] +2025-07-10 16:17:39.363 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [61ms] +2025-07-10 16:17:39.363 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:39.365 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [61ms] +2025-07-10 16:17:39.368 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [63ms] +2025-07-10 16:17:39.368 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:39.421 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [54ms] +2025-07-10 16:17:39.719 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [59ms] +2025-07-10 16:17:39.722 [info] > git show --textconv :docs/hxzx/分销体系.md [63ms] +2025-07-10 16:17:39.775 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [54ms] +2025-07-10 16:17:45.350 [info] > git show --textconv :docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:17:45.352 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:17:45.352 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:45.354 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [63ms] +2025-07-10 16:17:45.356 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:17:45.357 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:45.410 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [54ms] +2025-07-10 16:17:45.697 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [69ms] +2025-07-10 16:17:45.698 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:45.698 [info] > git show --textconv :docs/hxzx/营销管理.md [73ms] +2025-07-10 16:17:45.702 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [72ms] +2025-07-10 16:17:45.705 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [70ms] +2025-07-10 16:17:45.705 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:45.772 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [67ms] +2025-07-10 16:17:46.128 [info] > git show --textconv :docs/hxzx/商品管理.md [62ms] +2025-07-10 16:17:46.132 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [63ms] +2025-07-10 16:17:46.133 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:46.134 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [63ms] +2025-07-10 16:17:46.136 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [63ms] +2025-07-10 16:17:46.137 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:46.190 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [54ms] +2025-07-10 16:17:46.516 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [57ms] +2025-07-10 16:17:46.520 [info] > git show --textconv :docs/hxzx/分销体系.md [62ms] +2025-07-10 16:17:46.574 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [55ms] +2025-07-10 16:17:46.955 [info] > git show --textconv :docs/hxzx/订单管理.md [80ms] +2025-07-10 16:17:46.959 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [83ms] +2025-07-10 16:17:46.959 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:46.962 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [84ms] +2025-07-10 16:17:46.969 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [88ms] +2025-07-10 16:17:46.969 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:47.033 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [69ms] +2025-07-10 16:17:47.616 [info] > git show --textconv :docs/hxzx/登录后台.md [61ms] +2025-07-10 16:17:47.617 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [60ms] +2025-07-10 16:17:47.618 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:47.620 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [60ms] +2025-07-10 16:17:47.623 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [61ms] +2025-07-10 16:17:47.623 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:47.676 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [55ms] +2025-07-10 16:17:50.009 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [60ms] +2025-07-10 16:17:50.012 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [64ms] +2025-07-10 16:17:50.012 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:50.012 [info] > git show --textconv :docs/hxzx/登录后台.md [68ms] +2025-07-10 16:17:50.013 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [61ms] +2025-07-10 16:17:50.013 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:50.066 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [54ms] +2025-07-10 16:17:50.468 [info] > git show --textconv :docs/hxzx/订单管理.md [62ms] +2025-07-10 16:17:50.472 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [62ms] +2025-07-10 16:17:50.474 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [66ms] +2025-07-10 16:17:50.474 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:50.475 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [62ms] +2025-07-10 16:17:50.475 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:17:50.529 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [55ms] +2025-07-10 16:18:03.056 [info] > git show --textconv :docs/hxzx/订单管理.md [69ms] +2025-07-10 16:18:03.060 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [70ms] +2025-07-10 16:18:03.060 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:18:03.062 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [70ms] +2025-07-10 16:18:03.064 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [69ms] +2025-07-10 16:18:03.064 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:18:03.119 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [55ms] +2025-07-10 16:18:04.819 [info] > git show --textconv :docs/hxzx/商品管理.md [62ms] +2025-07-10 16:18:04.820 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [61ms] +2025-07-10 16:18:04.821 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:18:04.823 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [62ms] +2025-07-10 16:18:04.826 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [63ms] +2025-07-10 16:18:04.826 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:18:04.882 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [57ms] +2025-07-10 16:18:06.258 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [64ms] +2025-07-10 16:18:06.258 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:18:06.259 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-10 16:18:06.261 [info] > git show --textconv :docs/hxzx/营销管理.md [69ms] +2025-07-10 16:18:06.261 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [61ms] +2025-07-10 16:18:06.262 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:18:06.318 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [57ms] +2025-07-10 16:18:07.050 [info] > git show --textconv :docs/hxzx/账号权限管理.md [63ms] +2025-07-10 16:18:07.050 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [61ms] +2025-07-10 16:18:07.050 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:18:07.053 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [61ms] +2025-07-10 16:18:07.057 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [63ms] +2025-07-10 16:18:07.057 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:18:07.111 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [57ms] +2025-07-10 16:18:13.288 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [94ms] +2025-07-10 16:18:13.289 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:18:13.291 [info] > git show --textconv :docs/hxzx/登录后台.md [99ms] +2025-07-10 16:18:13.300 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [103ms] +2025-07-10 16:18:13.302 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [102ms] +2025-07-10 16:18:13.302 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:18:13.355 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [53ms] +2025-07-10 16:18:43.557 [info] > git ls-files --stage -- docs/crm/1、登录系统.md [53ms] +2025-07-10 16:18:43.559 [info] > git show --textconv :docs/crm/1、登录系统.md [58ms] +2025-07-10 16:18:43.613 [info] > git cat-file -s e2f8c2ea8433f89ea0083966503a5686ca12987d [54ms] +2025-07-10 16:19:05.978 [info] > git show --textconv :docs/hxzx/登录后台.md [65ms] +2025-07-10 16:19:05.978 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [63ms] +2025-07-10 16:19:05.978 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:19:05.980 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [61ms] +2025-07-10 16:19:05.984 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [63ms] +2025-07-10 16:19:05.984 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:19:06.038 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [55ms] +2025-07-10 16:19:08.065 [info] > git show --textconv :docs/hxzx/订单管理.md [89ms] +2025-07-10 16:19:08.074 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [92ms] +2025-07-10 16:19:08.077 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [98ms] +2025-07-10 16:19:08.077 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [91ms] +2025-07-10 16:19:08.077 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:19:08.077 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:19:08.130 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [53ms] +2025-07-10 16:19:10.833 [info] > git show --textconv :docs/hxzx/商品管理.md [63ms] +2025-07-10 16:19:10.839 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [66ms] +2025-07-10 16:19:10.839 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:19:10.840 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [65ms] +2025-07-10 16:19:10.842 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [65ms] +2025-07-10 16:19:10.842 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:19:10.903 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [61ms] +2025-07-10 16:19:13.567 [info] > git show --textconv :docs/hxzx/营销管理.md [62ms] +2025-07-10 16:19:13.567 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [60ms] +2025-07-10 16:19:13.567 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:19:13.570 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-10 16:19:13.573 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [62ms] +2025-07-10 16:19:13.573 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:19:13.626 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [53ms] +2025-07-10 16:19:15.154 [info] > git show --textconv :docs/hxzx/账号权限管理.md [64ms] +2025-07-10 16:19:15.154 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:19:15.154 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:19:15.156 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:19:15.158 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:19:15.158 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:19:15.211 [info] > git cat-file -s c1336c67e38428134b37c5073e8e158bdb71f50d [53ms] +2025-07-10 16:20:15.031 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [86ms] +2025-07-10 16:20:15.049 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [101ms] +2025-07-10 16:20:35.607 [info] > git log --format=%H%n%aN%n%aE%n%at%n%ct%n%P%n%D%n%B -z --shortstat --diff-merges=first-parent -n50 --skip=0 --topo-order --decorate=full --stdin [1073ms] +2025-07-10 16:20:37.385 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [61ms] +2025-07-10 16:20:37.388 [info] > git show --textconv :docs/hxzx/订单管理.md [65ms] +2025-07-10 16:20:37.441 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [53ms] +2025-07-10 16:20:37.907 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 16:20:53.740 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [76ms] +2025-07-10 16:20:53.743 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [71ms] +2025-07-10 16:20:53.744 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [74ms] +2025-07-10 16:20:53.799 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [57ms] +2025-07-10 16:21:12.593 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [64ms] +2025-07-10 16:21:12.593 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 16:21:15.738 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [66ms] +2025-07-10 16:21:15.739 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [72ms] +2025-07-10 16:21:17.112 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [63ms] +2025-07-10 16:21:17.112 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 16:21:18.440 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 16:21:18.950 [info] > git symbolic-ref --short HEAD [61ms] +2025-07-10 16:21:18.952 [info] > git config --get commit.template [61ms] +2025-07-10 16:21:19.006 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [54ms] +2025-07-10 16:21:19.008 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:21:19.060 [info] > git rev-parse refs/remotes/origin/master [51ms] +2025-07-10 16:21:19.126 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [61ms] +2025-07-10 16:21:19.127 [info] > git status -z -uall [64ms] +2025-07-10 16:21:35.152 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [71ms] +2025-07-10 16:21:35.153 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [66ms] +2025-07-10 16:21:46.674 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [75ms] +2025-07-10 16:21:46.679 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [82ms] +2025-07-10 16:21:55.167 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [61ms] +2025-07-10 16:21:55.167 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [58ms] +2025-07-10 16:21:56.699 [info] > git check-ignore -v -z --stdin [62ms] +2025-07-10 16:21:57.256 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 16:21:57.258 [info] > git config --get commit.template [58ms] +2025-07-10 16:21:57.318 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [60ms] +2025-07-10 16:21:57.320 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:21:57.374 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 16:21:57.438 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [60ms] +2025-07-10 16:21:57.441 [info] > git status -z -uall [65ms] +2025-07-10 16:22:11.407 [info] > git show --textconv :docs/hxzx/商品管理.md [65ms] +2025-07-10 16:22:11.409 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [60ms] +2025-07-10 16:22:11.412 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [66ms] +2025-07-10 16:22:11.412 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:22:11.415 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [64ms] +2025-07-10 16:22:11.416 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:22:11.468 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [56ms] +2025-07-10 16:22:11.983 [info] > git show --textconv :docs/hxzx/订单管理.md [65ms] +2025-07-10 16:22:11.987 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [63ms] +2025-07-10 16:22:11.989 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [68ms] +2025-07-10 16:22:11.989 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:22:11.990 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [64ms] +2025-07-10 16:22:11.990 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:22:12.045 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [57ms] +2025-07-10 16:22:12.562 [info] > git show --textconv :docs/hxzx/登录后台.md [63ms] +2025-07-10 16:22:12.564 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [63ms] +2025-07-10 16:22:12.564 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:22:12.565 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [62ms] +2025-07-10 16:22:12.567 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [63ms] +2025-07-10 16:22:12.568 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:22:12.625 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [58ms] +2025-07-10 16:22:17.762 [info] > git show --textconv :docs/hxzx/登录后台.md [64ms] +2025-07-10 16:22:17.763 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [63ms] +2025-07-10 16:22:17.763 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:22:17.764 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [62ms] +2025-07-10 16:22:17.768 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [63ms] +2025-07-10 16:22:17.768 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:22:17.821 [info] > git cat-file -s 8b492ee109211a2cb31942a940383128b6cee2b4 [55ms] +2025-07-10 16:22:19.259 [info] > git show --textconv :docs/hxzx/订单管理.md [63ms] +2025-07-10 16:22:19.264 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [64ms] +2025-07-10 16:22:19.264 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:22:19.266 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [64ms] +2025-07-10 16:22:19.269 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [65ms] +2025-07-10 16:22:19.269 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:22:19.324 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [56ms] +2025-07-10 16:22:19.859 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [55ms] +2025-07-10 16:22:19.862 [info] > git show --textconv :docs/hxzx/分销体系.md [61ms] +2025-07-10 16:22:19.929 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [68ms] +2025-07-10 16:22:20.850 [info] > git show --textconv :docs/hxzx/商品管理.md [64ms] +2025-07-10 16:22:20.850 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [63ms] +2025-07-10 16:22:20.850 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:22:20.851 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [62ms] +2025-07-10 16:22:20.854 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [61ms] +2025-07-10 16:22:20.854 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:22:20.907 [info] > git cat-file -s a350a90c05d053a2c37e7749d1658722fd62d3da [54ms] +2025-07-10 16:22:22.513 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [57ms] +2025-07-10 16:22:22.515 [info] > git show --textconv :docs/hxzx/分销体系.md [63ms] +2025-07-10 16:22:22.572 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [56ms] +2025-07-10 16:23:18.437 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 16:23:18.440 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 16:23:21.923 [info] > git log --format=%H%n%aN%n%aE%n%at%n%ct%n%P%n%D%n%B -z --shortstat --diff-merges=first-parent -n50 --skip=0 --topo-order --decorate=full --stdin [1069ms] +2025-07-10 16:23:24.643 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [65ms] +2025-07-10 16:23:24.645 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [64ms] +2025-07-10 16:23:24.693 [info] > git add -A -- docs/hxzx/登录后台.md docs/hxzx/账号权限管理.md docs/hxzx/商品管理.md docs/hxzx/订单管理.md docs/hxzx/营销管理.md [69ms] +2025-07-10 16:23:24.755 [info] > git config --get commit.template [57ms] +2025-07-10 16:23:24.755 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 16:23:24.832 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [75ms] +2025-07-10 16:23:24.834 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:23:24.893 [info] > git rev-parse refs/remotes/origin/master [59ms] +2025-07-10 16:23:24.957 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 16:23:24.960 [info] > git status -z -uall [65ms] +2025-07-10 16:23:25.038 [info] > git -c user.useConfigOnly=true commit --quiet [73ms] +2025-07-10 16:23:25.039 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:23:25.099 [info] > git config --get-all user.name [59ms] +2025-07-10 16:23:25.156 [info] > git config --get commit.template [53ms] +2025-07-10 16:23:25.157 [info] > git symbolic-ref --short HEAD [56ms] +2025-07-10 16:23:25.216 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 16:23:25.218 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:23:25.269 [info] > git rev-parse refs/remotes/origin/master [51ms] +2025-07-10 16:23:25.330 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 16:23:25.334 [info] > git status -z -uall [63ms] +2025-07-10 16:23:28.314 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [91ms] +2025-07-10 16:23:28.316 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [101ms] +2025-07-10 16:23:28.318 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [85ms] +2025-07-10 16:23:28.324 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [86ms] +2025-07-10 16:23:28.327 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [86ms] +2025-07-10 16:23:28.330 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [95ms] +2025-07-10 16:23:28.390 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [62ms] +2025-07-10 16:23:28.391 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [62ms] +2025-07-10 16:23:28.622 [info] > git show --textconv 84e81a2b2f02798acbb48e1045be9ddac82d8632:docs/hxzx/分销体系.md [76ms] +2025-07-10 16:23:28.657 [info] > git show --textconv 3091e1b89a47e6798a989bdbbd067c4b5c5d8178:docs/hxzx/分销体系.md [95ms] +2025-07-10 16:23:28.668 [info] > git show --textconv 3091e1b89a47e6798a989bdbbd067c4b5c5d8178:docs/hxzx/分销体系.md [101ms] +2025-07-10 16:23:28.668 [info] > git show --textconv :docs/hxzx/订单管理.md [96ms] +2025-07-10 16:23:28.669 [info] > git show --textconv 84e81a2b2f02798acbb48e1045be9ddac82d8632:docs/hxzx/分销体系.md [100ms] +2025-07-10 16:23:28.676 [info] > git show --textconv :docs/hxzx/分销体系.md [100ms] +2025-07-10 16:23:29.303 [info] > git config --get commit.template [62ms] +2025-07-10 16:23:29.304 [info] > git symbolic-ref --short HEAD [66ms] +2025-07-10 16:23:29.369 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [63ms] +2025-07-10 16:23:29.371 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:23:29.430 [info] > git rev-parse refs/remotes/origin/master [59ms] +2025-07-10 16:23:29.497 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [62ms] +2025-07-10 16:23:29.501 [info] > git status -z -uall [68ms] +2025-07-10 16:23:34.077 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [90ms] +2025-07-10 16:23:34.078 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [82ms] +2025-07-10 16:23:35.607 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [67ms] +2025-07-10 16:23:35.608 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [64ms] +2025-07-10 16:23:52.573 [info] > git -c user.useConfigOnly=true commit --quiet [60ms] +2025-07-10 16:23:52.573 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:23:52.634 [info] > git config --get-all user.name [58ms] +2025-07-10 16:23:52.695 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 16:23:52.698 [info] > git config --get commit.template [59ms] +2025-07-10 16:23:52.755 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 16:23:52.757 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:23:52.814 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 16:23:52.873 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 16:23:52.878 [info] > git status -z -uall [62ms] +2025-07-10 16:23:57.911 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [73ms] +2025-07-10 16:23:57.912 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [70ms] +2025-07-10 16:24:01.445 [info] > git -c user.useConfigOnly=true commit --quiet [60ms] +2025-07-10 16:24:01.446 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:24:01.505 [info] > git config --get-all user.name [57ms] +2025-07-10 16:24:01.568 [info] > git config --get commit.template [58ms] +2025-07-10 16:24:01.568 [info] > git symbolic-ref --short HEAD [61ms] +2025-07-10 16:24:01.629 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-10 16:24:01.632 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:24:01.685 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 16:24:01.749 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [58ms] +2025-07-10 16:24:01.752 [info] > git status -z -uall [64ms] +2025-07-10 16:24:03.412 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [108ms] +2025-07-10 16:24:03.413 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [102ms] +2025-07-10 16:24:29.149 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [78ms] +2025-07-10 16:24:29.150 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [71ms] +2025-07-10 16:24:30.897 [info] > git -c user.useConfigOnly=true commit --quiet [64ms] +2025-07-10 16:24:30.898 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:24:30.955 [info] > git config --get-all user.name [56ms] +2025-07-10 16:24:31.016 [info] > git config --get commit.template [55ms] +2025-07-10 16:24:31.017 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 16:24:31.078 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [60ms] +2025-07-10 16:24:31.081 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:24:31.135 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 16:24:31.198 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [58ms] +2025-07-10 16:24:31.201 [info] > git status -z -uall [63ms] +2025-07-10 16:24:37.320 [info] > git ls-tree -l 3091e1b89a47e6798a989bdbbd067c4b5c5d8178 -- docs/hxzx/分销体系.md [62ms] +2025-07-10 16:24:37.321 [info] > git ls-tree -l 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/分销体系.md [59ms] +2025-07-10 16:24:47.982 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [58ms] +2025-07-10 16:24:51.386 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 16:25:03.843 [info] > git log --format=%H%n%aN%n%aE%n%at%n%ct%n%P%n%D%n%B -z --shortstat --diff-merges=first-parent -n50 --skip=0 --topo-order --decorate=full --stdin [1060ms] +2025-07-10 16:25:08.015 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [59ms] +2025-07-10 16:25:08.018 [info] > git show --textconv :docs/hxzx/登录后台.md [63ms] +2025-07-10 16:25:08.075 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [57ms] +2025-07-10 16:25:14.138 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [61ms] +2025-07-10 16:25:14.140 [info] > git show --textconv :docs/hxzx/账号权限管理.md [66ms] +2025-07-10 16:25:14.199 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 16:25:14.480 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [63ms] +2025-07-10 16:25:14.483 [info] > git show --textconv :docs/hxzx/商品管理.md [69ms] +2025-07-10 16:25:14.545 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [62ms] +2025-07-10 16:25:14.697 [info] > git check-ignore -v -z --stdin [109ms] +2025-07-10 16:25:15.904 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [54ms] +2025-07-10 16:25:15.906 [info] > git show --textconv :docs/hxzx/订单管理.md [59ms] +2025-07-10 16:25:15.959 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [54ms] +2025-07-10 16:25:17.608 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [57ms] +2025-07-10 16:25:17.611 [info] > git show --textconv :docs/hxzx/登录后台.md [61ms] +2025-07-10 16:25:17.667 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [56ms] +2025-07-10 16:25:21.148 [info] > git show --textconv :docs/hxzx/营销管理.md [111ms] +2025-07-10 16:25:21.157 [info] > git show --textconv :docs/hxzx/订单管理.md [125ms] +2025-07-10 16:25:21.168 [info] > git show --textconv :docs/hxzx/image/分销体系/image-shouhou.png [125ms] +2025-07-10 16:25:21.169 [info] > git show --textconv :docs/hxzx/商品管理.md [134ms] +2025-07-10 16:25:21.169 [info] > git show --textconv :docs/hxzx/账号权限管理.md [130ms] +2025-07-10 16:25:21.175 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [127ms] +2025-07-10 16:25:21.182 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [129ms] +2025-07-10 16:25:21.187 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [142ms] +2025-07-10 16:25:21.191 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [140ms] +2025-07-10 16:25:21.194 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/image-shouhou.png [130ms] +2025-07-10 16:25:21.199 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [120ms] +2025-07-10 16:25:21.210 [info] > git show --textconv :docs/hxzx/登录后台.md [140ms] +2025-07-10 16:25:21.255 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [78ms] +2025-07-10 16:25:21.269 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [78ms] +2025-07-10 16:25:21.270 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [86ms] +2025-07-10 16:25:21.281 [info] > git cat-file -s 6dfb5513bd110e562b0efdc94beb54652633947d [84ms] +2025-07-10 16:25:21.281 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [87ms] +2025-07-10 16:25:21.284 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [81ms] +2025-07-10 16:25:52.053 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [59ms] +2025-07-10 16:25:52.114 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [58ms] +2025-07-10 16:25:52.674 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [60ms] +2025-07-10 16:25:52.771 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [94ms] +2025-07-10 16:26:01.746 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [71ms] +2025-07-10 16:26:01.811 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [61ms] +2025-07-10 16:26:02.497 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [60ms] +2025-07-10 16:26:02.590 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [90ms] +2025-07-10 16:26:02.969 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [58ms] +2025-07-10 16:26:03.029 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [58ms] +2025-07-10 16:26:03.399 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [58ms] +2025-07-10 16:26:03.458 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-10 16:26:03.943 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 16:26:09.175 [info] > git -c user.useConfigOnly=true commit --quiet --amend [65ms] +2025-07-10 16:26:09.175 [info] Committer identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:26:09.233 [info] > git config --get-all user.name [56ms] +2025-07-10 16:26:09.292 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-10 16:26:09.296 [info] > git config --get commit.template [57ms] +2025-07-10 16:26:09.352 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 16:26:09.355 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:26:09.411 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 16:26:09.476 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 16:26:09.480 [info] > git status -z -uall [67ms] +2025-07-10 16:26:12.076 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [97ms] +2025-07-10 16:26:12.085 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [92ms] +2025-07-10 16:26:12.096 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [110ms] +2025-07-10 16:26:12.100 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [116ms] +2025-07-10 16:26:12.113 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [117ms] +2025-07-10 16:26:12.130 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [130ms] +2025-07-10 16:26:12.133 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [130ms] +2025-07-10 16:26:12.145 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [140ms] +2025-07-10 16:26:12.199 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [119ms] +2025-07-10 16:26:12.219 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [118ms] +2025-07-10 16:26:12.250 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [112ms] +2025-07-10 16:26:12.250 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [154ms] +2025-07-10 16:26:12.254 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [151ms] +2025-07-10 16:26:12.260 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [143ms] +2025-07-10 16:26:12.309 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [159ms] +2025-07-10 16:26:12.317 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [183ms] +2025-07-10 16:26:12.411 [info] > git show --textconv :docs/hxzx/营销管理.md [209ms] +2025-07-10 16:26:12.416 [info] > git show --textconv :docs/hxzx/账号权限管理.md [192ms] +2025-07-10 16:26:12.445 [info] > git show --textconv :docs/hxzx/营销管理.md [190ms] +2025-07-10 16:26:12.445 [info] > git show --textconv :docs/hxzx/商品管理.md [181ms] +2025-07-10 16:26:12.450 [info] > git show --textconv :docs/hxzx/订单管理.md [161ms] +2025-07-10 16:26:12.452 [info] > git show --textconv :docs/hxzx/登录后台.md [194ms] +2025-07-10 16:26:12.479 [info] > git show --textconv :docs/hxzx/账号权限管理.md [139ms] +2025-07-10 16:26:12.480 [info] > git show --textconv :docs/hxzx/商品管理.md [136ms] +2025-07-10 16:26:13.054 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-10 16:26:13.056 [info] > git config --get commit.template [61ms] +2025-07-10 16:26:13.117 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [62ms] +2025-07-10 16:26:13.120 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:26:13.183 [info] > git rev-parse refs/remotes/origin/master [63ms] +2025-07-10 16:26:13.249 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [62ms] +2025-07-10 16:26:13.251 [info] > git status -z -uall [65ms] +2025-07-10 16:26:27.225 [info] > git -c user.useConfigOnly=true commit --quiet [65ms] +2025-07-10 16:26:27.225 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:26:27.330 [info] > git config --get-all user.name [103ms] +2025-07-10 16:26:27.399 [info] > git config --get commit.template [65ms] +2025-07-10 16:26:27.400 [info] > git symbolic-ref --short HEAD [67ms] +2025-07-10 16:26:27.457 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [54ms] +2025-07-10 16:26:27.459 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:26:27.512 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 16:26:27.575 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 16:26:27.579 [info] > git status -z -uall [64ms] +2025-07-10 16:26:32.931 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-10 16:26:32.934 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [62ms] +2025-07-10 16:26:32.939 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [63ms] +2025-07-10 16:26:32.996 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [63ms] +2025-07-10 16:26:32.997 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [61ms] +2025-07-10 16:26:33.001 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-10 16:30:02.417 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [91ms] +2025-07-10 16:30:02.422 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [89ms] +2025-07-10 16:30:02.425 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [95ms] +2025-07-10 16:30:02.489 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [69ms] +2025-07-10 16:30:02.493 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [69ms] +2025-07-10 16:30:02.501 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [75ms] +2025-07-10 16:30:44.956 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [79ms] +2025-07-10 16:30:44.958 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [75ms] +2025-07-10 16:30:44.961 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [74ms] +2025-07-10 16:30:45.028 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [70ms] +2025-07-10 16:30:45.036 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [72ms] +2025-07-10 16:30:45.036 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [76ms] +2025-07-10 16:30:53.388 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [72ms] +2025-07-10 16:30:53.391 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [78ms] +2025-07-10 16:30:53.394 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [73ms] +2025-07-10 16:30:53.454 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 16:30:53.454 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [64ms] +2025-07-10 16:30:53.458 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [61ms] +2025-07-10 16:30:59.934 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [73ms] +2025-07-10 16:30:59.936 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [71ms] +2025-07-10 16:30:59.941 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [73ms] +2025-07-10 16:31:00.000 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [63ms] +2025-07-10 16:31:00.004 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [65ms] +2025-07-10 16:31:00.009 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [66ms] +2025-07-10 16:31:14.956 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [91ms] +2025-07-10 16:31:14.960 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [90ms] +2025-07-10 16:31:14.963 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [83ms] +2025-07-10 16:31:15.029 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [70ms] +2025-07-10 16:31:15.033 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [69ms] +2025-07-10 16:31:15.036 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [69ms] +2025-07-10 16:31:35.407 [info] > git add -A -- docs/hxzx/image-1.png docs/hxzx/image.png docs/hxzx/image/image.png docs/hxzx/image/分销体系/image.png docs/hxzx/image/分销体系/imghoutai/1111.png docs/hxzx/image/分销体系/imghoutai/图片10.png docs/hxzx/image/分销体系/imghoutai/图片11.png docs/hxzx/image/分销体系/imghoutai/图片12.png docs/hxzx/image/分销体系/imghoutai/图片3.png docs/hxzx/image/分销体系/imghoutai/图片4.png docs/hxzx/image/分销体系/imghoutai/图片6.png docs/hxzx/image/分销体系/imghoutai/图片7.png docs/hxzx/image/分销体系/imghoutai/图片8.png docs/hxzx/image/分销体系/imghoutai/图片9.png docs/hxzx/image/分销体系/imghoutai/微信截图_20250710152635.png docs/hxzx/image/分销体系/imghoutai/微信截图_20250710152838.png docs/hxzx/image/分销体系/imghoutai/微信截图_20250710153324.png docs/hxzx/image/分销体系/imghoutai/微信截图_20250710153839.png docs/hxzx/image/分销体系/imghoutai/微信截图_20250710154636.png docs/hxzx/image/图片2.png docs/hxzx/安全管理.md docs/hxzx/常见问题解答.md docs/hxzx/终端管理.md [216ms] +2025-07-10 16:31:35.468 [info] > git config --get commit.template [56ms] +2025-07-10 16:31:35.468 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 16:31:35.528 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 16:31:35.530 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:31:35.621 [info] > git rev-parse refs/remotes/origin/master [91ms] +2025-07-10 16:31:35.691 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [65ms] +2025-07-10 16:31:35.695 [info] > git status -z -uall [72ms] +2025-07-10 16:31:36.745 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [65ms] +2025-07-10 16:31:36.747 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [66ms] +2025-07-10 16:31:36.751 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [66ms] +2025-07-10 16:31:36.754 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-10 16:31:36.757 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [67ms] +2025-07-10 16:31:36.811 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [64ms] +2025-07-10 16:31:36.815 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [65ms] +2025-07-10 16:31:36.821 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [67ms] +2025-07-10 16:31:36.825 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [69ms] +2025-07-10 16:31:36.826 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [66ms] +2025-07-10 16:31:36.893 [info] > git show --textconv :docs/hxzx/登录后台.md [78ms] +2025-07-10 16:31:36.893 [info] > git show --textconv :docs/hxzx/订单管理.md [75ms] +2025-07-10 16:31:36.901 [info] > git show --textconv :docs/hxzx/商品管理.md [77ms] +2025-07-10 16:31:36.905 [info] > git show --textconv :docs/hxzx/营销管理.md [76ms] +2025-07-10 16:31:36.906 [info] > git show --textconv :docs/hxzx/账号权限管理.md [73ms] +2025-07-10 16:31:37.747 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-10 16:31:37.749 [info] > git config --get commit.template [60ms] +2025-07-10 16:31:37.807 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [58ms] +2025-07-10 16:31:37.809 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:31:37.865 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 16:31:37.926 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-10 16:31:37.930 [info] > git status -z -uall [62ms] +2025-07-10 16:31:56.956 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [86ms] +2025-07-10 16:31:56.960 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [86ms] +2025-07-10 16:31:56.966 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [85ms] +2025-07-10 16:31:57.030 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [71ms] +2025-07-10 16:31:57.038 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [75ms] +2025-07-10 16:31:57.042 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [72ms] +2025-07-10 16:32:19.327 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [76ms] +2025-07-10 16:32:19.330 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [69ms] +2025-07-10 16:32:19.332 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [84ms] +2025-07-10 16:32:19.392 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 16:32:19.393 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [64ms] +2025-07-10 16:32:19.393 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-10 16:32:56.554 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [83ms] +2025-07-10 16:32:56.558 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 16:32:56.561 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [78ms] +2025-07-10 16:32:56.614 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-10 16:32:56.621 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 16:32:56.622 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [59ms] +2025-07-10 16:34:20.162 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [71ms] +2025-07-10 16:34:20.164 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [71ms] +2025-07-10 16:34:20.168 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 16:34:20.224 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [61ms] +2025-07-10 16:34:20.225 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [58ms] +2025-07-10 16:34:20.228 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [58ms] +2025-07-10 16:35:32.419 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [72ms] +2025-07-10 16:35:32.422 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [71ms] +2025-07-10 16:35:32.424 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 16:35:32.480 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-10 16:35:32.481 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [57ms] +2025-07-10 16:35:32.484 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-10 16:38:09.264 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [66ms] +2025-07-10 16:38:09.267 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [73ms] +2025-07-10 16:38:09.270 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [81ms] +2025-07-10 16:38:09.323 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [56ms] +2025-07-10 16:38:09.323 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [54ms] +2025-07-10 16:38:09.326 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [54ms] +2025-07-10 16:38:23.975 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [105ms] +2025-07-10 16:38:23.978 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [105ms] +2025-07-10 16:38:23.981 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [107ms] +2025-07-10 16:38:24.055 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [73ms] +2025-07-10 16:38:24.058 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [81ms] +2025-07-10 16:38:24.059 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [75ms] +2025-07-10 16:38:24.062 [info] > git add -A -- docs/hxzx/终端管理.md docs/hxzx/安全管理.md docs/hxzx/常见问题解答.md [134ms] +2025-07-10 16:38:24.125 [info] > git config --get commit.template [58ms] +2025-07-10 16:38:24.125 [info] > git symbolic-ref --short HEAD [61ms] +2025-07-10 16:38:24.193 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [66ms] +2025-07-10 16:38:24.196 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:38:24.251 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 16:38:24.312 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 16:38:24.316 [info] > git status -z -uall [63ms] +2025-07-10 16:38:24.399 [info] > git -c user.useConfigOnly=true commit --quiet [78ms] +2025-07-10 16:38:24.399 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:38:24.460 [info] > git config --get-all user.name [59ms] +2025-07-10 16:38:24.521 [info] > git config --get commit.template [55ms] +2025-07-10 16:38:24.522 [info] > git symbolic-ref --short HEAD [58ms] +2025-07-10 16:38:24.581 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 16:38:24.583 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:38:24.639 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 16:38:24.702 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 16:38:24.706 [info] > git status -z -uall [65ms] +2025-07-10 16:38:26.610 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [75ms] +2025-07-10 16:38:26.615 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [83ms] +2025-07-10 16:38:26.619 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [77ms] +2025-07-10 16:38:26.622 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [83ms] +2025-07-10 16:38:26.625 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [80ms] +2025-07-10 16:38:26.629 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [81ms] +2025-07-10 16:38:26.635 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [84ms] +2025-07-10 16:38:26.639 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [84ms] +2025-07-10 16:38:26.694 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [80ms] +2025-07-10 16:38:26.703 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [85ms] +2025-07-10 16:38:26.706 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [82ms] +2025-07-10 16:38:26.707 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [86ms] +2025-07-10 16:38:26.714 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [87ms] +2025-07-10 16:38:26.721 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [89ms] +2025-07-10 16:38:26.725 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [88ms] +2025-07-10 16:38:26.726 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [85ms] +2025-07-10 16:38:26.777 [info] > git show --textconv :docs/hxzx/商品管理.md [80ms] +2025-07-10 16:38:26.788 [info] > git show --textconv :docs/hxzx/营销管理.md [81ms] +2025-07-10 16:38:26.796 [info] > git show --textconv :docs/hxzx/登录后台.md [83ms] +2025-07-10 16:38:26.800 [info] > git show --textconv :docs/hxzx/账号权限管理.md [90ms] +2025-07-10 16:38:26.803 [info] > git show --textconv :docs/hxzx/订单管理.md [86ms] +2025-07-10 16:38:26.807 [info] > git show --textconv :docs/hxzx/商品管理.md [82ms] +2025-07-10 16:38:26.809 [info] > git show --textconv :docs/hxzx/营销管理.md [79ms] +2025-07-10 16:38:26.810 [info] > git show --textconv :docs/hxzx/账号权限管理.md [78ms] +2025-07-10 16:38:27.635 [info] > git config --get commit.template [79ms] +2025-07-10 16:38:27.635 [info] > git symbolic-ref --short HEAD [83ms] +2025-07-10 16:38:27.692 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 16:38:27.695 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:38:27.751 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 16:38:27.816 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 16:38:27.820 [info] > git status -z -uall [67ms] +2025-07-10 16:38:37.400 [info] > git -c user.useConfigOnly=true commit --quiet [64ms] +2025-07-10 16:38:37.400 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:38:37.457 [info] > git config --get-all user.name [53ms] +2025-07-10 16:38:37.515 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-10 16:38:37.517 [info] > git config --get commit.template [57ms] +2025-07-10 16:38:37.573 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 16:38:37.575 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:38:37.627 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 16:38:37.686 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [54ms] +2025-07-10 16:38:37.690 [info] > git status -z -uall [60ms] +2025-07-10 16:38:39.382 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-10 16:38:39.386 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [64ms] +2025-07-10 16:38:39.388 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [69ms] +2025-07-10 16:38:39.448 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [64ms] +2025-07-10 16:38:39.449 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 16:38:39.452 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [62ms] +2025-07-10 16:38:43.883 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [73ms] +2025-07-10 16:38:43.886 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [72ms] +2025-07-10 16:38:43.888 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 16:38:43.946 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [61ms] +2025-07-10 16:38:43.950 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 16:38:43.950 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [62ms] +2025-07-10 16:39:23.569 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [79ms] +2025-07-10 16:39:23.573 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [91ms] +2025-07-10 16:39:23.575 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [90ms] +2025-07-10 16:39:23.650 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [78ms] +2025-07-10 16:39:23.654 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [79ms] +2025-07-10 16:39:23.657 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [77ms] +2025-07-10 16:39:37.646 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [69ms] +2025-07-10 16:39:37.649 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [67ms] +2025-07-10 16:39:37.651 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [80ms] +2025-07-10 16:39:37.712 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [64ms] +2025-07-10 16:39:37.713 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [62ms] +2025-07-10 16:39:37.713 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 16:39:38.967 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [64ms] +2025-07-10 16:39:38.970 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [58ms] +2025-07-10 16:39:38.973 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [65ms] +2025-07-10 16:39:39.025 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-10 16:39:39.028 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [55ms] +2025-07-10 16:39:39.030 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [55ms] +2025-07-10 16:40:18.873 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [74ms] +2025-07-10 16:40:18.880 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [76ms] +2025-07-10 16:40:18.882 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [75ms] +2025-07-10 16:40:18.930 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [55ms] +2025-07-10 16:40:18.937 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [55ms] +2025-07-10 16:40:18.938 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [54ms] +2025-07-10 16:40:27.913 [info] > git -c user.useConfigOnly=true commit --quiet [64ms] +2025-07-10 16:40:27.913 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:40:27.970 [info] > git config --get-all user.name [55ms] +2025-07-10 16:40:28.028 [info] > git config --get commit.template [54ms] +2025-07-10 16:40:28.028 [info] > git symbolic-ref --short HEAD [56ms] +2025-07-10 16:40:28.084 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [54ms] +2025-07-10 16:40:28.087 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:40:28.140 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 16:40:28.201 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 16:40:28.202 [info] > git status -z -uall [61ms] +2025-07-10 16:40:30.549 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-10 16:40:30.552 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [64ms] +2025-07-10 16:40:30.554 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [63ms] +2025-07-10 16:40:30.610 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-10 16:40:30.614 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [61ms] +2025-07-10 16:40:30.615 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 16:40:38.064 [info] > git -c user.useConfigOnly=true commit --quiet [64ms] +2025-07-10 16:40:38.064 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:40:38.150 [info] > git config --get-all user.name [83ms] +2025-07-10 16:40:38.222 [info] > git config --get commit.template [67ms] +2025-07-10 16:40:38.223 [info] > git symbolic-ref --short HEAD [70ms] +2025-07-10 16:40:38.291 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [66ms] +2025-07-10 16:40:38.295 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:40:38.363 [info] > git rev-parse refs/remotes/origin/master [69ms] +2025-07-10 16:40:38.423 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-10 16:40:38.424 [info] > git status -z -uall [59ms] +2025-07-10 16:40:42.522 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [79ms] +2025-07-10 16:40:42.526 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [79ms] +2025-07-10 16:40:42.529 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [77ms] +2025-07-10 16:40:42.620 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [96ms] +2025-07-10 16:40:42.629 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [98ms] +2025-07-10 16:40:42.630 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [101ms] +2025-07-10 16:40:54.685 [info] > git -c user.useConfigOnly=true commit --quiet [61ms] +2025-07-10 16:40:54.685 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:40:54.750 [info] > git config --get-all user.name [62ms] +2025-07-10 16:40:54.812 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 16:40:54.815 [info] > git config --get commit.template [59ms] +2025-07-10 16:40:54.870 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 16:40:54.873 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:40:54.957 [info] > git rev-parse refs/remotes/origin/master [83ms] +2025-07-10 16:40:55.026 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 16:40:55.030 [info] > git status -z -uall [67ms] +2025-07-10 16:41:02.725 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [77ms] +2025-07-10 16:41:02.728 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [76ms] +2025-07-10 16:41:02.730 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [75ms] +2025-07-10 16:41:02.787 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 16:41:02.789 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [59ms] +2025-07-10 16:41:02.791 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-10 16:41:25.120 [info] > git -c user.useConfigOnly=true commit --quiet [63ms] +2025-07-10 16:41:25.120 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:41:25.175 [info] > git config --get-all user.name [53ms] +2025-07-10 16:41:25.235 [info] > git config --get commit.template [55ms] +2025-07-10 16:41:25.236 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 16:41:25.296 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [58ms] +2025-07-10 16:41:25.299 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:41:25.351 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 16:41:25.413 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 16:41:25.416 [info] > git status -z -uall [63ms] +2025-07-10 16:41:29.701 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [72ms] +2025-07-10 16:41:29.704 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [71ms] +2025-07-10 16:41:29.707 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [70ms] +2025-07-10 16:41:29.783 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [72ms] +2025-07-10 16:41:29.783 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [79ms] +2025-07-10 16:41:29.784 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [77ms] +2025-07-10 16:41:39.602 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [81ms] +2025-07-10 16:41:39.607 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [82ms] +2025-07-10 16:41:39.610 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [81ms] +2025-07-10 16:41:39.673 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [69ms] +2025-07-10 16:41:39.682 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [72ms] +2025-07-10 16:41:39.684 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [71ms] +2025-07-10 16:41:44.271 [info] > git -c user.useConfigOnly=true commit --quiet [63ms] +2025-07-10 16:41:44.271 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:41:44.328 [info] > git config --get-all user.name [55ms] +2025-07-10 16:41:44.386 [info] > git symbolic-ref --short HEAD [56ms] +2025-07-10 16:41:44.389 [info] > git config --get commit.template [56ms] +2025-07-10 16:41:44.444 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 16:41:44.446 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:41:44.500 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 16:41:44.560 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 16:41:44.563 [info] > git status -z -uall [60ms] +2025-07-10 16:41:49.110 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-10 16:41:49.113 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [66ms] +2025-07-10 16:41:49.116 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [66ms] +2025-07-10 16:41:49.174 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [62ms] +2025-07-10 16:41:49.178 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [63ms] +2025-07-10 16:41:49.181 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [63ms] +2025-07-10 16:41:50.307 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [122ms] +2025-07-10 16:41:50.314 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [118ms] +2025-07-10 16:41:50.316 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [128ms] +2025-07-10 16:41:50.371 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [61ms] +2025-07-10 16:41:50.378 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [62ms] +2025-07-10 16:41:50.380 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [63ms] +2025-07-10 16:41:55.261 [info] > git show --textconv :docs/hxzx/安全管理.md [61ms] +2025-07-10 16:41:55.265 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [62ms] +2025-07-10 16:41:55.265 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:41:55.267 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [62ms] +2025-07-10 16:41:55.270 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [63ms] +2025-07-10 16:41:55.270 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:41:55.323 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [54ms] +2025-07-10 16:41:55.385 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/安全管理.md [54ms] +2025-07-10 16:41:55.385 [info] fatal: no such path docs/hxzx/安全管理.md in 84e81a2b2f02798acbb48e1045be9ddac82d8632 +2025-07-10 16:42:24.937 [info] > git show --textconv :docs/hxzx/常见问题解答.md [64ms] +2025-07-10 16:42:24.939 [info] > git show --textconv HEAD:docs/hxzx/常见问题解答.md [62ms] +2025-07-10 16:42:24.939 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:42:24.940 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [61ms] +2025-07-10 16:42:24.945 [info] > git ls-tree -l HEAD -- docs/hxzx/常见问题解答.md [63ms] +2025-07-10 16:42:24.945 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:42:24.997 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [55ms] +2025-07-10 16:42:25.061 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/常见问题解答.md [57ms] +2025-07-10 16:42:25.061 [info] fatal: no such path docs/hxzx/常见问题解答.md in 84e81a2b2f02798acbb48e1045be9ddac82d8632 +2025-07-10 16:43:05.033 [info] > git -c user.useConfigOnly=true commit --quiet [64ms] +2025-07-10 16:43:05.033 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:43:05.089 [info] > git config --get-all user.name [54ms] +2025-07-10 16:43:05.149 [info] > git config --get commit.template [54ms] +2025-07-10 16:43:05.149 [info] > git symbolic-ref --short HEAD [58ms] +2025-07-10 16:43:05.207 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 16:43:05.209 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:43:05.261 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 16:43:05.322 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 16:43:05.325 [info] > git status -z -uall [62ms] +2025-07-10 16:43:17.382 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [65ms] +2025-07-10 16:43:17.387 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:43:17.389 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [69ms] +2025-07-10 16:43:17.443 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [59ms] +2025-07-10 16:43:17.447 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-10 16:43:17.447 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [55ms] +2025-07-10 16:43:37.718 [info] > git -c user.useConfigOnly=true commit --quiet [102ms] +2025-07-10 16:43:37.718 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:43:37.780 [info] > git config --get-all user.name [60ms] +2025-07-10 16:43:37.841 [info] > git config --get commit.template [56ms] +2025-07-10 16:43:37.841 [info] > git symbolic-ref --short HEAD [58ms] +2025-07-10 16:43:37.899 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 16:43:37.902 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:43:37.957 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 16:43:38.019 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [58ms] +2025-07-10 16:43:38.023 [info] > git status -z -uall [63ms] +2025-07-10 16:43:48.302 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [65ms] +2025-07-10 16:43:48.304 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [65ms] +2025-07-10 16:43:48.307 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [64ms] +2025-07-10 16:43:48.364 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-10 16:43:48.364 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [61ms] +2025-07-10 16:43:48.366 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [56ms] +2025-07-10 16:44:00.455 [info] > git -c user.useConfigOnly=true commit --quiet [63ms] +2025-07-10 16:44:00.455 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:44:00.512 [info] > git config --get-all user.name [55ms] +2025-07-10 16:44:00.570 [info] > git config --get commit.template [53ms] +2025-07-10 16:44:00.570 [info] > git symbolic-ref --short HEAD [56ms] +2025-07-10 16:44:00.628 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 16:44:00.630 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:44:00.683 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 16:44:00.743 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-10 16:44:00.747 [info] > git status -z -uall [62ms] +2025-07-10 16:44:02.465 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [69ms] +2025-07-10 16:44:02.472 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [72ms] +2025-07-10 16:44:02.475 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 16:44:02.527 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [60ms] +2025-07-10 16:44:02.536 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [61ms] +2025-07-10 16:44:02.536 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-10 16:44:52.042 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [89ms] +2025-07-10 16:44:52.049 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [92ms] +2025-07-10 16:44:52.055 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [94ms] +2025-07-10 16:44:52.114 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [69ms] +2025-07-10 16:44:52.117 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [66ms] +2025-07-10 16:44:52.124 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [66ms] +2025-07-10 16:44:55.106 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [74ms] +2025-07-10 16:44:55.109 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [80ms] +2025-07-10 16:44:55.111 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [76ms] +2025-07-10 16:44:55.167 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [56ms] +2025-07-10 16:44:55.167 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-10 16:44:55.170 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-10 16:44:55.557 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [75ms] +2025-07-10 16:44:55.563 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [71ms] +2025-07-10 16:44:55.565 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [70ms] +2025-07-10 16:44:55.636 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [76ms] +2025-07-10 16:44:55.637 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [72ms] +2025-07-10 16:44:55.638 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [71ms] +2025-07-10 16:46:55.337 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [98ms] +2025-07-10 16:46:55.340 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [83ms] +2025-07-10 16:46:55.342 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [91ms] +2025-07-10 16:46:55.408 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [69ms] +2025-07-10 16:46:55.425 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [82ms] +2025-07-10 16:46:55.428 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [82ms] +2025-07-10 16:47:00.501 [info] > git -c user.useConfigOnly=true commit --quiet [86ms] +2025-07-10 16:47:00.501 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:47:00.567 [info] > git config --get-all user.name [63ms] +2025-07-10 16:47:00.626 [info] > git config --get commit.template [54ms] +2025-07-10 16:47:00.627 [info] > git symbolic-ref --short HEAD [58ms] +2025-07-10 16:47:00.684 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 16:47:00.687 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:47:00.739 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 16:47:00.799 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-10 16:47:00.803 [info] > git status -z -uall [62ms] +2025-07-10 16:47:09.712 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-10 16:47:09.714 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [72ms] +2025-07-10 16:47:09.717 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [70ms] +2025-07-10 16:47:09.778 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [64ms] +2025-07-10 16:47:09.778 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [62ms] +2025-07-10 16:47:09.780 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [61ms] +2025-07-10 16:47:28.886 [info] > git symbolic-ref --short HEAD [75ms] +2025-07-10 16:47:28.890 [info] > git config --get commit.template [77ms] +2025-07-10 16:47:28.894 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [78ms] +2025-07-10 16:47:28.897 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [76ms] +2025-07-10 16:47:28.900 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [77ms] +2025-07-10 16:47:28.950 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [62ms] +2025-07-10 16:47:28.953 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:47:28.960 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [64ms] +2025-07-10 16:47:28.961 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 16:47:28.963 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [61ms] +2025-07-10 16:47:29.005 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 16:47:29.064 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 16:47:29.069 [info] > git status -z -uall [61ms] +2025-07-10 16:47:39.541 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [65ms] +2025-07-10 16:47:39.543 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [65ms] +2025-07-10 16:47:39.545 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [65ms] +2025-07-10 16:47:39.601 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [58ms] +2025-07-10 16:47:39.606 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 16:47:39.607 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 16:47:51.633 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [86ms] +2025-07-10 16:47:51.638 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [99ms] +2025-07-10 16:47:51.641 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [98ms] +2025-07-10 16:47:51.714 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [77ms] +2025-07-10 16:47:51.715 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [74ms] +2025-07-10 16:47:51.716 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [72ms] +2025-07-10 16:48:13.277 [info] > git -c user.useConfigOnly=true commit --quiet [68ms] +2025-07-10 16:48:13.277 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:48:13.335 [info] > git config --get-all user.name [56ms] +2025-07-10 16:48:13.395 [info] > git config --get commit.template [56ms] +2025-07-10 16:48:13.396 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 16:48:13.456 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [58ms] +2025-07-10 16:48:13.459 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:48:13.511 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 16:48:13.572 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 16:48:13.575 [info] > git status -z -uall [62ms] +2025-07-10 16:48:16.647 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [88ms] +2025-07-10 16:48:16.650 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [88ms] +2025-07-10 16:48:16.653 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [97ms] +2025-07-10 16:48:17.717 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [1067ms] +2025-07-10 16:48:17.718 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [1065ms] +2025-07-10 16:48:17.731 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [1076ms] +2025-07-10 16:48:49.894 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [73ms] +2025-07-10 16:48:49.899 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [75ms] +2025-07-10 16:48:49.902 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [75ms] +2025-07-10 16:48:49.961 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [65ms] +2025-07-10 16:48:49.967 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [66ms] +2025-07-10 16:48:49.970 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [66ms] +2025-07-10 16:48:51.599 [info] > git -c user.useConfigOnly=true commit --quiet [95ms] +2025-07-10 16:48:51.599 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 16:48:51.657 [info] > git config --get-all user.name [55ms] +2025-07-10 16:48:51.713 [info] > git config --get commit.template [52ms] +2025-07-10 16:48:51.713 [info] > git symbolic-ref --short HEAD [54ms] +2025-07-10 16:48:51.776 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [61ms] +2025-07-10 16:48:51.778 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:48:51.834 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 16:48:51.934 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [95ms] +2025-07-10 16:48:51.938 [info] > git status -z -uall [101ms] +2025-07-10 16:48:56.496 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [69ms] +2025-07-10 16:48:56.499 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [69ms] +2025-07-10 16:48:56.508 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [75ms] +2025-07-10 16:48:56.555 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [56ms] +2025-07-10 16:48:56.557 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-10 16:48:56.564 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [54ms] +2025-07-10 16:48:57.245 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [56ms] +2025-07-10 16:48:57.248 [info] > git show --textconv :docs/hxzx/安全管理.md [63ms] +2025-07-10 16:48:57.299 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [51ms] +2025-07-10 16:48:57.762 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 16:48:57.932 [info] > git show --textconv :docs/hxzx/常见问题解答.md [61ms] +2025-07-10 16:48:57.932 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [60ms] +2025-07-10 16:48:57.988 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [54ms] +2025-07-10 16:48:58.445 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 16:48:59.175 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [57ms] +2025-07-10 16:48:59.235 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [58ms] +2025-07-10 16:49:00.969 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [59ms] +2025-07-10 16:49:01.032 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [60ms] +2025-07-10 16:49:04.043 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [87ms] +2025-07-10 16:49:04.109 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [63ms] +2025-07-10 16:49:05.344 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [57ms] +2025-07-10 16:49:05.403 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-10 16:49:06.385 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [60ms] +2025-07-10 16:49:06.446 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-10 16:49:06.971 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [90ms] +2025-07-10 16:49:06.988 [info] > git show --textconv :docs/hxzx/终端管理.md [110ms] +2025-07-10 16:49:07.026 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [52ms] +2025-07-10 16:49:07.459 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 16:49:10.409 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [65ms] +2025-07-10 16:49:10.468 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [56ms] +2025-07-10 16:49:10.852 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [96ms] +2025-07-10 16:49:10.916 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [61ms] +2025-07-10 16:50:21.338 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-10 16:50:21.341 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [67ms] +2025-07-10 16:50:21.343 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [66ms] +2025-07-10 16:50:21.400 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 16:50:21.400 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [57ms] +2025-07-10 16:50:21.401 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [56ms] +2025-07-10 16:50:25.680 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [59ms] +2025-07-10 16:50:25.737 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [55ms] +2025-07-10 16:50:26.928 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [59ms] +2025-07-10 16:50:26.986 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [55ms] +2025-07-10 16:50:30.382 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [57ms] +2025-07-10 16:50:30.440 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [54ms] +2025-07-10 16:50:30.954 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [115ms] +2025-07-10 16:50:31.020 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [63ms] +2025-07-10 16:50:31.335 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [59ms] +2025-07-10 16:50:31.393 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [55ms] +2025-07-10 16:50:37.706 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [58ms] +2025-07-10 16:50:37.708 [info] > git show --textconv :docs/hxzx/终端管理.md [62ms] +2025-07-10 16:50:37.761 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [53ms] +2025-07-10 16:50:48.113 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [67ms] +2025-07-10 16:50:48.116 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [67ms] +2025-07-10 16:50:48.119 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [63ms] +2025-07-10 16:50:48.121 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [69ms] +2025-07-10 16:50:48.175 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [59ms] +2025-07-10 16:50:48.178 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [59ms] +2025-07-10 16:50:48.180 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-10 16:50:48.181 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-10 16:50:51.250 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [60ms] +2025-07-10 16:50:51.309 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-10 16:50:52.234 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [60ms] +2025-07-10 16:50:52.294 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-10 16:50:53.303 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [58ms] +2025-07-10 16:50:53.364 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-10 16:50:56.494 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [97ms] +2025-07-10 16:50:56.561 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [64ms] +2025-07-10 16:50:56.930 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [60ms] +2025-07-10 16:50:56.989 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [57ms] +2025-07-10 16:50:57.706 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [60ms] +2025-07-10 16:50:57.766 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [56ms] +2025-07-10 16:50:59.269 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [71ms] +2025-07-10 16:50:59.352 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [66ms] +2025-07-10 16:51:00.699 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [59ms] +2025-07-10 16:51:00.702 [info] > git show --textconv :docs/hxzx/常见问题解答.md [63ms] +2025-07-10 16:51:00.755 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [54ms] +2025-07-10 16:51:22.764 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [60ms] +2025-07-10 16:51:22.825 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [59ms] +2025-07-10 16:51:23.172 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [60ms] +2025-07-10 16:51:23.175 [info] > git show --textconv :docs/hxzx/安全管理.md [65ms] +2025-07-10 16:51:23.227 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [53ms] +2025-07-10 16:51:32.556 [info] > git show --textconv :docs/hxzx/订单管理.md [66ms] +2025-07-10 16:51:32.558 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [65ms] +2025-07-10 16:51:32.558 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:51:32.559 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [63ms] +2025-07-10 16:51:32.562 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [64ms] +2025-07-10 16:51:32.562 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:51:32.616 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [55ms] +2025-07-10 16:51:38.725 [info] > git show --textconv :docs/hxzx/安全管理.md [71ms] +2025-07-10 16:51:38.728 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [71ms] +2025-07-10 16:51:38.728 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:51:38.730 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [71ms] +2025-07-10 16:51:38.733 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [71ms] +2025-07-10 16:51:38.734 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:51:38.796 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [63ms] +2025-07-10 16:51:43.416 [info] > git show --textconv :docs/hxzx/安全管理 copy.md [62ms] +2025-07-10 16:51:43.416 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:51:43.417 [info] > git ls-files --stage -- docs/hxzx/安全管理 copy.md [61ms] +2025-07-10 16:51:43.417 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:51:44.253 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-10 16:51:44.256 [info] > git config --get commit.template [60ms] +2025-07-10 16:51:44.312 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 16:51:44.314 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:51:44.372 [info] > git rev-parse refs/remotes/origin/master [58ms] +2025-07-10 16:51:44.433 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 16:51:44.437 [info] > git status -z -uall [62ms] +2025-07-10 16:51:51.755 [info] > git show --textconv :docs/hxzx/自提管理.md [55ms] +2025-07-10 16:51:51.755 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:51:51.755 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [54ms] +2025-07-10 16:51:51.755 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-10 16:51:52.048 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-10 16:51:52.611 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 16:51:52.613 [info] > git config --get commit.template [60ms] +2025-07-10 16:51:52.671 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 16:51:52.673 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:51:52.728 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 16:51:52.789 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-10 16:51:52.793 [info] > git status -z -uall [63ms] +2025-07-10 16:51:58.301 [info] > git show --textconv :docs/hxzx/终端管理.md [78ms] +2025-07-10 16:51:58.303 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [75ms] +2025-07-10 16:51:58.310 [info] > git show --textconv HEAD:docs/hxzx/终端管理.md [85ms] +2025-07-10 16:51:58.311 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:51:58.312 [info] > git ls-tree -l HEAD -- docs/hxzx/终端管理.md [82ms] +2025-07-10 16:51:58.312 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:51:58.367 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [61ms] +2025-07-10 16:51:58.467 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/终端管理.md [95ms] +2025-07-10 16:51:58.467 [info] fatal: no such path docs/hxzx/终端管理.md in 84e81a2b2f02798acbb48e1045be9ddac82d8632 +2025-07-10 16:51:58.932 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [64ms] +2025-07-10 16:51:58.933 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:51:58.933 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [62ms] +2025-07-10 16:51:58.936 [info] > git show --textconv :docs/hxzx/账号权限管理.md [69ms] +2025-07-10 16:51:58.936 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [63ms] +2025-07-10 16:51:58.936 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:51:58.992 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-10 16:51:59.490 [info] > git show --textconv :docs/hxzx/营销管理.md [72ms] +2025-07-10 16:51:59.495 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [73ms] +2025-07-10 16:51:59.498 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [78ms] +2025-07-10 16:51:59.499 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:51:59.500 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [74ms] +2025-07-10 16:51:59.500 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:51:59.562 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [65ms] +2025-07-10 16:52:00.279 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [89ms] +2025-07-10 16:52:00.282 [info] > git show --textconv :docs/hxzx/分销体系.md [94ms] +2025-07-10 16:52:00.337 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [55ms] +2025-07-10 16:52:00.710 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [73ms] +2025-07-10 16:52:00.710 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:52:00.711 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [71ms] +2025-07-10 16:52:00.713 [info] > git show --textconv :docs/hxzx/订单管理.md [80ms] +2025-07-10 16:52:00.714 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [72ms] +2025-07-10 16:52:00.714 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:52:00.796 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [82ms] +2025-07-10 16:52:01.317 [info] > git show --textconv :docs/hxzx/登录后台.md [63ms] +2025-07-10 16:52:01.319 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [64ms] +2025-07-10 16:52:01.319 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:52:01.322 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [63ms] +2025-07-10 16:52:01.324 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [64ms] +2025-07-10 16:52:01.324 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:52:01.378 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [55ms] +2025-07-10 16:52:02.350 [info] > git show --textconv HEAD:docs/hxzx/常见问题解答.md [64ms] +2025-07-10 16:52:02.350 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:52:02.350 [info] > git show --textconv :docs/hxzx/常见问题解答.md [66ms] +2025-07-10 16:52:02.354 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [65ms] +2025-07-10 16:52:02.356 [info] > git ls-tree -l HEAD -- docs/hxzx/常见问题解答.md [66ms] +2025-07-10 16:52:02.356 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:52:02.411 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [54ms] +2025-07-10 16:52:03.027 [info] > git show --textconv :docs/hxzx/安全管理.md [72ms] +2025-07-10 16:52:03.028 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [69ms] +2025-07-10 16:52:03.031 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [74ms] +2025-07-10 16:52:03.032 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:52:03.033 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [72ms] +2025-07-10 16:52:03.033 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:52:03.088 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [57ms] +2025-07-10 16:52:04.422 [info] > git show --textconv :docs/hxzx/常见问题解答.md [66ms] +2025-07-10 16:52:04.422 [info] > git show --textconv HEAD:docs/hxzx/常见问题解答.md [64ms] +2025-07-10 16:52:04.423 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:52:04.424 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [64ms] +2025-07-10 16:52:04.426 [info] > git ls-tree -l HEAD -- docs/hxzx/常见问题解答.md [64ms] +2025-07-10 16:52:04.427 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:52:04.484 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [58ms] +2025-07-10 16:53:18.741 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [80ms] +2025-07-10 16:53:18.744 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [79ms] +2025-07-10 16:53:18.747 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [68ms] +2025-07-10 16:53:18.803 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [60ms] +2025-07-10 16:53:18.804 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-10 16:53:18.805 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [55ms] +2025-07-10 16:53:30.978 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [73ms] +2025-07-10 16:53:30.981 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [72ms] +2025-07-10 16:53:30.986 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [73ms] +2025-07-10 16:53:31.120 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [135ms] +2025-07-10 16:53:31.121 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [141ms] +2025-07-10 16:53:31.122 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [134ms] +2025-07-10 16:53:34.894 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [65ms] +2025-07-10 16:53:34.897 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [66ms] +2025-07-10 16:53:34.900 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [65ms] +2025-07-10 16:53:34.962 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [66ms] +2025-07-10 16:53:34.962 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [63ms] +2025-07-10 16:53:34.966 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [64ms] +2025-07-10 16:53:36.446 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 16:53:37.050 [info] > git symbolic-ref --short HEAD [61ms] +2025-07-10 16:53:37.053 [info] > git config --get commit.template [61ms] +2025-07-10 16:53:37.107 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [54ms] +2025-07-10 16:53:37.109 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 16:53:37.162 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 16:53:37.229 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [62ms] +2025-07-10 16:53:37.232 [info] > git status -z -uall [67ms] +2025-07-10 16:54:02.040 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [63ms] +2025-07-10 16:54:02.043 [info] > git show --textconv :docs/hxzx/分销体系.md [69ms] +2025-07-10 16:54:02.100 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [57ms] +2025-07-10 16:54:03.305 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [82ms] +2025-07-10 16:54:03.305 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:54:03.305 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [80ms] +2025-07-10 16:54:03.308 [info] > git show --textconv :docs/hxzx/商品管理.md [88ms] +2025-07-10 16:54:03.308 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [81ms] +2025-07-10 16:54:03.308 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:54:03.379 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [71ms] +2025-07-10 16:54:03.647 [info] > git show --textconv :docs/hxzx/营销管理.md [62ms] +2025-07-10 16:54:03.647 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [60ms] +2025-07-10 16:54:03.648 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:54:03.649 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [59ms] +2025-07-10 16:54:03.651 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [59ms] +2025-07-10 16:54:03.652 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 16:54:03.705 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [53ms] +2025-07-10 16:54:18.998 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [73ms] +2025-07-10 16:54:19.000 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [71ms] +2025-07-10 16:54:19.003 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [67ms] +2025-07-10 16:54:19.057 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [56ms] +2025-07-10 16:54:19.057 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [55ms] +2025-07-10 16:54:19.059 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [55ms] +2025-07-10 16:54:36.822 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [69ms] +2025-07-10 16:54:36.824 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [75ms] +2025-07-10 16:54:36.826 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [82ms] +2025-07-10 16:54:36.885 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [61ms] +2025-07-10 16:54:36.885 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 16:54:36.886 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [58ms] +2025-07-10 16:54:47.902 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [101ms] +2025-07-10 16:54:47.929 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [115ms] +2025-07-10 16:54:47.934 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [126ms] +2025-07-10 16:54:47.987 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [83ms] +2025-07-10 16:54:47.998 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [66ms] +2025-07-10 16:54:48.003 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [67ms] +2025-07-10 16:54:58.626 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [126ms] +2025-07-10 16:54:58.628 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [121ms] +2025-07-10 16:54:58.631 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [138ms] +2025-07-10 16:54:58.689 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [58ms] +2025-07-10 16:54:58.689 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [61ms] +2025-07-10 16:54:58.690 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [57ms] +2025-07-10 16:55:04.577 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [64ms] +2025-07-10 16:55:04.584 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [66ms] +2025-07-10 16:55:04.586 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [65ms] +2025-07-10 16:55:04.638 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [58ms] +2025-07-10 16:55:04.644 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-10 16:55:04.646 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-10 16:55:13.027 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [77ms] +2025-07-10 16:55:13.030 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [71ms] +2025-07-10 16:55:13.033 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [67ms] +2025-07-10 16:55:13.092 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [61ms] +2025-07-10 16:55:13.093 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 16:55:13.097 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 16:55:38.665 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [101ms] +2025-07-10 16:55:38.684 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [105ms] +2025-07-10 16:55:38.691 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [115ms] +2025-07-10 16:55:38.730 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [63ms] +2025-07-10 16:55:38.743 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-10 16:55:38.749 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-10 16:57:03.999 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [72ms] +2025-07-10 16:57:04.002 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [80ms] +2025-07-10 16:57:04.004 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [73ms] +2025-07-10 16:57:04.060 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-10 16:57:04.060 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [56ms] +2025-07-10 16:57:04.062 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-10 16:57:27.524 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [70ms] +2025-07-10 16:57:27.532 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [75ms] +2025-07-10 16:57:27.534 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [73ms] +2025-07-10 16:57:27.585 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [59ms] +2025-07-10 16:57:27.594 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 16:57:27.595 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-10 16:58:14.985 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [78ms] +2025-07-10 16:58:14.987 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [77ms] +2025-07-10 16:58:14.989 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [77ms] +2025-07-10 16:58:15.043 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [57ms] +2025-07-10 16:58:15.044 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [55ms] +2025-07-10 16:58:15.045 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [52ms] +2025-07-10 16:58:47.420 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [85ms] +2025-07-10 16:58:47.423 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [83ms] +2025-07-10 16:58:47.425 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [79ms] +2025-07-10 16:58:47.478 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [55ms] +2025-07-10 16:58:47.480 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [55ms] +2025-07-10 16:58:47.481 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [52ms] +2025-07-10 17:03:13.648 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [73ms] +2025-07-10 17:03:13.651 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [62ms] +2025-07-10 17:03:13.654 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [69ms] +2025-07-10 17:03:13.715 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [65ms] +2025-07-10 17:03:13.718 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [64ms] +2025-07-10 17:03:13.718 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [62ms] +2025-07-10 17:04:04.293 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [137ms] +2025-07-10 17:04:04.296 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [134ms] +2025-07-10 17:04:04.298 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [131ms] +2025-07-10 17:04:04.354 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [58ms] +2025-07-10 17:04:04.356 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-10 17:04:04.360 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 17:04:16.972 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [74ms] +2025-07-10 17:04:16.975 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [74ms] +2025-07-10 17:04:16.979 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [83ms] +2025-07-10 17:04:17.118 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [134ms] +2025-07-10 17:04:17.120 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [141ms] +2025-07-10 17:04:17.121 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [146ms] +2025-07-10 17:04:18.422 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [72ms] +2025-07-10 17:04:18.425 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [78ms] +2025-07-10 17:04:18.428 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [75ms] +2025-07-10 17:04:18.485 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 17:04:18.487 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [60ms] +2025-07-10 17:04:18.491 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 17:04:19.621 [info] > git symbolic-ref --short HEAD [63ms] +2025-07-10 17:04:19.623 [info] > git config --get commit.template [62ms] +2025-07-10 17:04:19.682 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-10 17:04:19.685 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:04:19.741 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 17:04:19.807 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [60ms] +2025-07-10 17:04:19.810 [info] > git status -z -uall [66ms] +2025-07-10 17:04:22.083 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [68ms] +2025-07-10 17:04:22.087 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [69ms] +2025-07-10 17:04:22.089 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [68ms] +2025-07-10 17:04:22.198 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [111ms] +2025-07-10 17:04:22.199 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [106ms] +2025-07-10 17:04:22.214 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [125ms] +2025-07-10 17:04:24.568 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [78ms] +2025-07-10 17:04:24.573 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [80ms] +2025-07-10 17:04:24.579 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [82ms] +2025-07-10 17:04:24.645 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [72ms] +2025-07-10 17:04:24.645 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [70ms] +2025-07-10 17:04:24.650 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [69ms] +2025-07-10 17:05:05.905 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [66ms] +2025-07-10 17:05:05.908 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [66ms] +2025-07-10 17:05:05.910 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [65ms] +2025-07-10 17:05:05.964 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [57ms] +2025-07-10 17:05:05.967 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-10 17:05:05.968 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [56ms] +2025-07-10 17:05:09.631 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [75ms] +2025-07-10 17:05:09.635 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [75ms] +2025-07-10 17:05:09.638 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [76ms] +2025-07-10 17:05:09.704 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [70ms] +2025-07-10 17:05:09.709 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [72ms] +2025-07-10 17:05:09.711 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [71ms] +2025-07-10 17:05:11.328 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-10 17:05:11.861 [info] > git config --get commit.template [58ms] +2025-07-10 17:05:11.861 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-10 17:05:11.922 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-10 17:05:11.925 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:05:11.980 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 17:05:12.043 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [60ms] +2025-07-10 17:05:12.050 [info] > git status -z -uall [68ms] +2025-07-10 17:05:16.722 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [61ms] +2025-07-10 17:05:16.725 [info] > git show --textconv :docs/hxzx/分销体系.md [66ms] +2025-07-10 17:05:16.779 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [54ms] +2025-07-10 17:05:45.084 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [72ms] +2025-07-10 17:05:45.088 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [73ms] +2025-07-10 17:05:45.090 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 17:05:45.144 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [57ms] +2025-07-10 17:05:45.144 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [54ms] +2025-07-10 17:05:45.145 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [53ms] +2025-07-10 17:05:49.707 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [77ms] +2025-07-10 17:05:49.709 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 17:05:49.711 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [77ms] +2025-07-10 17:05:49.767 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-10 17:05:49.768 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [59ms] +2025-07-10 17:05:49.769 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-10 17:06:27.209 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [75ms] +2025-07-10 17:06:27.212 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [83ms] +2025-07-10 17:06:27.215 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [76ms] +2025-07-10 17:06:27.274 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [63ms] +2025-07-10 17:06:27.275 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [61ms] +2025-07-10 17:06:27.277 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 17:06:43.306 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [71ms] +2025-07-10 17:06:43.309 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [70ms] +2025-07-10 17:06:43.311 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [79ms] +2025-07-10 17:06:43.369 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 17:06:43.372 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [61ms] +2025-07-10 17:06:43.372 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [60ms] +2025-07-10 17:06:58.061 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [129ms] +2025-07-10 17:06:58.074 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [138ms] +2025-07-10 17:06:58.076 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [138ms] +2025-07-10 17:06:58.121 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [59ms] +2025-07-10 17:06:58.132 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-10 17:06:58.133 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [56ms] +2025-07-10 17:07:12.247 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [75ms] +2025-07-10 17:07:12.251 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [82ms] +2025-07-10 17:07:12.254 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [76ms] +2025-07-10 17:07:12.315 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [61ms] +2025-07-10 17:07:12.315 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [64ms] +2025-07-10 17:07:12.319 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [62ms] +2025-07-10 17:07:51.877 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [69ms] +2025-07-10 17:07:51.879 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [77ms] +2025-07-10 17:07:51.881 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [69ms] +2025-07-10 17:07:51.942 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [61ms] +2025-07-10 17:07:51.942 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [63ms] +2025-07-10 17:07:51.943 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-10 17:10:01.681 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [72ms] +2025-07-10 17:10:01.684 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [73ms] +2025-07-10 17:10:01.688 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [73ms] +2025-07-10 17:10:01.740 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [57ms] +2025-07-10 17:10:01.742 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-10 17:10:01.746 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [56ms] +2025-07-10 17:10:03.393 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [67ms] +2025-07-10 17:10:03.396 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-10 17:10:03.401 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [68ms] +2025-07-10 17:10:03.458 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [63ms] +2025-07-10 17:10:03.459 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 17:10:03.463 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-10 17:10:05.118 [info] > git check-ignore -v -z --stdin [58ms] +2025-07-10 17:10:05.679 [info] > git symbolic-ref --short HEAD [56ms] +2025-07-10 17:10:05.682 [info] > git config --get commit.template [56ms] +2025-07-10 17:10:05.737 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 17:10:05.740 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:10:05.792 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 17:10:05.852 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 17:10:05.856 [info] > git status -z -uall [62ms] +2025-07-10 17:10:06.248 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [73ms] +2025-07-10 17:10:06.251 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [74ms] +2025-07-10 17:10:06.254 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [74ms] +2025-07-10 17:10:06.312 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-10 17:10:06.312 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [62ms] +2025-07-10 17:10:06.315 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [58ms] +2025-07-10 17:10:11.727 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [65ms] +2025-07-10 17:10:11.733 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [68ms] +2025-07-10 17:10:11.735 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [67ms] +2025-07-10 17:10:11.788 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [60ms] +2025-07-10 17:10:11.794 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-10 17:10:11.795 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [58ms] +2025-07-10 17:10:12.853 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [76ms] +2025-07-10 17:10:12.857 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [72ms] +2025-07-10 17:10:12.860 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [79ms] +2025-07-10 17:10:12.922 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [64ms] +2025-07-10 17:10:12.923 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [67ms] +2025-07-10 17:10:12.926 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [64ms] +2025-07-10 17:10:15.773 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [66ms] +2025-07-10 17:10:15.776 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [66ms] +2025-07-10 17:10:15.779 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [66ms] +2025-07-10 17:10:15.841 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [65ms] +2025-07-10 17:10:15.841 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [62ms] +2025-07-10 17:10:15.845 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [64ms] +2025-07-10 17:10:17.705 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [82ms] +2025-07-10 17:10:17.714 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [86ms] +2025-07-10 17:10:17.717 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [85ms] +2025-07-10 17:10:17.792 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [84ms] +2025-07-10 17:10:17.797 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [81ms] +2025-07-10 17:10:17.802 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [83ms] +2025-07-10 17:10:19.612 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-10 17:10:20.149 [info] > git config --get commit.template [59ms] +2025-07-10 17:10:20.149 [info] > git symbolic-ref --short HEAD [63ms] +2025-07-10 17:10:20.239 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [87ms] +2025-07-10 17:10:20.242 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:10:20.298 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 17:10:20.361 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [58ms] +2025-07-10 17:10:20.362 [info] > git status -z -uall [61ms] +2025-07-10 17:10:20.992 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [70ms] +2025-07-10 17:10:20.995 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [71ms] +2025-07-10 17:10:20.998 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [70ms] +2025-07-10 17:10:21.061 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [67ms] +2025-07-10 17:10:21.064 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [66ms] +2025-07-10 17:10:21.067 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [66ms] +2025-07-10 17:10:23.291 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 17:10:25.432 [info] > git config --get commit.template [59ms] +2025-07-10 17:10:25.433 [info] > git symbolic-ref --short HEAD [62ms] +2025-07-10 17:10:25.492 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 17:10:25.494 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:10:25.551 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 17:10:25.620 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [64ms] +2025-07-10 17:10:25.622 [info] > git status -z -uall [69ms] +2025-07-10 17:13:11.014 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [77ms] +2025-07-10 17:13:11.017 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [78ms] +2025-07-10 17:13:11.021 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [88ms] +2025-07-10 17:13:11.083 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [66ms] +2025-07-10 17:13:11.088 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [68ms] +2025-07-10 17:13:11.089 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [65ms] +2025-07-10 17:13:13.611 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [76ms] +2025-07-10 17:13:13.615 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [77ms] +2025-07-10 17:13:13.618 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [77ms] +2025-07-10 17:13:13.675 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [62ms] +2025-07-10 17:13:13.683 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [65ms] +2025-07-10 17:13:13.684 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [63ms] +2025-07-10 17:13:15.367 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-10 17:13:15.963 [info] > git symbolic-ref --short HEAD [62ms] +2025-07-10 17:13:15.966 [info] > git config --get commit.template [63ms] +2025-07-10 17:13:16.024 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [58ms] +2025-07-10 17:13:16.027 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:13:16.085 [info] > git rev-parse refs/remotes/origin/master [58ms] +2025-07-10 17:13:16.149 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 17:13:16.153 [info] > git status -z -uall [65ms] +2025-07-10 17:13:47.307 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [81ms] +2025-07-10 17:13:47.315 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [73ms] +2025-07-10 17:13:47.317 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [81ms] +2025-07-10 17:13:47.365 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [55ms] +2025-07-10 17:13:47.372 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [55ms] +2025-07-10 17:13:47.372 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [53ms] +2025-07-10 17:14:24.766 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [87ms] +2025-07-10 17:14:24.769 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [100ms] +2025-07-10 17:14:24.772 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [101ms] +2025-07-10 17:14:24.831 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [63ms] +2025-07-10 17:14:24.833 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [60ms] +2025-07-10 17:14:24.835 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [61ms] +2025-07-10 17:14:35.463 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [83ms] +2025-07-10 17:14:35.465 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [75ms] +2025-07-10 17:14:35.468 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [84ms] +2025-07-10 17:14:35.525 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [59ms] +2025-07-10 17:14:35.525 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-10 17:14:35.526 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-10 17:15:36.374 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [96ms] +2025-07-10 17:15:36.382 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [110ms] +2025-07-10 17:15:36.387 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [103ms] +2025-07-10 17:15:36.445 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [64ms] +2025-07-10 17:15:36.446 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [59ms] +2025-07-10 17:15:36.447 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [58ms] +2025-07-10 17:15:38.693 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [113ms] +2025-07-10 17:15:38.699 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [103ms] +2025-07-10 17:15:38.702 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [117ms] +2025-07-10 17:15:38.765 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [69ms] +2025-07-10 17:15:38.770 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [66ms] +2025-07-10 17:15:38.772 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [70ms] +2025-07-10 17:15:41.034 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [75ms] +2025-07-10 17:15:41.038 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 17:15:41.040 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [78ms] +2025-07-10 17:15:41.099 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [62ms] +2025-07-10 17:15:41.101 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 17:15:41.103 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-10 17:15:52.111 [info] > git -c user.useConfigOnly=true commit --quiet [63ms] +2025-07-10 17:15:52.111 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 17:15:52.168 [info] > git config --get-all user.name [55ms] +2025-07-10 17:15:52.233 [info] > git symbolic-ref --short HEAD [63ms] +2025-07-10 17:15:52.239 [info] > git config --get commit.template [67ms] +2025-07-10 17:15:52.291 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 17:15:52.293 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:15:52.346 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 17:15:52.406 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-10 17:15:52.410 [info] > git status -z -uall [62ms] +2025-07-10 17:15:54.306 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [97ms] +2025-07-10 17:15:54.309 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [103ms] +2025-07-10 17:15:54.326 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [113ms] +2025-07-10 17:15:54.373 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [64ms] +2025-07-10 17:15:54.375 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [64ms] +2025-07-10 17:15:54.384 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [56ms] +2025-07-10 17:16:07.350 [info] > git -c user.useConfigOnly=true commit --quiet [62ms] +2025-07-10 17:16:07.350 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 17:16:07.407 [info] > git config --get-all user.name [55ms] +2025-07-10 17:16:07.467 [info] > git config --get commit.template [55ms] +2025-07-10 17:16:07.467 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-10 17:16:07.526 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [58ms] +2025-07-10 17:16:07.529 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:16:07.581 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 17:16:07.640 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [54ms] +2025-07-10 17:16:07.644 [info] > git status -z -uall [60ms] +2025-07-10 17:16:09.267 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [70ms] +2025-07-10 17:16:09.270 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [71ms] +2025-07-10 17:16:09.273 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 17:16:09.327 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [58ms] +2025-07-10 17:16:09.330 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-10 17:16:09.331 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [54ms] +2025-07-10 17:16:18.451 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [70ms] +2025-07-10 17:16:18.452 [info] > git show --textconv HEAD:docs/hxzx/分销体系.md [73ms] +2025-07-10 17:16:23.548 [info] > git -c user.useConfigOnly=true commit --quiet [61ms] +2025-07-10 17:16:23.548 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 17:16:23.603 [info] > git config --get-all user.name [54ms] +2025-07-10 17:16:23.660 [info] > git config --get commit.template [53ms] +2025-07-10 17:16:23.660 [info] > git symbolic-ref --short HEAD [55ms] +2025-07-10 17:16:23.718 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 17:16:23.720 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:16:23.772 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-10 17:16:23.832 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 17:16:23.835 [info] > git status -z -uall [59ms] +2025-07-10 17:17:46.422 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [73ms] +2025-07-10 17:17:46.425 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [74ms] +2025-07-10 17:17:46.428 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [81ms] +2025-07-10 17:17:46.486 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [62ms] +2025-07-10 17:17:46.490 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [62ms] +2025-07-10 17:17:46.492 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [62ms] +2025-07-10 17:17:50.655 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-10 17:17:50.659 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [74ms] +2025-07-10 17:17:50.661 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [69ms] +2025-07-10 17:17:50.726 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [67ms] +2025-07-10 17:17:50.727 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [66ms] +2025-07-10 17:17:50.730 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [66ms] +2025-07-10 17:17:55.512 [info] > git add -A -- docs/hxzx/自提管理.md [61ms] +2025-07-10 17:17:55.571 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-10 17:17:55.574 [info] > git config --get commit.template [58ms] +2025-07-10 17:17:55.629 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 17:17:55.631 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:17:55.688 [info] > git rev-parse refs/remotes/origin/master [57ms] +2025-07-10 17:17:55.747 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 17:17:55.751 [info] > git status -z -uall [60ms] +2025-07-10 17:17:55.915 [info] > git show --textconv :docs/hxzx/自提管理.md [72ms] +2025-07-10 17:17:55.917 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [70ms] +2025-07-10 17:17:55.917 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:17:55.920 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [72ms] +2025-07-10 17:17:55.924 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [72ms] +2025-07-10 17:17:55.924 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:17:55.982 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [60ms] +2025-07-10 17:17:56.082 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/自提管理.md [83ms] +2025-07-10 17:17:56.082 [info] fatal: no such path docs/hxzx/自提管理.md in 84e81a2b2f02798acbb48e1045be9ddac82d8632 +2025-07-10 17:17:56.766 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [67ms] +2025-07-10 17:17:56.772 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [71ms] +2025-07-10 17:17:56.778 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [70ms] +2025-07-10 17:17:56.781 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [77ms] +2025-07-10 17:17:56.784 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [74ms] +2025-07-10 17:17:56.788 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [75ms] +2025-07-10 17:17:56.795 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [80ms] +2025-07-10 17:17:56.842 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [72ms] +2025-07-10 17:17:56.850 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [75ms] +2025-07-10 17:17:56.854 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [73ms] +2025-07-10 17:17:56.863 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [76ms] +2025-07-10 17:17:56.867 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [83ms] +2025-07-10 17:17:56.872 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [75ms] +2025-07-10 17:17:56.877 [info] > git show --textconv HEAD:docs/hxzx/分销体系.md [83ms] +2025-07-10 17:17:56.913 [info] > git show --textconv :docs/hxzx/登录后台.md [67ms] +2025-07-10 17:17:56.921 [info] > git show --textconv :docs/hxzx/订单管理.md [68ms] +2025-07-10 17:17:56.925 [info] > git show --textconv :docs/hxzx/营销管理.md [67ms] +2025-07-10 17:17:56.935 [info] > git show --textconv :docs/hxzx/商品管理.md [64ms] +2025-07-10 17:17:56.935 [info] > git show --textconv :docs/hxzx/账号权限管理.md [69ms] +2025-07-10 17:17:56.939 [info] > git show --textconv :docs/hxzx/自提管理.md [63ms] +2025-07-10 17:17:57.759 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-10 17:17:57.762 [info] > git config --get commit.template [58ms] +2025-07-10 17:17:57.815 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [54ms] +2025-07-10 17:17:57.818 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:17:57.872 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 17:17:57.935 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [58ms] +2025-07-10 17:17:57.938 [info] > git status -z -uall [64ms] +2025-07-10 17:18:11.951 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [67ms] +2025-07-10 17:18:11.953 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [68ms] +2025-07-10 17:18:11.956 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [68ms] +2025-07-10 17:18:11.997 [info] > git add -A -- docs/hxzx/自提管理.md [66ms] +2025-07-10 17:18:12.015 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [62ms] +2025-07-10 17:18:12.017 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [61ms] +2025-07-10 17:18:12.019 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 17:18:12.055 [info] > git symbolic-ref --short HEAD [55ms] +2025-07-10 17:18:12.057 [info] > git config --get commit.template [55ms] +2025-07-10 17:18:12.111 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [53ms] +2025-07-10 17:18:12.113 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:18:12.200 [info] > git rev-parse refs/remotes/origin/master [87ms] +2025-07-10 17:18:12.266 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [61ms] +2025-07-10 17:18:12.267 [info] > git status -z -uall [64ms] +2025-07-10 17:18:12.336 [info] > git -c user.useConfigOnly=true commit --quiet [65ms] +2025-07-10 17:18:12.336 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 17:18:12.393 [info] > git config --get-all user.name [55ms] +2025-07-10 17:18:12.454 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-10 17:18:12.456 [info] > git config --get commit.template [58ms] +2025-07-10 17:18:12.512 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 17:18:12.515 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:18:12.569 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 17:18:12.631 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [58ms] +2025-07-10 17:18:12.635 [info] > git status -z -uall [64ms] +2025-07-10 17:18:15.530 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [87ms] +2025-07-10 17:18:15.551 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [102ms] +2025-07-10 17:18:15.588 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [128ms] +2025-07-10 17:18:15.592 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [121ms] +2025-07-10 17:18:15.597 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [142ms] +2025-07-10 17:18:15.600 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [148ms] +2025-07-10 17:18:15.624 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [179ms] +2025-07-10 17:18:15.627 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [170ms] +2025-07-10 17:18:15.656 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [192ms] +2025-07-10 17:18:15.659 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [192ms] +2025-07-10 17:18:15.693 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [156ms] +2025-07-10 17:18:15.717 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [120ms] +2025-07-10 17:18:15.719 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [115ms] +2025-07-10 17:18:15.723 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [131ms] +2025-07-10 17:18:15.723 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [96ms] +2025-07-10 17:18:15.724 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [153ms] +2025-07-10 17:18:15.727 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [126ms] +2025-07-10 17:18:15.727 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [97ms] +2025-07-10 17:18:15.743 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [85ms] +2025-07-10 17:18:16.016 [info] > git show --textconv HEAD:docs/hxzx/分销体系.md [96ms] +2025-07-10 17:18:16.053 [info] > git show --textconv :docs/hxzx/自提管理.md [127ms] +2025-07-10 17:18:16.056 [info] > git show --textconv :docs/hxzx/登录后台.md [126ms] +2025-07-10 17:18:16.061 [info] > git show --textconv :docs/hxzx/商品管理.md [138ms] +2025-07-10 17:18:16.094 [info] > git show --textconv :docs/hxzx/账号权限管理.md [154ms] +2025-07-10 17:18:16.096 [info] > git show --textconv :docs/hxzx/营销管理.md [164ms] +2025-07-10 17:18:16.103 [info] > git show --textconv :docs/hxzx/商品管理.md [154ms] +2025-07-10 17:18:16.107 [info] > git show --textconv :docs/hxzx/账号权限管理.md [155ms] +2025-07-10 17:18:16.110 [info] > git show --textconv :docs/hxzx/营销管理.md [175ms] +2025-07-10 17:18:16.120 [info] > git show --textconv :docs/hxzx/订单管理.md [173ms] +2025-07-10 17:18:16.525 [info] > git config --get commit.template [62ms] +2025-07-10 17:18:16.526 [info] > git symbolic-ref --short HEAD [65ms] +2025-07-10 17:18:16.589 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [60ms] +2025-07-10 17:18:16.592 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:18:16.649 [info] > git rev-parse refs/remotes/origin/master [57ms] +2025-07-10 17:18:16.714 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [60ms] +2025-07-10 17:18:16.717 [info] > git status -z -uall [66ms] +2025-07-10 17:18:38.538 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [60ms] +2025-07-10 17:18:57.202 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [72ms] +2025-07-10 17:18:57.203 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [71ms] +2025-07-10 17:18:57.207 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [70ms] +2025-07-10 17:18:57.213 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [73ms] +2025-07-10 17:18:57.267 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [60ms] +2025-07-10 17:18:57.267 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-10 17:18:57.275 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 17:19:13.372 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [61ms] +2025-07-10 17:19:13.375 [info] > git show --textconv :docs/hxzx/常见问题解答.md [66ms] +2025-07-10 17:19:13.434 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [59ms] +2025-07-10 17:19:16.157 [info] > git -c user.useConfigOnly=true commit --quiet [62ms] +2025-07-10 17:19:16.157 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 17:19:16.214 [info] > git config --get-all user.name [55ms] +2025-07-10 17:19:16.324 [info] > git symbolic-ref --short HEAD [108ms] +2025-07-10 17:19:16.327 [info] > git config --get commit.template [107ms] +2025-07-10 17:19:16.379 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [52ms] +2025-07-10 17:19:16.381 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:19:16.435 [info] > git rev-parse refs/remotes/origin/master [53ms] +2025-07-10 17:19:16.496 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 17:19:16.499 [info] > git status -z -uall [61ms] +2025-07-10 17:19:19.109 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [69ms] +2025-07-10 17:19:19.114 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [71ms] +2025-07-10 17:19:19.117 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [69ms] +2025-07-10 17:19:19.122 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 17:19:19.181 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [70ms] +2025-07-10 17:19:19.188 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [72ms] +2025-07-10 17:19:19.192 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [72ms] +2025-07-10 17:19:19.194 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [69ms] +2025-07-10 17:19:31.989 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [59ms] +2025-07-10 17:19:31.992 [info] > git show --textconv :docs/hxzx/安全管理.md [65ms] +2025-07-10 17:19:32.046 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [54ms] +2025-07-10 17:19:32.603 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [57ms] +2025-07-10 17:19:32.606 [info] > git show --textconv :docs/hxzx/常见问题解答.md [64ms] +2025-07-10 17:19:32.663 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [58ms] +2025-07-10 17:19:32.925 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [62ms] +2025-07-10 17:19:33.056 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [129ms] +2025-07-10 17:19:33.268 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [64ms] +2025-07-10 17:19:33.329 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [58ms] +2025-07-10 17:19:34.424 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [61ms] +2025-07-10 17:19:34.482 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [55ms] +2025-07-10 17:19:35.638 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [89ms] +2025-07-10 17:19:35.716 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [75ms] +2025-07-10 17:19:37.087 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [58ms] +2025-07-10 17:19:37.144 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [54ms] +2025-07-10 17:19:38.666 [info] > git show --textconv :docs/hxzx/终端管理.md [91ms] +2025-07-10 17:19:38.667 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [89ms] +2025-07-10 17:19:38.743 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [73ms] +2025-07-10 17:19:40.003 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [58ms] +2025-07-10 17:19:40.006 [info] > git show --textconv :docs/hxzx/自提管理.md [64ms] +2025-07-10 17:19:40.081 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [75ms] +2025-07-10 17:19:40.511 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 17:19:48.191 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [56ms] +2025-07-10 17:19:48.194 [info] > git show --textconv :docs/hxzx/终端管理.md [61ms] +2025-07-10 17:19:48.248 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [54ms] +2025-07-10 17:19:49.080 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [58ms] +2025-07-10 17:19:49.138 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [55ms] +2025-07-10 17:19:49.919 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [58ms] +2025-07-10 17:19:50.028 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [106ms] +2025-07-10 17:19:50.719 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [59ms] +2025-07-10 17:19:50.780 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [58ms] +2025-07-10 17:19:51.236 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [63ms] +2025-07-10 17:19:51.294 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [56ms] +2025-07-10 17:19:51.781 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [57ms] +2025-07-10 17:19:51.881 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [97ms] +2025-07-10 17:19:52.201 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [58ms] +2025-07-10 17:19:52.204 [info] > git show --textconv :docs/hxzx/常见问题解答.md [64ms] +2025-07-10 17:19:52.261 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [57ms] +2025-07-10 17:19:52.714 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [58ms] +2025-07-10 17:19:52.717 [info] > git show --textconv :docs/hxzx/安全管理.md [63ms] +2025-07-10 17:19:52.770 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [54ms] +2025-07-10 17:19:56.239 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [58ms] +2025-07-10 17:19:57.912 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [60ms] +2025-07-10 17:19:57.915 [info] > git show --textconv :docs/hxzx/自提管理.md [65ms] +2025-07-10 17:19:57.974 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [58ms] +2025-07-10 17:19:58.336 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [57ms] +2025-07-10 17:19:58.339 [info] > git show --textconv :docs/hxzx/终端管理.md [63ms] +2025-07-10 17:19:58.393 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [53ms] +2025-07-10 17:19:58.904 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [59ms] +2025-07-10 17:19:58.985 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [78ms] +2025-07-10 17:19:59.201 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [60ms] +2025-07-10 17:19:59.262 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-10 17:20:01.502 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [57ms] +2025-07-10 17:20:01.559 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [54ms] +2025-07-10 17:20:05.872 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [59ms] +2025-07-10 17:20:05.929 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [55ms] +2025-07-10 17:20:08.854 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [58ms] +2025-07-10 17:20:08.914 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [58ms] +2025-07-10 17:20:09.447 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [59ms] +2025-07-10 17:20:09.506 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [57ms] +2025-07-10 17:20:09.976 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [60ms] +2025-07-10 17:20:10.033 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [54ms] +2025-07-10 17:20:57.101 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [56ms] +2025-07-10 17:20:57.105 [info] > git show --textconv :docs/hxzx/分销体系.md [62ms] +2025-07-10 17:20:57.161 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [56ms] +2025-07-10 17:20:57.487 [info] > git show --textconv :docs/hxzx/商品管理.md [62ms] +2025-07-10 17:20:57.489 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [63ms] +2025-07-10 17:20:57.490 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:20:57.492 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [64ms] +2025-07-10 17:20:57.495 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [65ms] +2025-07-10 17:20:57.495 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:20:57.551 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [56ms] +2025-07-10 17:21:21.973 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-10 17:21:32.054 [info] > git ls-files --stage -- docs/bxgo/5、商城配置.md [59ms] +2025-07-10 17:21:32.057 [info] > git show --textconv :docs/bxgo/5、商城配置.md [65ms] +2025-07-10 17:21:32.139 [info] > git cat-file -s 223e98885dd122cd0ed2af571f4e3601f6ef77cc [81ms] +2025-07-10 17:21:32.601 [info] > git ls-files --stage -- docs/bxgo/4、订单管理.md [55ms] +2025-07-10 17:21:32.605 [info] > git show --textconv :docs/bxgo/4、订单管理.md [61ms] +2025-07-10 17:21:32.711 [info] > git cat-file -s 87f5fec7255d6e3c4cbf8d57dc95aab5774443af [106ms] +2025-07-10 17:21:34.102 [info] > git ls-files --stage -- docs/bxgo/5、商城配置.md [55ms] +2025-07-10 17:21:34.105 [info] > git show --textconv :docs/bxgo/5、商城配置.md [61ms] +2025-07-10 17:21:34.160 [info] > git cat-file -s 223e98885dd122cd0ed2af571f4e3601f6ef77cc [55ms] +2025-07-10 17:21:37.101 [info] > git ls-files --stage -- docs/crm/1、登录系统.md [54ms] +2025-07-10 17:21:37.105 [info] > git show --textconv :docs/crm/1、登录系统.md [60ms] +2025-07-10 17:21:37.159 [info] > git cat-file -s e2f8c2ea8433f89ea0083966503a5686ca12987d [55ms] +2025-07-10 17:21:38.700 [info] > git show --textconv :docs/crm/2、客户管理.md [59ms] +2025-07-10 17:21:38.700 [info] > git ls-files --stage -- docs/crm/2、客户管理.md [57ms] +2025-07-10 17:21:38.757 [info] > git cat-file -s b55a419db338067f2d62f57b01faebae944a89d1 [53ms] +2025-07-10 17:21:39.933 [info] > git show --textconv :docs/crm/3、任务管理.md [59ms] +2025-07-10 17:21:39.934 [info] > git ls-files --stage -- docs/crm/3、任务管理.md [57ms] +2025-07-10 17:21:39.995 [info] > git cat-file -s 679ca82cc7aaef795e72573e801aeb0e138222c7 [59ms] +2025-07-10 17:21:40.653 [info] > git show --textconv :docs/crm/4、财务管理.md [62ms] +2025-07-10 17:21:40.654 [info] > git ls-files --stage -- docs/crm/4、财务管理.md [59ms] +2025-07-10 17:21:40.715 [info] > git cat-file -s d75c81d0c707a704ecc6f860273dd011bd8e0242 [59ms] +2025-07-10 17:21:42.235 [info] > git ls-files --stage -- docs/bxgo/1、登录系统.md [55ms] +2025-07-10 17:21:42.238 [info] > git show --textconv :docs/bxgo/1、登录系统.md [62ms] +2025-07-10 17:21:42.297 [info] > git cat-file -s dcc83ab8f7bf58fc8c20a32e8243a563edf86f19 [60ms] +2025-07-10 17:21:45.082 [info] > git ls-files --stage -- docs/bxgo/商品管理/_category_.json [56ms] +2025-07-10 17:21:45.084 [info] > git show --textconv :docs/bxgo/商品管理/_category_.json [61ms] +2025-07-10 17:21:45.141 [info] > git cat-file -s 9038f98f8e26d700c7bb5eff9ebcfe83fb0e4c5d [57ms] +2025-07-10 17:21:45.911 [info] > git ls-files --stage -- docs/bxgo/商品管理/管理商品.md [59ms] +2025-07-10 17:21:45.914 [info] > git show --textconv :docs/bxgo/商品管理/管理商品.md [65ms] +2025-07-10 17:21:45.969 [info] > git cat-file -s 06c065d07716033ac3e709ab01d5a44a5228e505 [55ms] +2025-07-10 17:22:27.109 [info] > git show --textconv :docs/hxzx/订单管理.md [68ms] +2025-07-10 17:22:27.112 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [68ms] +2025-07-10 17:22:27.112 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:22:27.113 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [66ms] +2025-07-10 17:22:27.117 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [67ms] +2025-07-10 17:22:27.117 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:22:27.175 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [60ms] +2025-07-10 17:22:29.771 [info] > git show --textconv :docs/hxzx/商品管理.md [63ms] +2025-07-10 17:22:29.774 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [63ms] +2025-07-10 17:22:29.774 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:22:29.775 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [63ms] +2025-07-10 17:22:29.778 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [64ms] +2025-07-10 17:22:29.779 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:22:29.833 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [56ms] +2025-07-10 17:23:11.287 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [77ms] +2025-07-10 17:23:11.290 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [87ms] +2025-07-10 17:23:11.293 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [80ms] +2025-07-10 17:23:11.349 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-10 17:23:11.351 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [58ms] +2025-07-10 17:23:11.354 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [58ms] +2025-07-10 17:23:58.127 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [75ms] +2025-07-10 17:23:58.130 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [75ms] +2025-07-10 17:23:58.134 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [75ms] +2025-07-10 17:23:58.192 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [62ms] +2025-07-10 17:23:58.195 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [62ms] +2025-07-10 17:23:58.195 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [58ms] +2025-07-10 17:24:40.680 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [80ms] +2025-07-10 17:24:40.684 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [77ms] +2025-07-10 17:24:40.687 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [74ms] +2025-07-10 17:24:40.743 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [59ms] +2025-07-10 17:24:40.744 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-10 17:24:40.746 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-10 17:25:18.019 [info] > git ls-files --stage -- docs/bxgo/商品管理/管理商品.md [56ms] +2025-07-10 17:25:18.022 [info] > git show --textconv :docs/bxgo/商品管理/管理商品.md [62ms] +2025-07-10 17:25:18.077 [info] > git cat-file -s 06c065d07716033ac3e709ab01d5a44a5228e505 [56ms] +2025-07-10 17:25:39.307 [info] > git ls-files --stage -- docs/bxgo/商品管理/商品分类.md [56ms] +2025-07-10 17:25:39.309 [info] > git show --textconv :docs/bxgo/商品管理/商品分类.md [62ms] +2025-07-10 17:25:39.388 [info] > git cat-file -s 08411d866a8ce2f6629676b0757a2b343aaae83a [79ms] +2025-07-10 17:25:43.443 [info] > git ls-files --stage -- docs/bxgo/商品管理/商品规格.md [53ms] +2025-07-10 17:25:43.446 [info] > git show --textconv :docs/bxgo/商品管理/商品规格.md [59ms] +2025-07-10 17:25:43.501 [info] > git cat-file -s 4392859e74c4265f5c6ccb727297896c15f5de37 [56ms] +2025-07-10 17:25:47.239 [info] > git ls-files --stage -- docs/bxgo/商品管理/管理商品.md [64ms] +2025-07-10 17:25:47.242 [info] > git show --textconv :docs/bxgo/商品管理/管理商品.md [69ms] +2025-07-10 17:25:47.301 [info] > git cat-file -s 06c065d07716033ac3e709ab01d5a44a5228e505 [59ms] +2025-07-10 17:25:50.529 [info] > git ls-files --stage -- docs/bxg/gusangyuan.md [55ms] +2025-07-10 17:25:50.532 [info] > git show --textconv :docs/bxg/gusangyuan.md [60ms] +2025-07-10 17:25:50.642 [info] > git cat-file -s 8e64f95f0a2679c8baaac02499c4d2f67114ba84 [110ms] +2025-07-10 17:25:52.730 [info] > git ls-files --stage -- docs/bxg/meishije_refund.md [57ms] +2025-07-10 17:25:52.733 [info] > git show --textconv :docs/bxg/meishije_refund.md [62ms] +2025-07-10 17:25:52.790 [info] > git cat-file -s 5ae72045670980fdbc8f1cbee6ec945b0fe24a72 [57ms] +2025-07-10 17:25:53.866 [info] > git ls-files --stage -- docs/bxg/meishijie.md [94ms] +2025-07-10 17:25:53.869 [info] > git show --textconv :docs/bxg/meishijie.md [99ms] +2025-07-10 17:25:53.929 [info] > git cat-file -s 8882fdbcb6bd9cfb909b33d3579bd1d4dfb1027b [61ms] +2025-07-10 17:26:02.729 [info] > git ls-files --stage -- docs/app/好生意App/订单管理.md [55ms] +2025-07-10 17:26:02.732 [info] > git show --textconv :docs/app/好生意App/订单管理.md [61ms] +2025-07-10 17:26:02.787 [info] > git cat-file -s b2f48809473df2783889829673adfb542c984439 [55ms] +2025-07-10 17:26:13.265 [info] > git ls-files --stage -- docs/bxgo/商品管理/管理商品.md [57ms] +2025-07-10 17:26:13.268 [info] > git show --textconv :docs/bxgo/商品管理/管理商品.md [62ms] +2025-07-10 17:26:13.325 [info] > git cat-file -s 06c065d07716033ac3e709ab01d5a44a5228e505 [56ms] +2025-07-10 17:26:15.039 [info] > git ls-files --stage -- docs/bxgo/商品管理/商品分类.md [56ms] +2025-07-10 17:26:15.042 [info] > git show --textconv :docs/bxgo/商品管理/商品分类.md [61ms] +2025-07-10 17:26:15.097 [info] > git cat-file -s 08411d866a8ce2f6629676b0757a2b343aaae83a [54ms] +2025-07-10 17:26:15.816 [info] > git ls-files --stage -- docs/bxgo/商品管理/商品规格.md [59ms] +2025-07-10 17:26:15.818 [info] > git show --textconv :docs/bxgo/商品管理/商品规格.md [63ms] +2025-07-10 17:26:15.876 [info] > git cat-file -s 4392859e74c4265f5c6ccb727297896c15f5de37 [57ms] +2025-07-10 17:26:16.326 [info] > git ls-files --stage -- docs/bxgo/商品管理/运费模版.md [54ms] +2025-07-10 17:26:16.329 [info] > git show --textconv :docs/bxgo/商品管理/运费模版.md [58ms] +2025-07-10 17:26:16.411 [info] > git cat-file -s 45bfde72ad5db666f96b345c16b6fb9a77a09663 [83ms] +2025-07-10 17:26:48.841 [info] > git show --textconv :docs/hxzx/营销管理.md [69ms] +2025-07-10 17:26:48.843 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [70ms] +2025-07-10 17:26:48.844 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:26:48.845 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [69ms] +2025-07-10 17:26:48.850 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [72ms] +2025-07-10 17:26:48.850 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:26:48.906 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-10 17:26:49.468 [info] > git show --textconv :docs/hxzx/账号权限管理.md [64ms] +2025-07-10 17:26:49.470 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [64ms] +2025-07-10 17:26:49.471 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:26:49.472 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [63ms] +2025-07-10 17:26:49.476 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [64ms] +2025-07-10 17:26:49.476 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:26:49.572 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [97ms] +2025-07-10 17:26:49.877 [info] > git show --textconv HEAD:docs/hxzx/终端管理.md [61ms] +2025-07-10 17:26:49.878 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:26:49.878 [info] > git show --textconv :docs/hxzx/终端管理.md [65ms] +2025-07-10 17:26:49.882 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [64ms] +2025-07-10 17:26:49.885 [info] > git ls-tree -l HEAD -- docs/hxzx/终端管理.md [64ms] +2025-07-10 17:26:49.885 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:26:49.943 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [59ms] +2025-07-10 17:26:50.329 [info] > git show --textconv :docs/hxzx/自提管理.md [63ms] +2025-07-10 17:26:50.331 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [63ms] +2025-07-10 17:26:50.332 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:26:50.332 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [62ms] +2025-07-10 17:26:50.337 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [64ms] +2025-07-10 17:26:50.338 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:26:50.390 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [56ms] +2025-07-10 17:27:11.521 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [70ms] +2025-07-10 17:27:11.526 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [72ms] +2025-07-10 17:27:11.532 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [75ms] +2025-07-10 17:27:11.564 [info] > git add -A -- docs/hxzx/商品管理.md [79ms] +2025-07-10 17:27:11.601 [info] > git cat-file -s 6a4f28aabeb267ca279bc98829487d9b4547a30c [78ms] +2025-07-10 17:27:11.604 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [76ms] +2025-07-10 17:27:11.609 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [75ms] +2025-07-10 17:27:11.643 [info] > git symbolic-ref --short HEAD [76ms] +2025-07-10 17:27:11.649 [info] > git config --get commit.template [78ms] +2025-07-10 17:27:11.733 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [88ms] +2025-07-10 17:27:11.736 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:27:11.786 [info] > git rev-parse refs/remotes/origin/master [51ms] +2025-07-10 17:27:11.850 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-10 17:27:11.851 [info] > git status -z -uall [62ms] +2025-07-10 17:27:11.927 [info] > git -c user.useConfigOnly=true commit --quiet [69ms] +2025-07-10 17:27:11.927 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 17:27:11.987 [info] > git config --get-all user.name [58ms] +2025-07-10 17:27:12.047 [info] > git symbolic-ref --short HEAD [58ms] +2025-07-10 17:27:12.051 [info] > git config --get commit.template [58ms] +2025-07-10 17:27:12.107 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 17:27:12.109 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:27:12.168 [info] > git rev-parse refs/remotes/origin/master [58ms] +2025-07-10 17:27:12.228 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-10 17:27:12.232 [info] > git status -z -uall [62ms] +2025-07-10 17:27:14.252 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [83ms] +2025-07-10 17:27:14.262 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [90ms] +2025-07-10 17:27:14.266 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [87ms] +2025-07-10 17:27:14.272 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [91ms] +2025-07-10 17:27:14.276 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [100ms] +2025-07-10 17:27:14.284 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [100ms] +2025-07-10 17:27:14.300 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [112ms] +2025-07-10 17:27:14.306 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [115ms] +2025-07-10 17:27:14.315 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [115ms] +2025-07-10 17:27:14.328 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [134ms] +2025-07-10 17:27:14.374 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [116ms] +2025-07-10 17:27:14.387 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [115ms] +2025-07-10 17:27:14.390 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [115ms] +2025-07-10 17:27:14.391 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [126ms] +2025-07-10 17:27:14.399 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [119ms] +2025-07-10 17:27:14.431 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [122ms] +2025-07-10 17:27:14.432 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [141ms] +2025-07-10 17:27:14.432 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [127ms] +2025-07-10 17:27:14.435 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [117ms] +2025-07-10 17:27:14.461 [info] > git show --textconv HEAD:docs/hxzx/分销体系.md [125ms] +2025-07-10 17:27:14.552 [info] > git show --textconv :docs/hxzx/商品管理.md [174ms] +2025-07-10 17:27:14.597 [info] > git show --textconv :docs/hxzx/订单管理.md [173ms] +2025-07-10 17:27:14.599 [info] > git show --textconv :docs/hxzx/账号权限管理.md [155ms] +2025-07-10 17:27:14.602 [info] > git show --textconv :docs/hxzx/营销管理.md [175ms] +2025-07-10 17:27:14.608 [info] > git show --textconv :docs/hxzx/登录后台.md [187ms] +2025-07-10 17:27:14.615 [info] > git show --textconv :docs/hxzx/账号权限管理.md [184ms] +2025-07-10 17:27:14.625 [info] > git show --textconv :docs/hxzx/商品管理.md [175ms] +2025-07-10 17:27:14.625 [info] > git show --textconv :docs/hxzx/营销管理.md [170ms] +2025-07-10 17:27:14.628 [info] > git show --textconv :docs/hxzx/自提管理.md [167ms] +2025-07-10 17:27:15.124 [info] > git -c user.useConfigOnly=true commit --quiet [63ms] +2025-07-10 17:27:15.125 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 17:27:15.179 [info] > git config --get-all user.name [53ms] +2025-07-10 17:27:15.239 [info] > git config --get commit.template [54ms] +2025-07-10 17:27:15.239 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-10 17:27:15.296 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-10 17:27:15.299 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:27:15.354 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 17:27:15.453 [info] > git status -z -uall [97ms] +2025-07-10 17:27:15.470 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [111ms] +2025-07-10 17:27:15.538 [info] > git symbolic-ref --short HEAD [64ms] +2025-07-10 17:27:15.541 [info] > git config --get commit.template [65ms] +2025-07-10 17:27:15.600 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-10 17:27:15.602 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:27:15.657 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 17:27:15.718 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 17:27:15.720 [info] > git status -z -uall [61ms] +2025-07-10 17:27:17.260 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-10 17:27:17.263 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [73ms] +2025-07-10 17:27:17.266 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 17:27:17.326 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [63ms] +2025-07-10 17:27:17.328 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [61ms] +2025-07-10 17:27:17.332 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [62ms] +2025-07-10 17:27:24.524 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [68ms] +2025-07-10 17:27:24.527 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [69ms] +2025-07-10 17:27:24.529 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [67ms] +2025-07-10 17:27:24.628 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [101ms] +2025-07-10 17:27:24.648 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [116ms] +2025-07-10 17:27:24.649 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [119ms] +2025-07-10 17:27:36.206 [info] > git -c user.useConfigOnly=true commit --quiet [121ms] +2025-07-10 17:27:36.206 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 17:27:36.268 [info] > git config --get-all user.name [59ms] +2025-07-10 17:27:36.325 [info] > git symbolic-ref --short HEAD [54ms] +2025-07-10 17:27:36.327 [info] > git config --get commit.template [55ms] +2025-07-10 17:27:36.383 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-10 17:27:36.386 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:27:36.441 [info] > git rev-parse refs/remotes/origin/master [56ms] +2025-07-10 17:27:36.503 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [57ms] +2025-07-10 17:27:36.506 [info] > git status -z -uall [62ms] +2025-07-10 17:27:38.806 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [64ms] +2025-07-10 17:27:38.808 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [70ms] +2025-07-10 17:27:38.811 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [68ms] +2025-07-10 17:27:38.870 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [62ms] +2025-07-10 17:27:38.870 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [60ms] +2025-07-10 17:27:38.874 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-10 17:27:45.645 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [64ms] +2025-07-10 17:27:45.648 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [64ms] +2025-07-10 17:27:45.651 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [73ms] +2025-07-10 17:27:45.709 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [61ms] +2025-07-10 17:27:45.710 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-10 17:27:45.713 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [60ms] +2025-07-10 17:29:35.896 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [79ms] +2025-07-10 17:29:35.900 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [81ms] +2025-07-10 17:29:35.904 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [81ms] +2025-07-10 17:29:35.972 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [73ms] +2025-07-10 17:29:35.976 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [74ms] +2025-07-10 17:29:35.980 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [72ms] +2025-07-10 17:30:06.351 [info] > git -c user.useConfigOnly=true commit --quiet [65ms] +2025-07-10 17:30:06.352 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 17:30:06.410 [info] > git config --get-all user.name [56ms] +2025-07-10 17:30:06.469 [info] > git symbolic-ref --short HEAD [55ms] +2025-07-10 17:30:06.472 [info] > git config --get commit.template [56ms] +2025-07-10 17:30:06.588 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [116ms] +2025-07-10 17:30:06.590 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:30:06.645 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-10 17:30:06.706 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 17:30:06.710 [info] > git status -z -uall [62ms] +2025-07-10 17:30:18.314 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [66ms] +2025-07-10 17:30:18.319 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [64ms] +2025-07-10 17:30:18.321 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [70ms] +2025-07-10 17:30:18.379 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [63ms] +2025-07-10 17:30:18.382 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 17:30:18.383 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 17:30:35.043 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [61ms] +2025-07-10 17:30:35.046 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [67ms] +2025-07-10 17:30:35.049 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [65ms] +2025-07-10 17:30:35.157 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [109ms] +2025-07-10 17:30:35.159 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [114ms] +2025-07-10 17:30:35.165 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [113ms] +2025-07-10 17:30:53.403 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [92ms] +2025-07-10 17:30:53.407 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [88ms] +2025-07-10 17:30:53.411 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [88ms] +2025-07-10 17:30:53.490 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [84ms] +2025-07-10 17:30:53.491 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [76ms] +2025-07-10 17:30:53.491 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [82ms] +2025-07-10 17:31:00.238 [info] > git -c user.useConfigOnly=true commit --quiet [73ms] +2025-07-10 17:31:00.239 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no email was given and auto-detection is disabled +2025-07-10 17:31:00.299 [info] > git config --get-all user.name [58ms] +2025-07-10 17:31:00.378 [info] > git config --get commit.template [73ms] +2025-07-10 17:31:00.378 [info] > git symbolic-ref --short HEAD [76ms] +2025-07-10 17:31:00.438 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-10 17:31:00.440 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:31:00.495 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-10 17:31:00.555 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-10 17:31:00.559 [info] > git status -z -uall [62ms] +2025-07-10 17:35:21.739 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [73ms] +2025-07-10 17:35:21.741 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [74ms] +2025-07-10 17:35:21.745 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [75ms] +2025-07-10 17:35:21.807 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [66ms] +2025-07-10 17:35:21.807 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [63ms] +2025-07-10 17:35:21.808 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [61ms] +2025-07-10 17:35:48.984 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [77ms] +2025-07-10 17:35:48.987 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [74ms] +2025-07-10 17:35:48.990 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [88ms] +2025-07-10 17:35:49.047 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-10 17:35:49.049 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 17:35:49.051 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [58ms] +2025-07-10 17:35:51.747 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [76ms] +2025-07-10 17:35:51.750 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [73ms] +2025-07-10 17:35:51.753 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [79ms] +2025-07-10 17:35:51.871 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [117ms] +2025-07-10 17:35:51.871 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [121ms] +2025-07-10 17:35:51.893 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [137ms] +2025-07-10 17:39:06.663 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [69ms] +2025-07-10 17:39:06.665 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [77ms] +2025-07-10 17:39:06.669 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 17:39:06.746 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [78ms] +2025-07-10 17:39:06.747 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [82ms] +2025-07-10 17:39:06.755 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [84ms] +2025-07-10 17:41:40.404 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [77ms] +2025-07-10 17:41:40.407 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [83ms] +2025-07-10 17:41:40.410 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [89ms] +2025-07-10 17:41:40.479 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [72ms] +2025-07-10 17:41:40.481 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [68ms] +2025-07-10 17:41:40.482 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [73ms] +2025-07-10 17:42:24.514 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [75ms] +2025-07-10 17:42:24.517 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [76ms] +2025-07-10 17:42:24.521 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [77ms] +2025-07-10 17:42:24.629 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [112ms] +2025-07-10 17:42:24.642 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [122ms] +2025-07-10 17:42:24.649 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [125ms] +2025-07-10 17:42:32.946 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [77ms] +2025-07-10 17:42:32.950 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [76ms] +2025-07-10 17:42:32.953 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [75ms] +2025-07-10 17:42:33.023 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [70ms] +2025-07-10 17:42:33.026 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [76ms] +2025-07-10 17:42:33.045 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [89ms] +2025-07-10 17:45:03.569 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-10 17:45:03.572 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [77ms] +2025-07-10 17:45:03.575 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [83ms] +2025-07-10 17:45:03.632 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 17:45:03.632 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-10 17:45:03.635 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [58ms] +2025-07-10 17:45:07.700 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [129ms] +2025-07-10 17:45:07.703 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [134ms] +2025-07-10 17:45:07.707 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [133ms] +2025-07-10 17:45:07.771 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [69ms] +2025-07-10 17:45:07.773 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [67ms] +2025-07-10 17:45:07.775 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [65ms] +2025-07-10 17:45:08.831 [info] > git -c user.useConfigOnly=true commit --quiet [64ms] +2025-07-10 17:45:08.831 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no name was given and auto-detection is disabled +2025-07-10 17:45:08.889 [info] > git config --get-all user.name [56ms] +2025-07-10 17:45:08.952 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-10 17:45:08.955 [info] > git config --get commit.template [60ms] +2025-07-10 17:45:09.019 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [65ms] +2025-07-10 17:45:09.023 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-10 17:45:09.110 [info] > git rev-parse refs/remotes/origin/master [87ms] +2025-07-10 17:45:09.223 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [108ms] +2025-07-10 17:45:09.228 [info] > git status -z -uall [116ms] +2025-07-10 17:45:43.080 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [66ms] +2025-07-10 17:45:43.083 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [73ms] +2025-07-10 17:45:43.086 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [69ms] +2025-07-10 17:45:43.146 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [63ms] +2025-07-10 17:45:43.149 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [64ms] +2025-07-10 17:45:43.149 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [61ms] +2025-07-10 17:46:08.496 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [70ms] +2025-07-10 17:46:08.499 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-10 17:46:08.502 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [68ms] +2025-07-10 17:46:08.558 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [59ms] +2025-07-10 17:46:08.559 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-10 17:46:08.561 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-10 17:46:12.891 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [70ms] +2025-07-10 17:46:12.895 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [71ms] +2025-07-10 17:46:12.898 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [67ms] +2025-07-10 17:46:12.964 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [70ms] +2025-07-10 17:46:12.969 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [71ms] +2025-07-10 17:46:12.972 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [71ms] +2025-07-10 17:46:32.738 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [85ms] +2025-07-10 17:46:32.743 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [84ms] +2025-07-10 17:46:32.746 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [83ms] +2025-07-10 17:46:32.815 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [74ms] +2025-07-10 17:46:32.820 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [74ms] +2025-07-10 17:46:32.820 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [71ms] +2025-07-10 17:47:57.261 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [142ms] +2025-07-10 17:47:57.283 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [154ms] +2025-07-10 17:47:57.287 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [154ms] +2025-07-10 17:47:57.340 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [76ms] +2025-07-10 17:47:57.371 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [73ms] +2025-07-10 17:47:57.371 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [85ms] +2025-07-10 17:48:18.014 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [66ms] +2025-07-10 17:48:18.016 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [66ms] +2025-07-10 17:48:18.019 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [66ms] +2025-07-10 17:48:18.076 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [60ms] +2025-07-10 17:48:18.077 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-10 17:48:18.083 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-10 17:48:39.231 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [145ms] +2025-07-10 17:48:39.236 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [146ms] +2025-07-10 17:48:39.258 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [162ms] +2025-07-10 17:48:39.335 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [99ms] +2025-07-10 17:48:39.337 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [76ms] +2025-07-10 17:48:39.345 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [106ms] +2025-07-10 17:49:03.605 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [82ms] +2025-07-10 17:49:03.610 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [79ms] +2025-07-10 17:49:03.614 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [86ms] +2025-07-10 17:49:03.728 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [120ms] +2025-07-10 17:49:03.730 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [113ms] +2025-07-10 17:49:03.733 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [120ms] +2025-07-10 17:49:15.427 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [81ms] +2025-07-10 17:49:15.430 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [77ms] +2025-07-10 17:49:15.436 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [86ms] +2025-07-10 17:49:15.496 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [66ms] +2025-07-10 17:49:15.498 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [65ms] +2025-07-10 17:49:15.502 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [62ms] +2025-07-10 17:49:17.404 [info] > git ls-files --stage -- blog/2019-05-29-long-blog-post.md [55ms] +2025-07-10 17:49:17.406 [info] > git show --textconv :blog/2019-05-29-long-blog-post.md [60ms] +2025-07-10 17:49:17.466 [info] > git cat-file -s 26ffb1b1f65347e4f834542113930327a6ea5e79 [60ms] +2025-07-10 17:49:27.884 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [66ms] +2025-07-10 17:49:27.887 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [64ms] +2025-07-10 17:49:27.890 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [70ms] +2025-07-10 17:49:27.949 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [62ms] +2025-07-10 17:49:27.952 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [63ms] +2025-07-10 17:49:27.955 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [63ms] +2025-07-10 17:49:34.739 [info] > git ls-files --stage -- docs/app/好生意App/订单管理.md [57ms] +2025-07-10 17:49:34.742 [info] > git show --textconv :docs/app/好生意App/订单管理.md [62ms] +2025-07-10 17:49:34.800 [info] > git cat-file -s b2f48809473df2783889829673adfb542c984439 [58ms] +2025-07-10 17:49:35.856 [info] > git ls-files --stage -- docs/app/好生意App/扫码核销.md [55ms] +2025-07-10 17:49:35.859 [info] > git show --textconv :docs/app/好生意App/扫码核销.md [61ms] +2025-07-10 17:49:35.918 [info] > git cat-file -s 9f9921c2c2f2cb8daffae7dba7fccc28ef65cfd5 [60ms] +2025-07-10 17:49:38.393 [info] > git show --textconv :docs/hxzx/登录后台.md [63ms] +2025-07-10 17:49:38.396 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [64ms] +2025-07-10 17:49:38.396 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:49:38.399 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [65ms] +2025-07-10 17:49:38.412 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [76ms] +2025-07-10 17:49:38.412 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:49:38.520 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [117ms] +2025-07-10 17:49:39.544 [info] > git show --textconv :docs/hxzx/安全管理.md [65ms] +2025-07-10 17:49:39.547 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [66ms] +2025-07-10 17:49:39.547 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:49:39.548 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [64ms] +2025-07-10 17:49:39.551 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [65ms] +2025-07-10 17:49:39.551 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-10 17:49:39.606 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [55ms] +2025-07-11 09:01:33.928 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [392ms] +2025-07-11 09:01:33.932 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [390ms] +2025-07-11 09:01:33.935 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [395ms] +2025-07-11 09:01:34.036 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [98ms] +2025-07-11 09:01:34.036 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [101ms] +2025-07-11 09:01:34.036 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [104ms] +2025-07-11 09:01:52.596 [info] > git show --textconv :docs/hxzx/商品管理.md [64ms] +2025-07-11 09:01:52.599 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [65ms] +2025-07-11 09:01:52.599 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:01:52.601 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [64ms] +2025-07-11 09:01:52.604 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [65ms] +2025-07-11 09:01:52.604 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:01:52.692 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [88ms] +2025-07-11 09:01:53.898 [info] > git show --textconv :docs/hxzx/营销管理.md [65ms] +2025-07-11 09:01:53.900 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [64ms] +2025-07-11 09:01:53.900 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:01:53.902 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [65ms] +2025-07-11 09:01:53.906 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [65ms] +2025-07-11 09:01:53.906 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:01:53.997 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [92ms] +2025-07-11 09:01:54.795 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [62ms] +2025-07-11 09:01:54.795 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:01:54.795 [info] > git show --textconv :docs/hxzx/自提管理.md [64ms] +2025-07-11 09:01:54.798 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [62ms] +2025-07-11 09:01:54.801 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [63ms] +2025-07-11 09:01:54.802 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:01:54.861 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [61ms] +2025-07-11 09:02:42.761 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [73ms] +2025-07-11 09:02:42.765 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [75ms] +2025-07-11 09:02:42.768 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [75ms] +2025-07-11 09:02:42.827 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [63ms] +2025-07-11 09:02:42.830 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [62ms] +2025-07-11 09:02:42.834 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [63ms] +2025-07-11 09:03:16.760 [info] > git ls-files --stage -- .vscode/launch.json [59ms] +2025-07-11 09:03:16.761 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.vscode/launch.json.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.vscode%5C%5Claunch.json%22%2C%22ref%22%3A%22%22%7D +2025-07-11 09:03:16.761 [info] > git show --textconv :.vscode/launch.json [63ms] +2025-07-11 09:03:16.761 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.vscode/launch.json.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.vscode%5C%5Claunch.json%22%2C%22ref%22%3A%22%22%7D +2025-07-11 09:03:16.968 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-11 09:03:17.553 [info] > git config --get commit.template [57ms] +2025-07-11 09:03:17.553 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-11 09:03:17.629 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [73ms] +2025-07-11 09:03:17.644 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 09:03:17.707 [info] > git rev-parse refs/remotes/origin/master [63ms] +2025-07-11 09:03:17.766 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [54ms] +2025-07-11 09:03:17.772 [info] > git status -z -uall [62ms] +2025-07-11 09:03:33.457 [info] > git show --textconv :docs/hxzx/订单管理.md [63ms] +2025-07-11 09:03:33.458 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [62ms] +2025-07-11 09:03:33.458 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:03:33.460 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [62ms] +2025-07-11 09:03:33.464 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [63ms] +2025-07-11 09:03:33.464 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:03:33.517 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [56ms] +2025-07-11 09:34:27.694 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [706ms] +2025-07-11 09:34:27.698 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [714ms] +2025-07-11 09:34:27.700 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [715ms] +2025-07-11 09:34:27.796 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [99ms] +2025-07-11 09:34:27.796 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [93ms] +2025-07-11 09:34:27.797 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [96ms] +2025-07-11 09:34:44.929 [info] > git show --textconv :docs/hxzx/自提管理.md [67ms] +2025-07-11 09:34:44.930 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [65ms] +2025-07-11 09:34:44.930 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:34:44.931 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [64ms] +2025-07-11 09:34:44.934 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [64ms] +2025-07-11 09:34:44.934 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:34:44.988 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [54ms] +2025-07-11 09:34:54.796 [info] > git show --textconv :docs/hxzx/自提管理 copy.md [61ms] +2025-07-11 09:34:54.796 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-11 09:34:54.797 [info] > git ls-files --stage -- docs/hxzx/自提管理 copy.md [61ms] +2025-07-11 09:34:54.797 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86%20copy.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86%20copy.md%22%2C%22ref%22%3A%22%22%7D +2025-07-11 09:34:55.150 [info] > git check-ignore -v -z --stdin [61ms] +2025-07-11 09:34:55.677 [info] > git config --get commit.template [59ms] +2025-07-11 09:34:55.677 [info] > git symbolic-ref --short HEAD [61ms] +2025-07-11 09:34:55.740 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-11 09:34:55.742 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 09:34:55.800 [info] > git rev-parse refs/remotes/origin/master [58ms] +2025-07-11 09:34:55.868 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [63ms] +2025-07-11 09:34:55.877 [info] > git status -z -uall [75ms] +2025-07-11 09:35:04.264 [info] > git show --textconv :docs/hxzx/积分管理.md [63ms] +2025-07-11 09:35:04.265 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-11 09:35:04.265 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [62ms] +2025-07-11 09:35:04.265 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22%22%7D +2025-07-11 09:35:04.334 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- docs/hxzx/积分管理.md [63ms] +2025-07-11 09:35:04.334 [info] fatal: no such path docs/hxzx/积分管理.md in 84e81a2b2f02798acbb48e1045be9ddac82d8632 +2025-07-11 09:35:04.553 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-11 09:35:05.057 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-11 09:35:05.060 [info] > git config --get commit.template [60ms] +2025-07-11 09:35:05.118 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [58ms] +2025-07-11 09:35:05.121 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 09:35:05.177 [info] > git rev-parse refs/remotes/origin/master [57ms] +2025-07-11 09:35:05.237 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-11 09:35:05.242 [info] > git status -z -uall [63ms] +2025-07-11 09:35:06.609 [info] > git show --textconv :docs/hxzx/自提管理.md [61ms] +2025-07-11 09:35:06.612 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [63ms] +2025-07-11 09:35:06.612 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:35:06.615 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [64ms] +2025-07-11 09:35:06.618 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [64ms] +2025-07-11 09:35:06.618 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:35:06.674 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [57ms] +2025-07-11 09:35:17.766 [info] > git show --textconv :docs/hxzx/营销管理.md [66ms] +2025-07-11 09:35:17.767 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [64ms] +2025-07-11 09:35:17.767 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:35:17.771 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [66ms] +2025-07-11 09:35:17.773 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [67ms] +2025-07-11 09:35:17.773 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:35:17.831 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-11 09:35:58.830 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [82ms] +2025-07-11 09:35:58.833 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [81ms] +2025-07-11 09:35:58.835 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [91ms] +2025-07-11 09:35:58.891 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [56ms] +2025-07-11 09:35:58.891 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-11 09:35:58.893 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [56ms] +2025-07-11 09:36:53.834 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [75ms] +2025-07-11 09:36:53.837 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [69ms] +2025-07-11 09:36:53.839 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [74ms] +2025-07-11 09:36:53.896 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [59ms] +2025-07-11 09:36:53.897 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [58ms] +2025-07-11 09:36:53.899 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [58ms] +2025-07-11 09:38:40.130 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [102ms] +2025-07-11 09:38:40.162 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [138ms] +2025-07-11 09:38:40.165 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [134ms] +2025-07-11 09:38:40.222 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [82ms] +2025-07-11 09:38:40.234 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [70ms] +2025-07-11 09:38:40.237 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [70ms] +2025-07-11 09:39:31.213 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [77ms] +2025-07-11 09:39:31.215 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [75ms] +2025-07-11 09:39:31.217 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [73ms] +2025-07-11 09:39:31.272 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [57ms] +2025-07-11 09:39:31.273 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-11 09:39:31.276 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-11 09:40:19.385 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [70ms] +2025-07-11 09:40:19.388 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [76ms] +2025-07-11 09:40:19.390 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [70ms] +2025-07-11 09:40:19.447 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [57ms] +2025-07-11 09:40:19.447 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-11 09:40:19.449 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-11 09:40:45.442 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [69ms] +2025-07-11 09:40:45.447 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-11 09:40:45.449 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [66ms] +2025-07-11 09:40:45.504 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [60ms] +2025-07-11 09:40:45.508 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-11 09:40:45.510 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-11 09:40:52.802 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [68ms] +2025-07-11 09:40:52.808 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [66ms] +2025-07-11 09:40:52.811 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [72ms] +2025-07-11 09:40:52.868 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [63ms] +2025-07-11 09:40:52.871 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [61ms] +2025-07-11 09:40:52.872 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-11 09:41:05.530 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [70ms] +2025-07-11 09:41:05.534 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [70ms] +2025-07-11 09:41:05.537 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [67ms] +2025-07-11 09:41:05.590 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [58ms] +2025-07-11 09:41:05.593 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [54ms] +2025-07-11 09:41:05.594 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-11 09:41:19.476 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [71ms] +2025-07-11 09:41:19.479 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [71ms] +2025-07-11 09:41:19.481 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [68ms] +2025-07-11 09:41:19.540 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-11 09:41:19.541 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [62ms] +2025-07-11 09:41:19.542 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-11 09:41:39.329 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [74ms] +2025-07-11 09:41:39.331 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [80ms] +2025-07-11 09:41:39.333 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [74ms] +2025-07-11 09:41:39.390 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-11 09:41:39.391 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [57ms] +2025-07-11 09:41:39.391 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [56ms] +2025-07-11 09:41:45.295 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [68ms] +2025-07-11 09:41:45.300 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [65ms] +2025-07-11 09:41:45.302 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [72ms] +2025-07-11 09:41:45.360 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [62ms] +2025-07-11 09:41:45.361 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-11 09:41:45.363 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-11 09:42:18.791 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [79ms] +2025-07-11 09:42:18.794 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [77ms] +2025-07-11 09:42:18.797 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [76ms] +2025-07-11 09:42:18.852 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [58ms] +2025-07-11 09:42:18.853 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-11 09:42:18.856 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [58ms] +2025-07-11 09:43:15.655 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [78ms] +2025-07-11 09:43:15.658 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [77ms] +2025-07-11 09:43:15.660 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [76ms] +2025-07-11 09:43:15.715 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [58ms] +2025-07-11 09:43:15.720 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-11 09:43:15.721 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-11 09:43:24.643 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [78ms] +2025-07-11 09:43:24.646 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [77ms] +2025-07-11 09:43:24.648 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [76ms] +2025-07-11 09:43:24.705 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-11 09:43:24.705 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [60ms] +2025-07-11 09:43:24.706 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [57ms] +2025-07-11 09:43:56.775 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [67ms] +2025-07-11 09:43:56.777 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [63ms] +2025-07-11 09:43:56.779 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [68ms] +2025-07-11 09:43:56.838 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [61ms] +2025-07-11 09:43:56.838 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-11 09:43:56.838 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-11 09:45:01.368 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [113ms] +2025-07-11 09:45:01.398 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [140ms] +2025-07-11 09:45:01.401 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [140ms] +2025-07-11 09:45:01.432 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [62ms] +2025-07-11 09:45:01.460 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-11 09:45:01.460 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [56ms] +2025-07-11 09:46:14.934 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [74ms] +2025-07-11 09:46:14.937 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [69ms] +2025-07-11 09:46:14.939 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [76ms] +2025-07-11 09:46:14.996 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [60ms] +2025-07-11 09:46:15.001 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [61ms] +2025-07-11 09:46:15.002 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-11 09:46:18.650 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [65ms] +2025-07-11 09:46:18.655 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-11 09:46:18.657 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [67ms] +2025-07-11 09:46:18.711 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [58ms] +2025-07-11 09:46:18.719 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-11 09:46:18.720 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [62ms] +2025-07-11 09:46:31.820 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [63ms] +2025-07-11 09:46:31.825 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [66ms] +2025-07-11 09:46:31.827 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [67ms] +2025-07-11 09:46:31.885 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [63ms] +2025-07-11 09:46:31.890 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [63ms] +2025-07-11 09:46:31.892 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [63ms] +2025-07-11 09:46:33.447 [info] > git check-ignore -v -z --stdin [59ms] +2025-07-11 09:46:34.018 [info] > git config --get commit.template [55ms] +2025-07-11 09:46:34.018 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-11 09:46:34.081 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [61ms] +2025-07-11 09:46:34.084 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 09:46:34.138 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-11 09:46:34.198 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-11 09:46:34.203 [info] > git status -z -uall [63ms] +2025-07-11 09:47:18.969 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [74ms] +2025-07-11 09:47:18.971 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [71ms] +2025-07-11 09:47:18.973 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [69ms] +2025-07-11 09:47:19.032 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [61ms] +2025-07-11 09:47:19.032 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-11 09:47:19.035 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-11 09:47:39.701 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [75ms] +2025-07-11 09:47:39.704 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [74ms] +2025-07-11 09:47:39.706 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [72ms] +2025-07-11 09:47:39.760 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [56ms] +2025-07-11 09:47:39.761 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-11 09:47:39.762 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [54ms] +2025-07-11 09:47:48.090 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [68ms] +2025-07-11 09:47:48.092 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [73ms] +2025-07-11 09:47:48.094 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [70ms] +2025-07-11 09:47:48.160 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [68ms] +2025-07-11 09:47:48.160 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [64ms] +2025-07-11 09:47:48.161 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [66ms] +2025-07-11 09:47:50.537 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [104ms] +2025-07-11 09:47:50.561 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [130ms] +2025-07-11 09:47:50.569 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [133ms] +2025-07-11 09:47:50.635 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [66ms] +2025-07-11 09:47:50.638 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [66ms] +2025-07-11 09:47:50.639 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [99ms] +2025-07-11 09:47:53.444 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [63ms] +2025-07-11 09:47:53.446 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [64ms] +2025-07-11 09:47:53.449 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [63ms] +2025-07-11 09:47:53.507 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [62ms] +2025-07-11 09:47:53.508 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-11 09:47:53.512 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [60ms] +2025-07-11 09:47:54.967 [info] > git check-ignore -v -z --stdin [56ms] +2025-07-11 09:47:55.526 [info] > git symbolic-ref --short HEAD [57ms] +2025-07-11 09:47:55.529 [info] > git config --get commit.template [58ms] +2025-07-11 09:47:55.583 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [54ms] +2025-07-11 09:47:55.585 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 09:47:55.637 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-11 09:47:55.697 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [55ms] +2025-07-11 09:47:55.702 [info] > git status -z -uall [62ms] +2025-07-11 09:48:45.297 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [72ms] +2025-07-11 09:48:45.300 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [79ms] +2025-07-11 09:48:45.302 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [72ms] +2025-07-11 09:48:45.357 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-11 09:48:45.357 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [54ms] +2025-07-11 09:48:45.360 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [55ms] +2025-07-11 09:48:51.140 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [144ms] +2025-07-11 09:48:51.143 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [152ms] +2025-07-11 09:48:51.145 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [146ms] +2025-07-11 09:48:51.207 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [65ms] +2025-07-11 09:48:51.209 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [63ms] +2025-07-11 09:48:51.211 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [62ms] +2025-07-11 09:48:52.649 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-11 09:48:53.195 [info] > git config --get commit.template [59ms] +2025-07-11 09:48:53.197 [info] > git symbolic-ref --short HEAD [63ms] +2025-07-11 09:48:53.257 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [57ms] +2025-07-11 09:48:53.259 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 09:48:53.317 [info] > git rev-parse refs/remotes/origin/master [57ms] +2025-07-11 09:48:53.382 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [61ms] +2025-07-11 09:48:53.386 [info] > git status -z -uall [67ms] +2025-07-11 09:49:13.008 [info] > git ls-files --stage -- docs/odoo/store.md [54ms] +2025-07-11 09:49:13.010 [info] > git show --textconv :docs/odoo/store.md [59ms] +2025-07-11 09:49:13.065 [info] > git cat-file -s fad7ce92561c4f7af1c12dd8c18fd931b22ed4de [54ms] +2025-07-11 09:49:22.798 [info] > git ls-files --stage -- docs/odoo/start.md [59ms] +2025-07-11 09:49:22.809 [info] > git show --textconv :docs/odoo/start.md [72ms] +2025-07-11 09:49:22.855 [info] > git cat-file -s f3c32b318d463b06c9f6f421ffbe48877e4e463b [56ms] +2025-07-11 09:49:25.894 [info] > git ls-files --stage -- docs/odoo/settlement.md [57ms] +2025-07-11 09:49:25.896 [info] > git show --textconv :docs/odoo/settlement.md [62ms] +2025-07-11 09:49:25.957 [info] > git cat-file -s 99cd10f94425b6d77c212b09c2e3c0e99a7b86d2 [62ms] +2025-07-11 09:49:31.795 [info] > git show --textconv :docs/odoo/search.md [55ms] +2025-07-11 09:49:31.796 [info] > git ls-files --stage -- docs/odoo/search.md [54ms] +2025-07-11 09:49:31.856 [info] > git cat-file -s eb95923774f1bb49ffe56a10ec759e7b580739fe [58ms] +2025-07-11 09:49:35.774 [info] > git ls-files --stage -- docs/odoo/sale_summary.md [57ms] +2025-07-11 09:49:35.776 [info] > git show --textconv :docs/odoo/sale_summary.md [62ms] +2025-07-11 09:49:35.838 [info] > git cat-file -s e166a913e51677c0e5b2bb4b3799f6f958bde012 [62ms] +2025-07-11 09:49:38.693 [info] > git ls-files --stage -- docs/odoo/purchase.md [56ms] +2025-07-11 09:49:38.695 [info] > git show --textconv :docs/odoo/purchase.md [60ms] +2025-07-11 09:49:38.750 [info] > git cat-file -s 98d38e731db8861dffb75074e6a55d2f74cdc292 [55ms] +2025-07-11 09:50:14.764 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [62ms] +2025-07-11 09:50:14.764 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:50:14.764 [info] > git show --textconv :docs/hxzx/登录后台.md [64ms] +2025-07-11 09:50:14.768 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [63ms] +2025-07-11 09:50:14.770 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [64ms] +2025-07-11 09:50:14.771 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:50:14.823 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [54ms] +2025-07-11 09:50:18.447 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [61ms] +2025-07-11 09:50:18.448 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:50:18.448 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [60ms] +2025-07-11 09:50:18.451 [info] > git show --textconv :docs/hxzx/订单管理.md [66ms] +2025-07-11 09:50:18.454 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [64ms] +2025-07-11 09:50:18.454 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:50:18.505 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [55ms] +2025-07-11 09:50:22.232 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [58ms] +2025-07-11 09:50:22.234 [info] > git show --textconv :docs/hxzx/分销体系.md [62ms] +2025-07-11 09:50:22.288 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [54ms] +2025-07-11 09:50:40.158 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [122ms] +2025-07-11 09:50:40.161 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [126ms] +2025-07-11 09:50:40.161 [info] > git show --textconv :docs/hxzx/商品管理.md [128ms] +2025-07-11 09:50:40.162 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:50:40.182 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [143ms] +2025-07-11 09:50:40.183 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:50:40.216 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [54ms] +2025-07-11 09:50:47.363 [info] > git show --textconv :docs/hxzx/营销管理.md [64ms] +2025-07-11 09:50:47.364 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [62ms] +2025-07-11 09:50:47.364 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:50:47.367 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-11 09:50:47.371 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [65ms] +2025-07-11 09:50:47.371 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:50:47.423 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [55ms] +2025-07-11 09:50:51.334 [info] > git show --textconv :docs/hxzx/账号权限管理.md [72ms] +2025-07-11 09:50:51.341 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [75ms] +2025-07-11 09:50:51.341 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:50:51.341 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [74ms] +2025-07-11 09:50:51.344 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [74ms] +2025-07-11 09:50:51.345 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:50:51.405 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [62ms] +2025-07-11 09:50:52.553 [info] > git show --textconv :docs/hxzx/自提管理.md [70ms] +2025-07-11 09:50:52.556 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [68ms] +2025-07-11 09:50:52.558 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [73ms] +2025-07-11 09:50:52.559 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:50:52.559 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [69ms] +2025-07-11 09:50:52.559 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:50:52.645 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [86ms] +2025-07-11 09:51:02.704 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [68ms] +2025-07-11 09:51:02.705 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:02.705 [info] > git show --textconv :docs/hxzx/自提管理.md [70ms] +2025-07-11 09:51:02.705 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [67ms] +2025-07-11 09:51:02.708 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [68ms] +2025-07-11 09:51:02.708 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:02.765 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [57ms] +2025-07-11 09:51:03.935 [info] > git show --textconv HEAD:docs/hxzx/终端管理.md [99ms] +2025-07-11 09:51:03.935 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:03.957 [info] > git show --textconv :docs/hxzx/终端管理.md [124ms] +2025-07-11 09:51:03.959 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [122ms] +2025-07-11 09:51:03.962 [info] > git ls-tree -l HEAD -- docs/hxzx/终端管理.md [123ms] +2025-07-11 09:51:03.963 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:04.024 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [62ms] +2025-07-11 09:51:05.691 [info] > git show --textconv :docs/hxzx/账号权限管理.md [62ms] +2025-07-11 09:51:05.698 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [67ms] +2025-07-11 09:51:05.699 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:05.701 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [67ms] +2025-07-11 09:51:05.703 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [67ms] +2025-07-11 09:51:05.704 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:05.757 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [53ms] +2025-07-11 09:51:06.271 [info] > git show --textconv :docs/hxzx/营销管理.md [65ms] +2025-07-11 09:51:06.271 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [63ms] +2025-07-11 09:51:06.272 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:06.273 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [63ms] +2025-07-11 09:51:06.275 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [61ms] +2025-07-11 09:51:06.275 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:06.332 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-11 09:51:06.929 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [60ms] +2025-07-11 09:51:06.932 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [64ms] +2025-07-11 09:51:06.932 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:06.932 [info] > git show --textconv :docs/hxzx/商品管理.md [67ms] +2025-07-11 09:51:06.933 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [61ms] +2025-07-11 09:51:06.933 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:06.988 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [57ms] +2025-07-11 09:51:08.034 [info] > git show --textconv :docs/hxzx/订单管理.md [67ms] +2025-07-11 09:51:08.036 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [65ms] +2025-07-11 09:51:08.039 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [69ms] +2025-07-11 09:51:08.039 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:08.039 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [66ms] +2025-07-11 09:51:08.039 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:08.095 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [56ms] +2025-07-11 09:51:08.625 [info] > git show --textconv :docs/hxzx/登录后台.md [64ms] +2025-07-11 09:51:08.626 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [61ms] +2025-07-11 09:51:08.626 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:08.626 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [60ms] +2025-07-11 09:51:08.633 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [64ms] +2025-07-11 09:51:08.633 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:08.685 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [55ms] +2025-07-11 09:51:10.115 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [61ms] +2025-07-11 09:51:10.115 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:10.115 [info] > git show --textconv :docs/hxzx/安全管理.md [65ms] +2025-07-11 09:51:10.118 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [63ms] +2025-07-11 09:51:10.121 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [63ms] +2025-07-11 09:51:10.121 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:10.173 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [53ms] +2025-07-11 09:51:12.372 [info] > git show --textconv :docs/hxzx/自提管理.md [72ms] +2025-07-11 09:51:12.374 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [68ms] +2025-07-11 09:51:12.377 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [73ms] +2025-07-11 09:51:12.377 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:12.378 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [69ms] +2025-07-11 09:51:12.378 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:12.432 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [55ms] +2025-07-11 09:51:52.439 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [66ms] +2025-07-11 09:51:52.442 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [65ms] +2025-07-11 09:51:52.444 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [65ms] +2025-07-11 09:51:52.502 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [60ms] +2025-07-11 09:51:52.504 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-11 09:51:52.505 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [58ms] +2025-07-11 09:51:52.763 [info] > git show --textconv HEAD:docs/hxzx/终端管理.md [62ms] +2025-07-11 09:51:52.763 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:52.764 [info] > git show --textconv :docs/hxzx/终端管理.md [66ms] +2025-07-11 09:51:52.765 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [62ms] +2025-07-11 09:51:52.771 [info] > git ls-tree -l HEAD -- docs/hxzx/终端管理.md [65ms] +2025-07-11 09:51:52.771 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:51:52.824 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [57ms] +2025-07-11 09:54:58.738 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [65ms] +2025-07-11 09:54:58.741 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [64ms] +2025-07-11 09:54:58.746 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [68ms] +2025-07-11 09:54:58.804 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [64ms] +2025-07-11 09:54:58.805 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [61ms] +2025-07-11 09:54:58.818 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [70ms] +2025-07-11 09:55:20.959 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [72ms] +2025-07-11 09:55:20.962 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [73ms] +2025-07-11 09:55:20.965 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [73ms] +2025-07-11 09:55:21.033 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [72ms] +2025-07-11 09:55:21.033 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [69ms] +2025-07-11 09:55:21.035 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [68ms] +2025-07-11 09:55:31.101 [info] > git show --textconv HEAD:docs/hxzx/常见问题解答.md [64ms] +2025-07-11 09:55:31.101 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:55:31.103 [info] > git show --textconv :docs/hxzx/常见问题解答.md [67ms] +2025-07-11 09:55:31.103 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [63ms] +2025-07-11 09:55:31.106 [info] > git ls-tree -l HEAD -- docs/hxzx/常见问题解答.md [64ms] +2025-07-11 09:55:31.106 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:55:31.165 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [60ms] +2025-07-11 09:55:31.854 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [65ms] +2025-07-11 09:55:31.855 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:55:31.855 [info] > git show --textconv :docs/hxzx/安全管理.md [68ms] +2025-07-11 09:55:31.856 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [63ms] +2025-07-11 09:55:31.860 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [66ms] +2025-07-11 09:55:31.861 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:55:31.917 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [59ms] +2025-07-11 09:55:32.584 [info] > git show --textconv HEAD:docs/hxzx/常见问题解答.md [63ms] +2025-07-11 09:55:32.584 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:55:32.584 [info] > git show --textconv :docs/hxzx/常见问题解答.md [66ms] +2025-07-11 09:55:32.585 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [61ms] +2025-07-11 09:55:32.588 [info] > git ls-tree -l HEAD -- docs/hxzx/常见问题解答.md [63ms] +2025-07-11 09:55:32.588 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:55:32.644 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [57ms] +2025-07-11 09:55:55.498 [info] > git show --textconv :docs/hxzx/登录后台.md [65ms] +2025-07-11 09:55:55.499 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [63ms] +2025-07-11 09:55:55.499 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:55:55.499 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [62ms] +2025-07-11 09:55:55.502 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [62ms] +2025-07-11 09:55:55.502 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:55:55.557 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [55ms] +2025-07-11 09:56:09.084 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [64ms] +2025-07-11 09:56:09.084 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:56:09.084 [info] > git show --textconv :docs/hxzx/订单管理.md [67ms] +2025-07-11 09:56:09.086 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [64ms] +2025-07-11 09:56:09.088 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [64ms] +2025-07-11 09:56:09.088 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 09:56:09.144 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [57ms] +2025-07-11 10:08:56.555 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [88ms] +2025-07-11 10:08:56.558 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [88ms] +2025-07-11 10:08:56.562 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [98ms] +2025-07-11 10:08:56.634 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [72ms] +2025-07-11 10:08:56.634 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [76ms] +2025-07-11 10:08:56.635 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [70ms] +2025-07-11 10:11:09.665 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [67ms] +2025-07-11 10:11:09.672 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [68ms] +2025-07-11 10:11:09.674 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [73ms] +2025-07-11 10:11:09.725 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [57ms] +2025-07-11 10:11:09.734 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-11 10:11:09.735 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [61ms] +2025-07-11 10:11:15.099 [info] > git -c user.useConfigOnly=true commit --quiet [65ms] +2025-07-11 10:11:15.100 [info] Author identity unknown + +*** Please tell me who you are. + +Run + + git config --global user.email "you@example.com" + git config --global user.name "Your Name" + +to set your account's default identity. +Omit --global to set the identity only in this repository. + +fatal: no name was given and auto-detection is disabled +2025-07-11 10:11:15.158 [info] > git config --get-all user.name [56ms] +2025-07-11 10:11:15.215 [info] > git config --get commit.template [53ms] +2025-07-11 10:11:15.215 [info] > git symbolic-ref --short HEAD [55ms] +2025-07-11 10:11:15.273 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-11 10:11:15.276 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 10:11:15.328 [info] > git rev-parse refs/remotes/origin/master [52ms] +2025-07-11 10:11:15.388 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-11 10:11:15.392 [info] > git status -z -uall [62ms] +2025-07-11 10:11:18.318 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [61ms] +2025-07-11 10:11:18.321 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [57ms] +2025-07-11 10:11:18.322 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-11 10:11:18.385 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [63ms] +2025-07-11 10:11:18.385 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [61ms] +2025-07-11 10:11:18.386 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [66ms] +2025-07-11 10:11:31.698 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [77ms] +2025-07-11 10:11:31.701 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [76ms] +2025-07-11 10:11:31.704 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [75ms] +2025-07-11 10:11:31.780 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [79ms] +2025-07-11 10:11:31.782 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [76ms] +2025-07-11 10:11:31.782 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [78ms] +2025-07-11 10:11:35.407 [info] > git show --textconv :docs/hxzx/自提管理.md [60ms] +2025-07-11 10:11:35.408 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [59ms] +2025-07-11 10:11:35.408 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:35.409 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [58ms] +2025-07-11 10:11:35.413 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [60ms] +2025-07-11 10:11:35.413 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:35.465 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [54ms] +2025-07-11 10:11:36.042 [info] > git show --textconv :docs/hxzx/终端管理.md [62ms] +2025-07-11 10:11:36.044 [info] > git show --textconv HEAD:docs/hxzx/终端管理.md [62ms] +2025-07-11 10:11:36.044 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:36.045 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [61ms] +2025-07-11 10:11:36.048 [info] > git ls-tree -l HEAD -- docs/hxzx/终端管理.md [62ms] +2025-07-11 10:11:36.049 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:36.101 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [54ms] +2025-07-11 10:11:36.512 [info] > git show --textconv :docs/hxzx/账号权限管理.md [66ms] +2025-07-11 10:11:36.513 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [65ms] +2025-07-11 10:11:36.513 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:36.514 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [64ms] +2025-07-11 10:11:36.516 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [63ms] +2025-07-11 10:11:36.516 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:36.568 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [52ms] +2025-07-11 10:11:36.925 [info] > git show --textconv :docs/hxzx/营销管理.md [61ms] +2025-07-11 10:11:36.930 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [64ms] +2025-07-11 10:11:36.930 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:36.930 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-11 10:11:36.932 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [62ms] +2025-07-11 10:11:36.933 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:37.026 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [94ms] +2025-07-11 10:11:37.383 [info] > git show --textconv :docs/hxzx/商品管理.md [69ms] +2025-07-11 10:11:37.383 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [67ms] +2025-07-11 10:11:37.383 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:37.387 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [68ms] +2025-07-11 10:11:37.389 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [67ms] +2025-07-11 10:11:37.389 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:37.469 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [80ms] +2025-07-11 10:11:38.004 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [54ms] +2025-07-11 10:11:38.006 [info] > git show --textconv :docs/hxzx/分销体系.md [59ms] +2025-07-11 10:11:38.061 [info] > git cat-file -s 8561bf5b7c089691a0d88b4c5425cef70aa17ddb [55ms] +2025-07-11 10:11:38.410 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [61ms] +2025-07-11 10:11:38.410 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:38.410 [info] > git show --textconv :docs/hxzx/订单管理.md [63ms] +2025-07-11 10:11:38.411 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [61ms] +2025-07-11 10:11:38.413 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [60ms] +2025-07-11 10:11:38.414 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:38.469 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [56ms] +2025-07-11 10:11:38.757 [info] > git show --textconv :docs/hxzx/登录后台.md [60ms] +2025-07-11 10:11:38.759 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [60ms] +2025-07-11 10:11:38.760 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:38.760 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [58ms] +2025-07-11 10:11:38.764 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [60ms] +2025-07-11 10:11:38.764 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:38.817 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [55ms] +2025-07-11 10:11:39.097 [info] > git show --textconv HEAD:docs/hxzx/常见问题解答.md [62ms] +2025-07-11 10:11:39.098 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:39.098 [info] > git show --textconv :docs/hxzx/常见问题解答.md [65ms] +2025-07-11 10:11:39.099 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [62ms] +2025-07-11 10:11:39.102 [info] > git ls-tree -l HEAD -- docs/hxzx/常见问题解答.md [63ms] +2025-07-11 10:11:39.102 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:39.155 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [53ms] +2025-07-11 10:11:39.509 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [58ms] +2025-07-11 10:11:39.511 [info] > git show --textconv :docs/hxzx/安全管理.md [64ms] +2025-07-11 10:11:39.512 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [63ms] +2025-07-11 10:11:39.512 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:39.513 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [60ms] +2025-07-11 10:11:39.514 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:39.565 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [54ms] +2025-07-11 10:11:41.337 [info] > git show --textconv :docs/hxzx/登录后台.md [62ms] +2025-07-11 10:11:41.339 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [59ms] +2025-07-11 10:11:41.342 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [64ms] +2025-07-11 10:11:41.342 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:41.343 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [61ms] +2025-07-11 10:11:41.343 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:41.400 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [58ms] +2025-07-11 10:11:41.630 [info] > git show --textconv HEAD:docs/hxzx/常见问题解答.md [63ms] +2025-07-11 10:11:41.630 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:41.631 [info] > git show --textconv :docs/hxzx/常见问题解答.md [66ms] +2025-07-11 10:11:41.633 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [64ms] +2025-07-11 10:11:41.635 [info] > git ls-tree -l HEAD -- docs/hxzx/常见问题解答.md [64ms] +2025-07-11 10:11:41.636 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:11:41.691 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [56ms] +2025-07-11 10:14:23.908 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [86ms] +2025-07-11 10:14:23.927 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [102ms] +2025-07-11 10:14:23.936 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [108ms] +2025-07-11 10:14:24.045 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [110ms] +2025-07-11 10:14:24.047 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [108ms] +2025-07-11 10:14:24.060 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [133ms] +2025-07-11 10:14:43.340 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [67ms] +2025-07-11 10:14:43.342 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [72ms] +2025-07-11 10:14:43.345 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [68ms] +2025-07-11 10:14:43.478 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [136ms] +2025-07-11 10:14:43.479 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [132ms] +2025-07-11 10:14:43.479 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [135ms] +2025-07-11 10:16:10.179 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [90ms] +2025-07-11 10:16:10.189 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [93ms] +2025-07-11 10:16:10.194 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [92ms] +2025-07-11 10:16:10.254 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [72ms] +2025-07-11 10:16:10.260 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [66ms] +2025-07-11 10:16:10.262 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [63ms] +2025-07-11 10:17:18.275 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [76ms] +2025-07-11 10:17:18.277 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [71ms] +2025-07-11 10:17:18.279 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [75ms] +2025-07-11 10:17:18.337 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [59ms] +2025-07-11 10:17:18.338 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [59ms] +2025-07-11 10:17:18.340 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-11 10:17:39.369 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [72ms] +2025-07-11 10:17:39.372 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [72ms] +2025-07-11 10:17:39.374 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [69ms] +2025-07-11 10:17:39.434 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [62ms] +2025-07-11 10:17:39.435 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-11 10:17:39.437 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [61ms] +2025-07-11 10:17:46.009 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [70ms] +2025-07-11 10:17:46.018 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [74ms] +2025-07-11 10:17:46.020 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [72ms] +2025-07-11 10:17:46.070 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [59ms] +2025-07-11 10:17:46.077 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-11 10:17:46.078 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [55ms] +2025-07-11 10:18:10.829 [info] > git show --textconv :docs/hxzx/常见问题解答.md [72ms] +2025-07-11 10:18:10.830 [info] > git show --textconv HEAD:docs/hxzx/常见问题解答.md [70ms] +2025-07-11 10:18:10.830 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:18:10.831 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [69ms] +2025-07-11 10:18:10.837 [info] > git ls-tree -l HEAD -- docs/hxzx/常见问题解答.md [72ms] +2025-07-11 10:18:10.837 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:18:10.888 [info] > git cat-file -s d0488c526f284851686c5d3bd9b73890f8fbb7b4 [55ms] +2025-07-11 10:18:24.989 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [67ms] +2025-07-11 10:18:28.027 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [62ms] +2025-07-11 10:18:32.676 [info] > git add -A -- docs/hxzx/分销体系.md [59ms] +2025-07-11 10:18:32.735 [info] > git config --get commit.template [54ms] +2025-07-11 10:18:32.736 [info] > git symbolic-ref --short HEAD [58ms] +2025-07-11 10:18:32.791 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [53ms] +2025-07-11 10:18:32.793 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 10:18:32.849 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-11 10:18:32.907 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [53ms] +2025-07-11 10:18:32.911 [info] > git status -z -uall [59ms] +2025-07-11 10:18:33.070 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [61ms] +2025-07-11 10:18:33.071 [info] > git show --textconv HEAD:docs/hxzx/分销体系.md [65ms] +2025-07-11 10:18:33.943 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [73ms] +2025-07-11 10:18:33.949 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [75ms] +2025-07-11 10:18:33.953 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [77ms] +2025-07-11 10:18:33.958 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [79ms] +2025-07-11 10:18:33.960 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [79ms] +2025-07-11 10:18:33.964 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [78ms] +2025-07-11 10:18:33.967 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [78ms] +2025-07-11 10:18:34.017 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [72ms] +2025-07-11 10:18:34.021 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [69ms] +2025-07-11 10:18:34.027 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [72ms] +2025-07-11 10:18:34.035 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [74ms] +2025-07-11 10:18:34.039 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [76ms] +2025-07-11 10:18:34.039 [info] > git cat-file -s 7a1bef9301b353835b8505105469f6f9facc23d7 [73ms] +2025-07-11 10:18:34.046 [info] > git show --textconv HEAD:docs/hxzx/分销体系.md [75ms] +2025-07-11 10:18:34.092 [info] > git show --textconv :docs/hxzx/登录后台.md [72ms] +2025-07-11 10:18:34.095 [info] > git show --textconv :docs/hxzx/订单管理.md [71ms] +2025-07-11 10:18:34.098 [info] > git show --textconv :docs/hxzx/商品管理.md [68ms] +2025-07-11 10:18:34.106 [info] > git show --textconv :docs/hxzx/营销管理.md [67ms] +2025-07-11 10:18:34.108 [info] > git show --textconv :docs/hxzx/账号权限管理.md [66ms] +2025-07-11 10:18:34.111 [info] > git show --textconv :docs/hxzx/分销体系.md [65ms] +2025-07-11 10:18:34.945 [info] > git config --get commit.template [57ms] +2025-07-11 10:18:34.945 [info] > git symbolic-ref --short HEAD [60ms] +2025-07-11 10:18:35.006 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-11 10:18:35.008 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 10:18:35.066 [info] > git rev-parse refs/remotes/origin/master [58ms] +2025-07-11 10:18:35.127 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-11 10:18:35.131 [info] > git status -z -uall [63ms] +2025-07-11 10:18:44.745 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [68ms] +2025-07-11 10:18:44.750 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [72ms] +2025-07-11 10:18:44.753 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [73ms] +2025-07-11 10:18:44.756 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [70ms] +2025-07-11 10:18:44.783 [info] > git add -A -- docs/hxzx/常见问题解答.md [66ms] +2025-07-11 10:18:44.812 [info] > git cat-file -s 7a1bef9301b353835b8505105469f6f9facc23d7 [65ms] +2025-07-11 10:18:44.818 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [64ms] +2025-07-11 10:18:44.820 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [65ms] +2025-07-11 10:18:44.822 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [65ms] +2025-07-11 10:18:44.845 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-11 10:18:44.847 [info] > git config --get commit.template [58ms] +2025-07-11 10:18:44.901 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [54ms] +2025-07-11 10:18:44.903 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 10:18:44.957 [info] > git rev-parse refs/remotes/origin/master [54ms] +2025-07-11 10:18:45.015 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [54ms] +2025-07-11 10:18:45.020 [info] > git status -z -uall [61ms] +2025-07-11 10:18:45.957 [info] > git show --textconv :.git/COMMIT_EDITMSG [62ms] +2025-07-11 10:18:45.957 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.git/COMMIT_EDITMSG.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.git%5C%5CCOMMIT_EDITMSG%22%2C%22ref%22%3A%22%22%7D +2025-07-11 10:18:45.957 [info] > git ls-files --stage -- .git/COMMIT_EDITMSG [60ms] +2025-07-11 10:18:45.958 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.git/COMMIT_EDITMSG.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.git%5C%5CCOMMIT_EDITMSG%22%2C%22ref%22%3A%22%22%7D +2025-07-11 10:18:46.309 [info] > git check-ignore -v -z --stdin [74ms] +2025-07-11 10:18:46.433 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [73ms] +2025-07-11 10:18:46.436 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [74ms] +2025-07-11 10:18:46.439 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [74ms] +2025-07-11 10:18:46.442 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [74ms] +2025-07-11 10:18:46.445 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [74ms] +2025-07-11 10:18:46.448 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [74ms] +2025-07-11 10:18:46.504 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [69ms] +2025-07-11 10:18:46.509 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [71ms] +2025-07-11 10:18:46.513 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [71ms] +2025-07-11 10:18:46.518 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [73ms] +2025-07-11 10:18:46.519 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [71ms] +2025-07-11 10:18:46.521 [info] > git cat-file -s 7a1bef9301b353835b8505105469f6f9facc23d7 [71ms] +2025-07-11 10:18:46.577 [info] > git show --textconv :docs/hxzx/登录后台.md [69ms] +2025-07-11 10:18:46.582 [info] > git show --textconv :docs/hxzx/订单管理.md [70ms] +2025-07-11 10:18:46.587 [info] > git show --textconv :docs/hxzx/商品管理.md [70ms] +2025-07-11 10:18:46.593 [info] > git show --textconv :docs/hxzx/营销管理.md [69ms] +2025-07-11 10:18:46.596 [info] > git show --textconv :docs/hxzx/账号权限管理.md [68ms] +2025-07-11 10:18:46.598 [info] > git show --textconv :docs/hxzx/分销体系.md [67ms] +2025-07-11 10:20:48.417 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- .git/COMMIT_EDITMSG [60ms] +2025-07-11 10:20:48.417 [info] fatal: no such path .git/COMMIT_EDITMSG in 84e81a2b2f02798acbb48e1045be9ddac82d8632 +2025-07-11 10:20:53.591 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [57ms] +2025-07-11 10:20:53.596 [info] > git -c user.useConfigOnly=true commit --quiet [128572ms] +2025-07-11 10:20:53.596 [info] Aborting commit due to empty commit message. +2025-07-11 10:20:53.657 [info] > git cat-file -s 7a1bef9301b353835b8505105469f6f9facc23d7 [64ms] +2025-07-11 10:20:53.663 [info] > git symbolic-ref --short HEAD [65ms] +2025-07-11 10:20:53.711 [info] > git config --get commit.template [111ms] +2025-07-11 10:20:53.807 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [140ms] +2025-07-11 10:20:53.810 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 10:20:53.850 [info] > git show --textconv HEAD:docs/hxzx/分销体系.md [67ms] +2025-07-11 10:20:53.852 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [65ms] +2025-07-11 10:20:53.869 [info] > git rev-parse refs/remotes/origin/master [60ms] +2025-07-11 10:20:53.957 [info] > git status -z -uall [86ms] +2025-07-11 10:20:53.958 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [85ms] +2025-07-11 10:21:09.981 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [60ms] +2025-07-11 10:21:09.984 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [67ms] +2025-07-11 10:21:09.986 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [63ms] +2025-07-11 10:21:10.044 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [60ms] +2025-07-11 10:21:10.046 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [58ms] +2025-07-11 10:21:10.046 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [60ms] +2025-07-11 10:21:22.194 [info] > git add -A -- docs/hxzx/积分管理.md [56ms] +2025-07-11 10:21:22.251 [info] > git config --get commit.template [53ms] +2025-07-11 10:21:22.253 [info] > git symbolic-ref --short HEAD [56ms] +2025-07-11 10:21:22.309 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [55ms] +2025-07-11 10:21:22.311 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 10:21:22.416 [info] > git rev-parse refs/remotes/origin/master [105ms] +2025-07-11 10:21:22.483 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [62ms] +2025-07-11 10:21:22.483 [info] > git status -z -uall [64ms] +2025-07-11 10:21:22.569 [info] > git show --textconv HEAD:docs/hxzx/积分管理.md [60ms] +2025-07-11 10:21:22.570 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:22.570 [info] > git show --textconv :docs/hxzx/积分管理.md [63ms] +2025-07-11 10:21:22.572 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [61ms] +2025-07-11 10:21:22.575 [info] > git ls-tree -l HEAD -- docs/hxzx/积分管理.md [61ms] +2025-07-11 10:21:22.575 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:22.627 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [53ms] +2025-07-11 10:21:23.452 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [70ms] +2025-07-11 10:21:23.454 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [70ms] +2025-07-11 10:21:23.457 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [70ms] +2025-07-11 10:21:23.460 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [70ms] +2025-07-11 10:21:23.462 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [69ms] +2025-07-11 10:21:23.466 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [70ms] +2025-07-11 10:21:23.523 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [66ms] +2025-07-11 10:21:23.524 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [69ms] +2025-07-11 10:21:23.529 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [69ms] +2025-07-11 10:21:23.533 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [71ms] +2025-07-11 10:21:23.534 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [69ms] +2025-07-11 10:21:23.537 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [69ms] +2025-07-11 10:21:23.595 [info] > git show --textconv :docs/hxzx/订单管理.md [68ms] +2025-07-11 10:21:23.598 [info] > git show --textconv :docs/hxzx/登录后台.md [68ms] +2025-07-11 10:21:23.600 [info] > git show --textconv :docs/hxzx/商品管理.md [67ms] +2025-07-11 10:21:23.606 [info] > git show --textconv :docs/hxzx/营销管理.md [69ms] +2025-07-11 10:21:23.607 [info] > git show --textconv :docs/hxzx/账号权限管理.md [67ms] +2025-07-11 10:21:23.609 [info] > git show --textconv :docs/hxzx/积分管理.md [67ms] +2025-07-11 10:21:24.456 [info] > git config --get commit.template [59ms] +2025-07-11 10:21:24.457 [info] > git symbolic-ref --short HEAD [62ms] +2025-07-11 10:21:24.517 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [59ms] +2025-07-11 10:21:24.520 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 10:21:24.577 [info] > git rev-parse refs/remotes/origin/master [57ms] +2025-07-11 10:21:24.646 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [64ms] +2025-07-11 10:21:24.650 [info] > git status -z -uall [71ms] +2025-07-11 10:21:33.158 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [62ms] +2025-07-11 10:21:33.159 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:33.159 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [60ms] +2025-07-11 10:21:33.161 [info] > git show --textconv :docs/hxzx/安全管理.md [67ms] +2025-07-11 10:21:33.162 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [60ms] +2025-07-11 10:21:33.162 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:33.217 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [56ms] +2025-07-11 10:21:34.034 [info] > git show --textconv HEAD:docs/hxzx/积分管理.md [62ms] +2025-07-11 10:21:34.034 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:34.034 [info] > git show --textconv :docs/hxzx/积分管理.md [64ms] +2025-07-11 10:21:34.038 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [64ms] +2025-07-11 10:21:34.040 [info] > git ls-tree -l HEAD -- docs/hxzx/积分管理.md [64ms] +2025-07-11 10:21:34.040 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:34.095 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [55ms] +2025-07-11 10:21:48.248 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [74ms] +2025-07-11 10:21:48.251 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [72ms] +2025-07-11 10:21:48.253 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [76ms] +2025-07-11 10:21:48.370 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [119ms] +2025-07-11 10:21:48.370 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [116ms] +2025-07-11 10:21:48.377 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [120ms] +2025-07-11 10:21:49.349 [info] > git symbolic-ref --short HEAD [59ms] +2025-07-11 10:21:49.352 [info] > git config --get commit.template [58ms] +2025-07-11 10:21:49.408 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [56ms] +2025-07-11 10:21:49.410 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 10:21:49.465 [info] > git rev-parse refs/remotes/origin/master [55ms] +2025-07-11 10:21:49.526 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [56ms] +2025-07-11 10:21:49.530 [info] > git status -z -uall [63ms] +2025-07-11 10:21:50.233 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [62ms] +2025-07-11 10:21:50.233 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:50.234 [info] > git show --textconv :docs/hxzx/登录后台.md [64ms] +2025-07-11 10:21:50.234 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [62ms] +2025-07-11 10:21:50.237 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [62ms] +2025-07-11 10:21:50.238 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:50.291 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [55ms] +2025-07-11 10:21:52.831 [info] > git show --textconv :docs/hxzx/登录后台.md [64ms] +2025-07-11 10:21:52.835 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [64ms] +2025-07-11 10:21:52.837 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [69ms] +2025-07-11 10:21:52.837 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [65ms] +2025-07-11 10:21:52.838 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:52.838 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:52.893 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [56ms] +2025-07-11 10:21:53.565 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [64ms] +2025-07-11 10:21:53.565 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:53.567 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [64ms] +2025-07-11 10:21:53.569 [info] > git show --textconv :docs/hxzx/账号权限管理.md [70ms] +2025-07-11 10:21:53.570 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [64ms] +2025-07-11 10:21:53.570 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:53.627 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [58ms] +2025-07-11 10:21:54.984 [info] > git show --textconv :docs/hxzx/登录后台.md [63ms] +2025-07-11 10:21:54.985 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [62ms] +2025-07-11 10:21:54.985 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:54.991 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [66ms] +2025-07-11 10:21:54.993 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [67ms] +2025-07-11 10:21:54.994 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:21:55.051 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [59ms] +2025-07-11 10:21:57.884 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [55ms] +2025-07-11 10:21:57.887 [info] > git show --textconv :docs/hxzx/常见问题解答.md [61ms] +2025-07-11 10:21:57.941 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [54ms] +2025-07-11 10:21:59.069 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [56ms] +2025-07-11 10:21:59.128 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [56ms] +2025-07-11 10:21:59.648 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [92ms] +2025-07-11 10:21:59.728 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [76ms] +2025-07-11 10:22:00.835 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [60ms] +2025-07-11 10:22:00.838 [info] > git show --textconv :docs/hxzx/积分管理.md [64ms] +2025-07-11 10:22:00.891 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [53ms] +2025-07-11 10:22:01.341 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-11 10:22:01.600 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [60ms] +2025-07-11 10:22:01.660 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-11 10:22:01.965 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [63ms] +2025-07-11 10:22:01.968 [info] > git show --textconv :docs/hxzx/终端管理.md [67ms] +2025-07-11 10:22:02.024 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [56ms] +2025-07-11 10:22:02.348 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [60ms] +2025-07-11 10:22:02.351 [info] > git show --textconv :docs/hxzx/自提管理.md [65ms] +2025-07-11 10:22:02.403 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [52ms] +2025-07-11 10:22:03.056 [info] > git ls-files --stage -- docs/hxzx/image.png [66ms] +2025-07-11 10:22:03.059 [info] > git ls-files --stage -- docs/hxzx/image.png [67ms] +2025-07-11 10:22:03.123 [info] > git cat-file -s e9d3cb1f27a14434ee4eaa7eb2a7b08ac398eead [64ms] +2025-07-11 10:22:03.123 [info] > git cat-file -s e9d3cb1f27a14434ee4eaa7eb2a7b08ac398eead [63ms] +2025-07-11 10:22:03.216 [info] > git ls-files --stage -- docs/hxzx/image.png [54ms] +2025-07-11 10:22:03.219 [info] > git show --textconv :docs/hxzx/image.png [58ms] +2025-07-11 10:22:03.271 [info] > git cat-file -s e9d3cb1f27a14434ee4eaa7eb2a7b08ac398eead [52ms] +2025-07-11 10:22:03.541 [info] > git check-ignore -v -z --stdin [51ms] +2025-07-11 10:22:05.007 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [58ms] +2025-07-11 10:22:05.009 [info] > git show --textconv :docs/hxzx/自提管理.md [62ms] +2025-07-11 10:22:05.063 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [55ms] +2025-07-11 10:22:08.477 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [60ms] +2025-07-11 10:22:08.479 [info] > git show --textconv :docs/hxzx/积分管理.md [64ms] +2025-07-11 10:22:08.531 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [53ms] +2025-07-11 10:22:08.830 [info] > git show --textconv HEAD:docs/hxzx/积分管理.md [60ms] +2025-07-11 10:22:08.830 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:22:08.831 [info] > git ls-tree -l HEAD -- docs/hxzx/积分管理.md [59ms] +2025-07-11 10:22:08.831 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:22:26.872 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [66ms] +2025-07-11 10:22:26.875 [info] > git show --textconv :docs/hxzx/自提管理.md [71ms] +2025-07-11 10:22:26.942 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [67ms] +2025-07-11 10:22:27.745 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [57ms] +2025-07-11 10:22:27.747 [info] > git show --textconv :docs/hxzx/终端管理.md [62ms] +2025-07-11 10:22:27.800 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [53ms] +2025-07-11 10:22:29.440 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [60ms] +2025-07-11 10:22:29.498 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [55ms] +2025-07-11 10:22:30.319 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [61ms] +2025-07-11 10:22:30.321 [info] > git show --textconv :docs/hxzx/积分管理.md [66ms] +2025-07-11 10:22:30.374 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [53ms] +2025-07-11 10:22:31.185 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [58ms] +2025-07-11 10:22:31.317 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [129ms] +2025-07-11 10:22:32.288 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [58ms] +2025-07-11 10:22:32.346 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [56ms] +2025-07-11 10:22:32.946 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [59ms] +2025-07-11 10:22:32.948 [info] > git show --textconv :docs/hxzx/常见问题解答.md [64ms] +2025-07-11 10:22:33.000 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [53ms] +2025-07-11 10:22:33.491 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [60ms] +2025-07-11 10:22:33.494 [info] > git show --textconv :docs/hxzx/安全管理.md [65ms] +2025-07-11 10:22:33.549 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [56ms] +2025-07-11 10:22:45.389 [info] > git show --textconv :docs/hxzx/常见问题解答.md [299ms] +2025-07-11 10:22:45.390 [info] > git show --textconv :docs/hxzx/积分管理.md [293ms] +2025-07-11 10:22:45.390 [info] > git show --textconv HEAD:docs/hxzx/分销体系.md [297ms] +2025-07-11 10:22:45.399 [info] > git show --textconv :docs/hxzx/自提管理.md [297ms] +2025-07-11 10:22:45.400 [info] > git show --textconv :docs/hxzx/终端管理.md [300ms] +2025-07-11 10:22:45.400 [info] > git show --textconv :docs/hxzx/分销体系.md [305ms] +2025-07-11 10:22:45.400 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/图片7.png [246ms] +2025-07-11 10:22:45.411 [info] > git show --textconv :docs/hxzx/image/image.png [297ms] +2025-07-11 10:22:45.412 [info] > git show --textconv :docs/hxzx/image.png [304ms] +2025-07-11 10:22:45.424 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/图片4.png [283ms] +2025-07-11 10:22:45.425 [info] > git ls-files --stage -- docs/hxzx/image.png [114ms] +2025-07-11 10:22:45.428 [info] > git show --textconv :docs/hxzx/image/图片2.png [317ms] +2025-07-11 10:22:45.457 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [167ms] +2025-07-11 10:22:45.467 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/图片11.png [222ms] +2025-07-11 10:22:45.484 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/微信截图_20250710152635.png [225ms] +2025-07-11 10:22:45.486 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/微信截图_20250710152838.png [218ms] +2025-07-11 10:22:45.491 [info] > git show --textconv :docs/hxzx/image-1.png [385ms] +2025-07-11 10:22:45.495 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/微信截图_20250710153324.png [222ms] +2025-07-11 10:22:45.527 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/图片12.png [273ms] +2025-07-11 10:22:45.539 [info] > git show --textconv :docs/hxzx/image/分销体系/image.png [416ms] +2025-07-11 10:22:45.551 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/图片7.png [203ms] +2025-07-11 10:22:45.557 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/1111.png [430ms] +2025-07-11 10:22:45.558 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/图片8.png [355ms] +2025-07-11 10:22:45.572 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [175ms] +2025-07-11 10:22:45.594 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [297ms] +2025-07-11 10:22:45.599 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/image-shouhou.png [273ms] +2025-07-11 10:22:45.619 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/图片9.png [390ms] +2025-07-11 10:22:45.637 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/图片3.png [499ms] +2025-07-11 10:22:45.638 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/微信截图_20250710154636.png [357ms] +2025-07-11 10:22:45.644 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [343ms] +2025-07-11 10:22:45.714 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/图片10.png [482ms] +2025-07-11 10:22:45.714 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/图片3.png [378ms] +2025-07-11 10:22:45.718 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/图片11.png [354ms] +2025-07-11 10:22:45.720 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/微信截图_20250710152838.png [346ms] +2025-07-11 10:22:45.724 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [421ms] +2025-07-11 10:22:45.736 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/图片12.png [370ms] +2025-07-11 10:22:45.743 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/图片4.png [403ms] +2025-07-11 10:22:45.763 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/图片10.png [403ms] +2025-07-11 10:22:45.786 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/微信截图_20250710153324.png [407ms] +2025-07-11 10:22:45.812 [info] > git cat-file -s e9d3cb1f27a14434ee4eaa7eb2a7b08ac398eead [384ms] +2025-07-11 10:22:45.819 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/图片6.png [475ms] +2025-07-11 10:22:45.849 [info] > git ls-files --stage -- docs/hxzx/image-1.png [541ms] +2025-07-11 10:22:45.857 [info] > git cat-file -s 1a9171824a6f87d2bd3979260828cb14a7602b96 [304ms] +2025-07-11 10:22:45.859 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/微信截图_20250710153839.png [582ms] +2025-07-11 10:22:45.861 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [575ms] +2025-07-11 10:22:45.871 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [577ms] +2025-07-11 10:22:45.878 [info] > git ls-files --stage -- docs/hxzx/image/图片2.png [560ms] +2025-07-11 10:22:45.887 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [312ms] +2025-07-11 10:22:45.897 [info] > git show --textconv :docs/hxzx/安全管理.md [503ms] +2025-07-11 10:22:45.897 [info] > git show --textconv :docs/hxzx/image/分销体系/image-shouhou.png [780ms] +2025-07-11 10:22:45.900 [info] > git show --textconv :docs/hxzx/image/分销体系/imghoutai/图片6.png [749ms] +2025-07-11 10:22:45.907 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/微信截图_20250710153839.png [525ms] +2025-07-11 10:22:45.910 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [313ms] +2025-07-11 10:22:45.913 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/图片9.png [557ms] +2025-07-11 10:22:45.941 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/图片8.png [589ms] +2025-07-11 10:22:45.943 [info] > git cat-file -s b34631d1211f11251032cfc7f6cf879977992095 [198ms] +2025-07-11 10:22:45.944 [info] > git cat-file -s c15620654f1234948df876d54baf9a546abd33a2 [223ms] +2025-07-11 10:22:45.944 [info] > git cat-file -s 356c8b4ef05a017373ad1b55bf0e04cadce9657a [155ms] +2025-07-11 10:22:45.945 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/微信截图_20250710154636.png [557ms] +2025-07-11 10:22:45.951 [info] > git cat-file -s 6dfb5513bd110e562b0efdc94beb54652633947d [349ms] +2025-07-11 10:22:45.982 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/1111.png [649ms] +2025-07-11 10:22:45.991 [info] > git cat-file -s b220a8f91502d7709fbcd7c07a25f80e16edbb0b [110ms] +2025-07-11 10:22:45.994 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/imghoutai/微信截图_20250710152635.png [623ms] +2025-07-11 10:22:46.015 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [288ms] +2025-07-11 10:22:46.035 [info] > git cat-file -s 2cdbef25fc7de0a1dff46a1b142e744c1ac30d3f [270ms] +2025-07-11 10:22:46.042 [info] > git cat-file -s 0f426077c66457fc9400eadbcf19d583f31b9ba7 [325ms] +2025-07-11 10:22:46.097 [info] > git ls-files --stage -- docs/hxzx/image/分销体系/image.png [769ms] +2025-07-11 10:22:46.101 [info] > git cat-file -s 1f50e2bc2b60c286479187d5218082b42c7ca985 [192ms] +2025-07-11 10:22:46.102 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [237ms] +2025-07-11 10:22:46.102 [info] > git cat-file -s 7a1bef9301b353835b8505105469f6f9facc23d7 [228ms] +2025-07-11 10:22:46.102 [info] > git ls-files --stage -- docs/hxzx/image/image.png [781ms] +2025-07-11 10:22:46.172 [info] > git cat-file -s 7d41d5317b5cc9e1fcad9afebd80c1391d107623 [320ms] +2025-07-11 10:22:46.189 [info] > git cat-file -s 754f5d78857d916bec3a2ff9850bc91b934374ab [368ms] +2025-07-11 10:22:46.192 [info] > git cat-file -s ef35abbe886abef0b887e8a4b7688750e3c73ba7 [243ms] +2025-07-11 10:22:46.205 [info] > git cat-file -s 1690a9d91311030789b7ee45b86e253c2bdbc481 [482ms] +2025-07-11 10:22:46.205 [info] > git cat-file -s c651ad130866a8299410de55a43747801095cc9a [289ms] +2025-07-11 10:22:46.209 [info] > git cat-file -s d6ec4237e4c460083ec777a87a09c8cf47a087d9 [265ms] +2025-07-11 10:22:46.271 [info] > git cat-file -s 44d7d3ed027cc80b72b4e95ce1ee41f03c342569 [533ms] +2025-07-11 10:22:46.275 [info] > git cat-file -s b34631d1211f11251032cfc7f6cf879977992095 [290ms] +2025-07-11 10:22:46.275 [info] > git cat-file -s 3594f25a0442022050a62407eb6756d930ccef9e [277ms] +2025-07-11 10:22:46.275 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [629ms] +2025-07-11 10:22:46.285 [info] > git cat-file -s 8abd4d47886909c910da539811113ead24d2d4e2 [183ms] +2025-07-11 10:22:46.294 [info] > git cat-file -s 7d41d5317b5cc9e1fcad9afebd80c1391d107623 [188ms] +2025-07-11 10:23:12.997 [info] > git show --textconv :docs/hxzx/常见问题解答.md [62ms] +2025-07-11 10:23:12.999 [info] > git show --textconv HEAD:docs/hxzx/常见问题解答.md [61ms] +2025-07-11 10:23:12.999 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:23:13.000 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [61ms] +2025-07-11 10:23:13.003 [info] > git ls-tree -l HEAD -- docs/hxzx/常见问题解答.md [62ms] +2025-07-11 10:23:13.003 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:23:13.056 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [53ms] +2025-07-11 10:23:26.282 [info] > git show --textconv :docs/hxzx/自提管理.md [65ms] +2025-07-11 10:23:26.283 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [62ms] +2025-07-11 10:23:26.283 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:23:26.284 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [61ms] +2025-07-11 10:23:26.288 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [63ms] +2025-07-11 10:23:26.288 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:23:26.340 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [54ms] +2025-07-11 10:23:27.182 [info] > git show --textconv :docs/hxzx/终端管理.md [64ms] +2025-07-11 10:23:27.183 [info] > git show --textconv HEAD:docs/hxzx/终端管理.md [63ms] +2025-07-11 10:23:27.183 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:23:27.184 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [62ms] +2025-07-11 10:23:27.187 [info] > git ls-tree -l HEAD -- docs/hxzx/终端管理.md [62ms] +2025-07-11 10:23:27.188 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:23:27.241 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [54ms] +2025-07-11 10:23:28.859 [info] > git show --textconv :docs/hxzx/分销体系.md [65ms] +2025-07-11 10:23:28.863 [info] > git show --textconv HEAD:docs/hxzx/分销体系.md [66ms] +2025-07-11 10:23:28.864 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [65ms] +2025-07-11 10:23:28.867 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [66ms] +2025-07-11 10:23:28.932 [info] > git cat-file -s 7a1bef9301b353835b8505105469f6f9facc23d7 [65ms] +2025-07-11 10:23:29.688 [info] > git show --textconv HEAD:docs/hxzx/积分管理.md [62ms] +2025-07-11 10:23:29.688 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:23:29.689 [info] > git show --textconv :docs/hxzx/积分管理.md [64ms] +2025-07-11 10:23:29.690 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [61ms] +2025-07-11 10:23:29.692 [info] > git ls-tree -l HEAD -- docs/hxzx/积分管理.md [61ms] +2025-07-11 10:23:29.692 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:23:29.748 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [57ms] +2025-07-11 10:23:30.515 [info] > git show --textconv :docs/hxzx/分销体系.md [65ms] +2025-07-11 10:23:30.517 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [63ms] +2025-07-11 10:23:30.519 [info] > git show --textconv HEAD:docs/hxzx/分销体系.md [67ms] +2025-07-11 10:23:30.520 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [64ms] +2025-07-11 10:23:30.575 [info] > git cat-file -s 7a1bef9301b353835b8505105469f6f9facc23d7 [56ms] +2025-07-11 10:23:31.898 [info] > git show --textconv HEAD:docs/hxzx/积分管理.md [62ms] +2025-07-11 10:23:31.899 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:23:31.899 [info] > git show --textconv :docs/hxzx/积分管理.md [64ms] +2025-07-11 10:23:31.900 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [61ms] +2025-07-11 10:23:31.903 [info] > git ls-tree -l HEAD -- docs/hxzx/积分管理.md [62ms] +2025-07-11 10:23:31.903 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:23:31.955 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [53ms] +2025-07-11 10:23:53.027 [info] > git show --textconv :.git/COMMIT_EDITMSG [58ms] +2025-07-11 10:23:53.027 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.git/COMMIT_EDITMSG.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.git%5C%5CCOMMIT_EDITMSG%22%2C%22ref%22%3A%22%22%7D +2025-07-11 10:23:53.029 [info] > git ls-files --stage -- .git/COMMIT_EDITMSG [59ms] +2025-07-11 10:23:53.030 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.git/COMMIT_EDITMSG.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.git%5C%5CCOMMIT_EDITMSG%22%2C%22ref%22%3A%22%22%7D +2025-07-11 10:23:53.801 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [78ms] +2025-07-11 10:23:53.811 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [86ms] +2025-07-11 10:23:53.820 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [93ms] +2025-07-11 10:23:53.822 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [93ms] +2025-07-11 10:23:53.829 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [97ms] +2025-07-11 10:23:53.838 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [103ms] +2025-07-11 10:23:53.848 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [111ms] +2025-07-11 10:23:53.853 [info] > git ls-files --stage -- docs/hxzx/分销体系.md [108ms] +2025-07-11 10:23:53.856 [info] > git ls-tree -l HEAD -- docs/hxzx/分销体系.md [114ms] +2025-07-11 10:23:53.860 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [111ms] +2025-07-11 10:23:53.870 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [118ms] +2025-07-11 10:23:53.897 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [142ms] +2025-07-11 10:23:53.914 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [110ms] +2025-07-11 10:23:53.926 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [112ms] +2025-07-11 10:23:53.927 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [105ms] +2025-07-11 10:23:53.941 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [116ms] +2025-07-11 10:23:53.941 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [109ms] +2025-07-11 10:23:53.949 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [108ms] +2025-07-11 10:23:53.989 [info] > git cat-file -s 7a1bef9301b353835b8505105469f6f9facc23d7 [134ms] +2025-07-11 10:23:53.993 [info] > git show --textconv HEAD:docs/hxzx/分销体系.md [134ms] +2025-07-11 10:23:53.993 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [143ms] +2025-07-11 10:23:53.998 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [136ms] +2025-07-11 10:23:54.002 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [130ms] +2025-07-11 10:23:54.007 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [107ms] +2025-07-11 10:23:54.033 [info] > git show --textconv :docs/hxzx/登录后台.md [115ms] +2025-07-11 10:23:54.037 [info] > git show --textconv :docs/hxzx/订单管理.md [107ms] +2025-07-11 10:23:54.037 [info] > git show --textconv :docs/hxzx/商品管理.md [103ms] +2025-07-11 10:23:54.065 [info] > git show --textconv :docs/hxzx/账号权限管理.md [117ms] +2025-07-11 10:23:54.073 [info] > git show --textconv :docs/hxzx/安全管理.md [121ms] +2025-07-11 10:23:54.078 [info] > git show --textconv :docs/hxzx/营销管理.md [133ms] +2025-07-11 10:23:54.086 [info] > git show --textconv :docs/hxzx/分销体系.md [94ms] +2025-07-11 10:23:54.088 [info] > git show --textconv :docs/hxzx/积分管理.md [86ms] +2025-07-11 10:23:54.093 [info] > git show --textconv :docs/hxzx/常见问题解答.md [95ms] +2025-07-11 10:23:54.093 [info] > git show --textconv :docs/hxzx/终端管理.md [87ms] +2025-07-11 10:23:54.096 [info] > git show --textconv :docs/hxzx/自提管理.md [85ms] +2025-07-11 10:25:47.656 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [63ms] +2025-07-11 10:25:47.658 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [63ms] +2025-07-11 10:25:47.662 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [64ms] +2025-07-11 10:25:47.665 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [64ms] +2025-07-11 10:25:47.717 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [59ms] +2025-07-11 10:25:47.720 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [59ms] +2025-07-11 10:25:47.723 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [59ms] +2025-07-11 10:25:47.724 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [57ms] +2025-07-11 10:26:03.639 [info] > git show --textconv :docs/zsw/banner_settings.md [70ms] +2025-07-11 10:26:03.641 [info] > git ls-files --stage -- docs/zsw/banner_settings.md [69ms] +2025-07-11 10:26:03.696 [info] > git cat-file -s 30465414027bcd579637afc65c56b2778b795381 [53ms] +2025-07-11 10:26:09.022 [info] > git ls-files --stage -- docs/zsw/drive.md [55ms] +2025-07-11 10:26:09.024 [info] > git show --textconv :docs/zsw/drive.md [58ms] +2025-07-11 10:26:09.081 [info] > git cat-file -s 320e95883ed6bb069371ed42ff32dadbc11e17ac [57ms] +2025-07-11 10:26:12.014 [info] > git ls-files --stage -- docs/zsw/intro.md [57ms] +2025-07-11 10:26:12.017 [info] > git show --textconv :docs/zsw/intro.md [62ms] +2025-07-11 10:26:12.070 [info] > git cat-file -s 44a3ea753cf3f57b1c1c19672bdf8f779f6c39a6 [54ms] +2025-07-11 10:26:14.559 [info] > git ls-files --stage -- docs/zsw/member.md [59ms] +2025-07-11 10:26:14.563 [info] > git show --textconv :docs/zsw/member.md [65ms] +2025-07-11 10:26:14.619 [info] > git cat-file -s 4f17831fa71bb19b61d68eba3de51f8c0f674585 [57ms] +2025-07-11 10:26:28.812 [info] > git show --textconv :docs/hxzx/安全管理.md [64ms] +2025-07-11 10:26:28.813 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [63ms] +2025-07-11 10:26:28.813 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:26:28.814 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [62ms] +2025-07-11 10:26:28.817 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [63ms] +2025-07-11 10:26:28.817 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 10:26:28.871 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [55ms] +2025-07-11 10:26:46.992 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [70ms] +2025-07-11 10:26:46.996 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [72ms] +2025-07-11 10:26:47.000 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [72ms] +2025-07-11 10:26:47.003 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [72ms] +2025-07-11 10:26:47.065 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [69ms] +2025-07-11 10:26:47.069 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [71ms] +2025-07-11 10:26:47.076 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [70ms] +2025-07-11 10:26:47.076 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [73ms] +2025-07-11 10:26:47.224 [info] > git show --textconv :.vscode/launch.json [60ms] +2025-07-11 10:26:47.224 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.vscode/launch.json.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.vscode%5C%5Claunch.json%22%2C%22ref%22%3A%22%22%7D +2025-07-11 10:26:47.224 [info] > git ls-files --stage -- .vscode/launch.json [58ms] +2025-07-11 10:26:47.224 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.vscode/launch.json.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.vscode%5C%5Claunch.json%22%2C%22ref%22%3A%22%22%7D +2025-07-11 10:26:47.282 [info] > git blame --root --incremental 84e81a2b2f02798acbb48e1045be9ddac82d8632 -- .vscode/launch.json [54ms] +2025-07-11 10:26:47.282 [info] fatal: no such path .vscode/launch.json in 84e81a2b2f02798acbb48e1045be9ddac82d8632 +2025-07-11 10:27:21.104 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [64ms] +2025-07-11 10:27:21.110 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [68ms] +2025-07-11 10:27:21.115 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [66ms] +2025-07-11 10:27:21.118 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [72ms] +2025-07-11 10:27:21.167 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [60ms] +2025-07-11 10:27:21.174 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [61ms] +2025-07-11 10:27:21.180 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [63ms] +2025-07-11 10:27:21.182 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [62ms] +2025-07-11 10:27:42.302 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [69ms] +2025-07-11 10:27:42.306 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [68ms] +2025-07-11 10:27:42.309 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [73ms] +2025-07-11 10:27:42.313 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [72ms] +2025-07-11 10:27:42.367 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [63ms] +2025-07-11 10:27:42.370 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [61ms] +2025-07-11 10:27:42.374 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [62ms] +2025-07-11 10:27:42.376 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [61ms] +2025-07-11 10:28:08.515 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [74ms] +2025-07-11 10:28:08.520 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [71ms] +2025-07-11 10:28:08.523 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [79ms] +2025-07-11 10:28:08.527 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [75ms] +2025-07-11 10:28:08.580 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [63ms] +2025-07-11 10:28:08.588 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [65ms] +2025-07-11 10:28:08.592 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [66ms] +2025-07-11 10:28:08.592 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [63ms] +2025-07-11 10:31:21.347 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [70ms] +2025-07-11 10:31:21.350 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [70ms] +2025-07-11 10:31:21.356 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [74ms] +2025-07-11 10:31:21.358 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [74ms] +2025-07-11 10:31:21.414 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [64ms] +2025-07-11 10:31:21.414 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [61ms] +2025-07-11 10:31:21.417 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [59ms] +2025-07-11 10:31:21.419 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [58ms] +2025-07-11 10:31:48.024 [info] > git check-ignore -v -z --stdin [52ms] +2025-07-11 10:32:54.673 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [76ms] +2025-07-11 10:32:54.679 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [79ms] +2025-07-11 10:32:54.682 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [80ms] +2025-07-11 10:32:54.685 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [80ms] +2025-07-11 10:32:54.730 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [56ms] +2025-07-11 10:32:54.739 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [59ms] +2025-07-11 10:32:54.741 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [57ms] +2025-07-11 10:32:54.742 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [55ms] +2025-07-11 10:33:43.044 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [79ms] +2025-07-11 10:33:43.047 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [74ms] +2025-07-11 10:33:43.050 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [97ms] +2025-07-11 10:33:43.054 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [98ms] +2025-07-11 10:33:43.115 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [68ms] +2025-07-11 10:33:43.116 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [67ms] +2025-07-11 10:33:43.119 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [65ms] +2025-07-11 10:33:43.122 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [65ms] +2025-07-11 10:34:12.556 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [69ms] +2025-07-11 10:34:12.559 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [70ms] +2025-07-11 10:34:12.561 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [65ms] +2025-07-11 10:34:12.563 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [72ms] +2025-07-11 10:34:12.618 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [59ms] +2025-07-11 10:34:12.619 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [58ms] +2025-07-11 10:34:12.622 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [58ms] +2025-07-11 10:34:12.623 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [58ms] +2025-07-11 10:36:10.020 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [72ms] +2025-07-11 10:36:10.023 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [79ms] +2025-07-11 10:36:10.025 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [70ms] +2025-07-11 10:36:10.026 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [75ms] +2025-07-11 10:36:10.086 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [61ms] +2025-07-11 10:36:10.086 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [63ms] +2025-07-11 10:36:10.088 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [62ms] +2025-07-11 10:36:10.089 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [61ms] +2025-07-11 10:37:19.782 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [71ms] +2025-07-11 10:37:19.784 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [87ms] +2025-07-11 10:37:19.786 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [84ms] +2025-07-11 10:37:19.788 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [71ms] +2025-07-11 10:37:19.842 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [58ms] +2025-07-11 10:37:19.843 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [57ms] +2025-07-11 10:37:19.845 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [57ms] +2025-07-11 10:37:19.847 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [56ms] +2025-07-11 10:38:01.122 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [77ms] +2025-07-11 10:38:01.124 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [71ms] +2025-07-11 10:38:01.126 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [77ms] +2025-07-11 10:38:01.128 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [69ms] +2025-07-11 10:38:01.186 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [62ms] +2025-07-11 10:38:01.187 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [61ms] +2025-07-11 10:38:01.190 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [63ms] +2025-07-11 10:38:01.190 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [60ms] +2025-07-11 10:38:04.508 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [78ms] +2025-07-11 10:38:04.511 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [67ms] +2025-07-11 10:38:04.513 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [75ms] +2025-07-11 10:38:04.515 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [81ms] +2025-07-11 10:38:04.573 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [63ms] +2025-07-11 10:38:04.581 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [68ms] +2025-07-11 10:38:04.586 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [71ms] +2025-07-11 10:38:04.587 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [70ms] +2025-07-11 10:38:25.018 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [66ms] +2025-07-11 10:38:25.022 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [68ms] +2025-07-11 10:38:25.025 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [68ms] +2025-07-11 10:38:25.027 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [68ms] +2025-07-11 10:38:25.082 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [62ms] +2025-07-11 10:38:25.086 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [62ms] +2025-07-11 10:38:25.090 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [63ms] +2025-07-11 10:38:25.091 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [61ms] +2025-07-11 10:38:43.337 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [110ms] +2025-07-11 10:38:43.346 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [110ms] +2025-07-11 10:38:43.352 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [120ms] +2025-07-11 10:38:43.356 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [112ms] +2025-07-11 10:38:43.419 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [78ms] +2025-07-11 10:38:43.427 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [78ms] +2025-07-11 10:38:43.431 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [76ms] +2025-07-11 10:38:43.435 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [77ms] +2025-07-11 10:39:12.857 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [79ms] +2025-07-11 10:39:12.860 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [74ms] +2025-07-11 10:39:12.862 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [79ms] +2025-07-11 10:39:12.864 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [75ms] +2025-07-11 10:39:12.923 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [64ms] +2025-07-11 10:39:12.925 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [63ms] +2025-07-11 10:39:12.927 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [63ms] +2025-07-11 10:39:12.930 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [64ms] +2025-07-11 10:43:46.581 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [76ms] +2025-07-11 10:43:46.585 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [82ms] +2025-07-11 10:43:46.588 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [75ms] +2025-07-11 10:43:46.590 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [81ms] +2025-07-11 10:43:46.652 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [68ms] +2025-07-11 10:43:46.655 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [67ms] +2025-07-11 10:43:46.658 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [69ms] +2025-07-11 10:43:46.660 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [68ms] +2025-07-11 10:43:51.151 [info] > git ls-files --stage -- .git/COMMIT_EDITMSG [58ms] +2025-07-11 10:43:51.151 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.git/COMMIT_EDITMSG.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.git%5C%5CCOMMIT_EDITMSG%22%2C%22ref%22%3A%22%22%7D +2025-07-11 10:43:51.151 [info] > git show --textconv :.git/COMMIT_EDITMSG [62ms] +2025-07-11 10:43:51.151 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.git/COMMIT_EDITMSG.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.git%5C%5CCOMMIT_EDITMSG%22%2C%22ref%22%3A%22%22%7D +2025-07-11 10:45:16.095 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [60ms] +2025-07-11 10:45:16.098 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [61ms] +2025-07-11 10:45:16.102 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [63ms] +2025-07-11 10:45:16.104 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [64ms] +2025-07-11 10:45:16.159 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [62ms] +2025-07-11 10:45:16.164 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [63ms] +2025-07-11 10:45:16.167 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [63ms] +2025-07-11 10:45:16.168 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [61ms] +2025-07-11 10:47:08.046 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [278ms] +2025-07-11 10:47:08.049 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [289ms] +2025-07-11 10:47:08.051 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [279ms] +2025-07-11 10:47:08.054 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [298ms] +2025-07-11 10:47:08.127 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [78ms] +2025-07-11 10:47:08.136 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [84ms] +2025-07-11 10:47:08.139 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [85ms] +2025-07-11 10:47:08.145 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [88ms] +2025-07-11 10:47:22.164 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [65ms] +2025-07-11 10:47:22.167 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [63ms] +2025-07-11 10:47:22.169 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [67ms] +2025-07-11 10:47:22.172 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [64ms] +2025-07-11 10:47:22.229 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [61ms] +2025-07-11 10:47:22.230 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [64ms] +2025-07-11 10:47:22.232 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [60ms] +2025-07-11 10:47:22.233 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [58ms] +2025-07-11 10:48:06.494 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [63ms] +2025-07-11 10:48:06.497 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [64ms] +2025-07-11 10:48:06.500 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [64ms] +2025-07-11 10:48:06.503 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [62ms] +2025-07-11 10:48:06.556 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [60ms] +2025-07-11 10:48:06.560 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [60ms] +2025-07-11 10:48:06.564 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [61ms] +2025-07-11 10:48:06.565 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [60ms] +2025-07-11 10:49:13.083 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [82ms] +2025-07-11 10:49:13.086 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [88ms] +2025-07-11 10:49:13.090 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [87ms] +2025-07-11 10:49:13.094 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [86ms] +2025-07-11 10:49:13.146 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [60ms] +2025-07-11 10:49:13.147 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [59ms] +2025-07-11 10:49:13.150 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [58ms] +2025-07-11 10:49:13.153 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [57ms] +2025-07-11 10:49:15.944 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [71ms] +2025-07-11 10:49:15.946 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [77ms] +2025-07-11 10:49:15.949 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [73ms] +2025-07-11 10:49:15.952 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [73ms] +2025-07-11 10:49:16.327 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [371ms] +2025-07-11 10:49:16.328 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [376ms] +2025-07-11 10:49:16.328 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [379ms] +2025-07-11 10:49:16.328 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [382ms] +2025-07-11 10:49:51.146 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [72ms] +2025-07-11 10:49:51.150 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [73ms] +2025-07-11 10:49:51.154 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [73ms] +2025-07-11 10:49:51.158 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [73ms] +2025-07-11 10:49:51.222 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [74ms] +2025-07-11 10:49:51.223 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [70ms] +2025-07-11 10:49:51.228 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [70ms] +2025-07-11 10:49:51.230 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [70ms] +2025-07-11 10:49:51.400 [info] > git show --textconv :.vscode/launch.json [58ms] +2025-07-11 10:49:51.401 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.vscode/launch.json.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.vscode%5C%5Claunch.json%22%2C%22ref%22%3A%22%22%7D +2025-07-11 10:49:51.401 [info] > git ls-files --stage -- .vscode/launch.json [56ms] +2025-07-11 10:49:51.401 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.vscode/launch.json.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.vscode%5C%5Claunch.json%22%2C%22ref%22%3A%22%22%7D +2025-07-11 10:50:02.179 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [73ms] +2025-07-11 10:50:02.192 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [84ms] +2025-07-11 10:50:02.195 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [83ms] +2025-07-11 10:50:02.198 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [83ms] +2025-07-11 10:50:02.244 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [63ms] +2025-07-11 10:50:02.254 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [60ms] +2025-07-11 10:50:02.255 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [58ms] +2025-07-11 10:50:02.258 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [58ms] +2025-07-11 10:50:03.482 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [65ms] +2025-07-11 10:50:03.485 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [64ms] +2025-07-11 10:50:03.490 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [66ms] +2025-07-11 10:50:03.492 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [65ms] +2025-07-11 10:50:03.707 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [215ms] +2025-07-11 10:50:03.707 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [213ms] +2025-07-11 10:50:03.708 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [220ms] +2025-07-11 10:50:03.708 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [223ms] +2025-07-11 10:50:21.009 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [73ms] +2025-07-11 10:50:21.012 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [81ms] +2025-07-11 10:50:21.014 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [81ms] +2025-07-11 10:50:21.016 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [77ms] +2025-07-11 10:50:21.071 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [60ms] +2025-07-11 10:50:21.073 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [59ms] +2025-07-11 10:50:21.075 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [59ms] +2025-07-11 10:50:21.078 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [59ms] +2025-07-11 10:50:32.341 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [94ms] +2025-07-11 10:50:32.348 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [93ms] +2025-07-11 10:50:32.351 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [93ms] +2025-07-11 10:50:32.355 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [104ms] +2025-07-11 10:50:32.410 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [66ms] +2025-07-11 10:50:32.418 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [68ms] +2025-07-11 10:50:32.421 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [67ms] +2025-07-11 10:50:32.424 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [66ms] +2025-07-11 10:59:56.213 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [71ms] +2025-07-11 10:59:56.216 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [70ms] +2025-07-11 10:59:56.219 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [69ms] +2025-07-11 10:59:56.221 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [69ms] +2025-07-11 10:59:56.276 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [59ms] +2025-07-11 10:59:56.276 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [58ms] +2025-07-11 10:59:56.283 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [62ms] +2025-07-11 10:59:56.283 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [60ms] +2025-07-11 11:00:11.188 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [75ms] +2025-07-11 11:00:11.192 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [76ms] +2025-07-11 11:00:11.200 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [79ms] +2025-07-11 11:00:11.203 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [84ms] +2025-07-11 11:00:11.253 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [57ms] +2025-07-11 11:00:11.254 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [63ms] +2025-07-11 11:00:11.261 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [58ms] +2025-07-11 11:00:11.262 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [57ms] +2025-07-11 11:00:12.413 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [104ms] +2025-07-11 11:00:12.415 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [103ms] +2025-07-11 11:00:12.417 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [111ms] +2025-07-11 11:00:12.419 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [115ms] +2025-07-11 11:00:12.787 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [367ms] +2025-07-11 11:00:12.788 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [370ms] +2025-07-11 11:00:12.788 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [373ms] +2025-07-11 11:00:12.788 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [370ms] +2025-07-11 11:01:24.000 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [68ms] +2025-07-11 11:01:24.003 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [65ms] +2025-07-11 11:01:24.005 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [70ms] +2025-07-11 11:01:24.007 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [66ms] +2025-07-11 11:01:24.065 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [62ms] +2025-07-11 11:01:24.067 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [62ms] +2025-07-11 11:01:24.070 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [63ms] +2025-07-11 11:01:24.072 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [62ms] +2025-07-11 11:01:29.905 [info] > git show --textconv :docs/hxzx/安全管理.md [59ms] +2025-07-11 11:01:29.910 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [62ms] +2025-07-11 11:01:29.910 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:29.911 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [61ms] +2025-07-11 11:01:29.914 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [62ms] +2025-07-11 11:01:29.914 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:29.967 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [53ms] +2025-07-11 11:01:31.043 [info] > git show --textconv :docs/hxzx/常见问题解答.md [63ms] +2025-07-11 11:01:31.047 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [62ms] +2025-07-11 11:01:31.049 [info] > git show --textconv HEAD:docs/hxzx/常见问题解答.md [66ms] +2025-07-11 11:01:31.050 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:31.051 [info] > git ls-tree -l HEAD -- docs/hxzx/常见问题解答.md [64ms] +2025-07-11 11:01:31.051 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:31.105 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [56ms] +2025-07-11 11:01:31.861 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [62ms] +2025-07-11 11:01:31.864 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [68ms] +2025-07-11 11:01:31.864 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:31.865 [info] > git show --textconv :docs/hxzx/订单管理.md [71ms] +2025-07-11 11:01:31.865 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [64ms] +2025-07-11 11:01:31.865 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:31.921 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [56ms] +2025-07-11 11:01:32.478 [info] > git show --textconv :docs/hxzx/积分管理.md [62ms] +2025-07-11 11:01:32.481 [info] > git show --textconv HEAD:docs/hxzx/积分管理.md [63ms] +2025-07-11 11:01:32.481 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:32.481 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [61ms] +2025-07-11 11:01:32.484 [info] > git ls-tree -l HEAD -- docs/hxzx/积分管理.md [61ms] +2025-07-11 11:01:32.484 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:32.536 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [53ms] +2025-07-11 11:01:32.898 [info] > git show --textconv :docs/hxzx/营销管理.md [62ms] +2025-07-11 11:01:32.901 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [63ms] +2025-07-11 11:01:32.901 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:32.902 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [63ms] +2025-07-11 11:01:32.904 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [62ms] +2025-07-11 11:01:32.905 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:32.961 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [57ms] +2025-07-11 11:01:34.037 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [113ms] +2025-07-11 11:01:34.037 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:34.051 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [129ms] +2025-07-11 11:01:34.054 [info] > git show --textconv :docs/hxzx/自提管理.md [137ms] +2025-07-11 11:01:34.054 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [135ms] +2025-07-11 11:01:34.055 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:34.117 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [64ms] +2025-07-11 11:01:34.371 [info] > git show --textconv :docs/hxzx/订单管理.md [64ms] +2025-07-11 11:01:34.373 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [63ms] +2025-07-11 11:01:34.373 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:34.373 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [61ms] +2025-07-11 11:01:34.377 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [63ms] +2025-07-11 11:01:34.377 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:34.433 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [57ms] +2025-07-11 11:01:34.695 [info] > git show --textconv :docs/hxzx/登录后台.md [63ms] +2025-07-11 11:01:34.697 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [63ms] +2025-07-11 11:01:34.697 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:34.699 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [63ms] +2025-07-11 11:01:34.701 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [63ms] +2025-07-11 11:01:34.701 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:34.760 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [59ms] +2025-07-11 11:01:35.025 [info] > git show --textconv :docs/hxzx/安全管理.md [65ms] +2025-07-11 11:01:35.028 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [66ms] +2025-07-11 11:01:35.028 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:35.029 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [64ms] +2025-07-11 11:01:35.031 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [64ms] +2025-07-11 11:01:35.031 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:01:35.087 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [56ms] +2025-07-11 11:01:46.280 [info] > git show --textconv :.vscode/launch.json [63ms] +2025-07-11 11:01:46.281 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.vscode/launch.json.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.vscode%5C%5Claunch.json%22%2C%22ref%22%3A%22%22%7D +2025-07-11 11:01:46.283 [info] > git ls-files --stage -- .vscode/launch.json [61ms] +2025-07-11 11:01:46.283 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.vscode/launch.json.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.vscode%5C%5Claunch.json%22%2C%22ref%22%3A%22%22%7D +2025-07-11 11:02:04.153 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [83ms] +2025-07-11 11:02:04.158 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [85ms] +2025-07-11 11:02:04.167 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [89ms] +2025-07-11 11:02:04.173 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [88ms] +2025-07-11 11:02:04.233 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [77ms] +2025-07-11 11:02:04.235 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [75ms] +2025-07-11 11:02:04.242 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [73ms] +2025-07-11 11:02:04.250 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [73ms] +2025-07-11 11:03:25.717 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [100ms] +2025-07-11 11:03:25.727 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [107ms] +2025-07-11 11:03:25.732 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [104ms] +2025-07-11 11:03:25.735 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [113ms] +2025-07-11 11:03:25.799 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [80ms] +2025-07-11 11:03:25.808 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [76ms] +2025-07-11 11:03:25.814 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [79ms] +2025-07-11 11:03:25.814 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [76ms] +2025-07-11 11:05:56.933 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [66ms] +2025-07-11 11:05:56.941 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [71ms] +2025-07-11 11:05:56.943 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [69ms] +2025-07-11 11:05:56.945 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [69ms] +2025-07-11 11:05:56.990 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [55ms] +2025-07-11 11:05:56.999 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [56ms] +2025-07-11 11:05:56.999 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [54ms] +2025-07-11 11:05:57.002 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [55ms] +2025-07-11 11:06:28.843 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [117ms] +2025-07-11 11:06:28.848 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [76ms] +2025-07-11 11:06:28.851 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [83ms] +2025-07-11 11:06:28.852 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [87ms] +2025-07-11 11:06:28.920 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [75ms] +2025-07-11 11:06:28.924 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [73ms] +2025-07-11 11:06:28.929 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [77ms] +2025-07-11 11:06:28.931 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [76ms] +2025-07-11 11:06:47.128 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [73ms] +2025-07-11 11:06:47.134 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [72ms] +2025-07-11 11:06:47.136 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [78ms] +2025-07-11 11:06:47.139 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [74ms] +2025-07-11 11:06:47.197 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [67ms] +2025-07-11 11:06:47.209 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [73ms] +2025-07-11 11:06:47.211 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [72ms] +2025-07-11 11:06:47.212 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [70ms] +2025-07-11 11:08:52.725 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [78ms] +2025-07-11 11:08:52.730 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [76ms] +2025-07-11 11:08:52.733 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [75ms] +2025-07-11 11:08:52.735 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [85ms] +2025-07-11 11:08:52.791 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [63ms] +2025-07-11 11:08:52.794 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [59ms] +2025-07-11 11:08:52.795 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [62ms] +2025-07-11 11:08:52.797 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [58ms] +2025-07-11 11:11:37.547 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [69ms] +2025-07-11 11:11:37.556 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [72ms] +2025-07-11 11:11:37.558 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [78ms] +2025-07-11 11:11:37.561 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [73ms] +2025-07-11 11:11:37.610 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [60ms] +2025-07-11 11:11:37.617 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [59ms] +2025-07-11 11:11:37.619 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [58ms] +2025-07-11 11:11:37.620 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [58ms] +2025-07-11 11:11:43.828 [info] > git show --textconv :docs/hxzx/账号权限管理.md [68ms] +2025-07-11 11:11:43.829 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [67ms] +2025-07-11 11:11:43.829 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:11:43.831 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [66ms] +2025-07-11 11:11:43.834 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [66ms] +2025-07-11 11:11:43.834 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:11:43.885 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [51ms] +2025-07-11 11:11:44.401 [info] > git show --textconv :docs/hxzx/营销管理.md [64ms] +2025-07-11 11:11:44.402 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [62ms] +2025-07-11 11:11:44.402 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:11:44.404 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [62ms] +2025-07-11 11:11:44.409 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [64ms] +2025-07-11 11:11:44.409 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:11:44.461 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [55ms] +2025-07-11 11:11:44.823 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [120ms] +2025-07-11 11:11:44.823 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:11:44.825 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [120ms] +2025-07-11 11:11:44.827 [info] > git show --textconv :docs/hxzx/商品管理.md [128ms] +2025-07-11 11:11:44.848 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [141ms] +2025-07-11 11:11:44.849 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:11:44.892 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [65ms] +2025-07-11 11:11:47.870 [info] > git show --textconv :docs/hxzx/终端管理.md [63ms] +2025-07-11 11:11:47.875 [info] > git show --textconv HEAD:docs/hxzx/终端管理.md [65ms] +2025-07-11 11:11:47.875 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:11:47.877 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [65ms] +2025-07-11 11:11:47.879 [info] > git ls-tree -l HEAD -- docs/hxzx/终端管理.md [64ms] +2025-07-11 11:11:47.879 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:11:47.934 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [56ms] +2025-07-11 11:11:48.558 [info] > git show --textconv :docs/hxzx/自提管理.md [68ms] +2025-07-11 11:11:48.560 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [68ms] +2025-07-11 11:11:48.560 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:11:48.562 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [68ms] +2025-07-11 11:11:48.564 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [67ms] +2025-07-11 11:11:48.564 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:11:48.632 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [69ms] +2025-07-11 11:12:03.368 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [73ms] +2025-07-11 11:12:03.371 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [74ms] +2025-07-11 11:12:03.374 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [74ms] +2025-07-11 11:12:03.377 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [74ms] +2025-07-11 11:12:03.447 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [76ms] +2025-07-11 11:12:03.448 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [75ms] +2025-07-11 11:12:03.453 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [73ms] +2025-07-11 11:12:03.454 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [77ms] +2025-07-11 11:12:03.922 [info] > git check-ignore -v -z --stdin [58ms] +2025-07-11 11:12:08.861 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [144ms] +2025-07-11 11:12:08.875 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [155ms] +2025-07-11 11:12:08.894 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [171ms] +2025-07-11 11:12:08.897 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [172ms] +2025-07-11 11:12:08.959 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [90ms] +2025-07-11 11:12:08.964 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [86ms] +2025-07-11 11:12:08.971 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [74ms] +2025-07-11 11:12:08.975 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [74ms] +2025-07-11 11:12:10.803 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [67ms] +2025-07-11 11:12:10.807 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [67ms] +2025-07-11 11:12:10.809 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [68ms] +2025-07-11 11:12:10.812 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [67ms] +2025-07-11 11:12:10.863 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [58ms] +2025-07-11 11:12:10.867 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [58ms] +2025-07-11 11:12:10.868 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [56ms] +2025-07-11 11:12:10.871 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [57ms] +2025-07-11 11:12:12.774 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [64ms] +2025-07-11 11:12:12.774 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:12.775 [info] > git show --textconv :docs/hxzx/自提管理.md [67ms] +2025-07-11 11:12:12.775 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [63ms] +2025-07-11 11:12:12.778 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [64ms] +2025-07-11 11:12:12.778 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:12.833 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [56ms] +2025-07-11 11:12:14.250 [info] > git show --textconv :docs/hxzx/终端管理.md [63ms] +2025-07-11 11:12:14.256 [info] > git show --textconv HEAD:docs/hxzx/终端管理.md [66ms] +2025-07-11 11:12:14.256 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:14.256 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [65ms] +2025-07-11 11:12:14.259 [info] > git ls-tree -l HEAD -- docs/hxzx/终端管理.md [64ms] +2025-07-11 11:12:14.259 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:14.317 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [58ms] +2025-07-11 11:12:15.628 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [61ms] +2025-07-11 11:12:15.628 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:15.629 [info] > git show --textconv :docs/hxzx/营销管理.md [65ms] +2025-07-11 11:12:15.630 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [61ms] +2025-07-11 11:12:15.634 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [62ms] +2025-07-11 11:12:15.634 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:15.687 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [54ms] +2025-07-11 11:12:17.055 [info] > git show --textconv :docs/hxzx/商品管理.md [65ms] +2025-07-11 11:12:17.059 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [66ms] +2025-07-11 11:12:17.059 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:17.061 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [66ms] +2025-07-11 11:12:17.063 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [65ms] +2025-07-11 11:12:17.063 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:17.121 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [59ms] +2025-07-11 11:12:17.599 [info] > git show --textconv :docs/hxzx/积分管理.md [62ms] +2025-07-11 11:12:17.600 [info] > git show --textconv HEAD:docs/hxzx/积分管理.md [61ms] +2025-07-11 11:12:17.600 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:17.604 [info] > git ls-files --stage -- docs/hxzx/积分管理.md [63ms] +2025-07-11 11:12:17.607 [info] > git ls-tree -l HEAD -- docs/hxzx/积分管理.md [63ms] +2025-07-11 11:12:17.607 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%A7%AF%E5%88%86%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:17.663 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [56ms] +2025-07-11 11:12:18.637 [info] > git show --textconv :docs/hxzx/自提管理.md [63ms] +2025-07-11 11:12:18.638 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [62ms] +2025-07-11 11:12:18.638 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:18.639 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [60ms] +2025-07-11 11:12:18.642 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [62ms] +2025-07-11 11:12:18.643 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:18.696 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [55ms] +2025-07-11 11:12:36.995 [info] > git show --textconv :docs/hxzx/自提管理.md [66ms] +2025-07-11 11:12:36.995 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [65ms] +2025-07-11 11:12:36.995 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:36.997 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [64ms] +2025-07-11 11:12:37.000 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [64ms] +2025-07-11 11:12:37.000 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:12:37.054 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [55ms] +2025-07-11 11:13:20.547 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-11 11:13:21.704 [info] > git ls-files --stage -- docs/erp/1、登录系统.md [70ms] +2025-07-11 11:13:21.706 [info] > git show --textconv :docs/erp/1、登录系统.md [75ms] +2025-07-11 11:13:21.762 [info] > git cat-file -s e959cc93830db486b4a5fab818a6fd23cd6986ca [55ms] +2025-07-11 11:13:23.235 [info] > git check-ignore -v -z --stdin [53ms] +2025-07-11 11:19:54.491 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [637ms] +2025-07-11 11:19:54.493 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [645ms] +2025-07-11 11:19:54.496 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [644ms] +2025-07-11 11:19:54.498 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [635ms] +2025-07-11 11:19:54.558 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [65ms] +2025-07-11 11:19:54.562 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [67ms] +2025-07-11 11:19:54.564 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [65ms] +2025-07-11 11:19:54.567 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [66ms] +2025-07-11 11:20:23.779 [info] > git show --textconv :docs/hxzx/商品管理.md [66ms] +2025-07-11 11:20:23.781 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [66ms] +2025-07-11 11:20:23.781 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:20:23.782 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [65ms] +2025-07-11 11:20:23.785 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [66ms] +2025-07-11 11:20:23.785 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:20:23.845 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [60ms] +2025-07-11 11:21:54.299 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [73ms] +2025-07-11 11:21:54.302 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [73ms] +2025-07-11 11:21:54.304 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [69ms] +2025-07-11 11:21:54.308 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [69ms] +2025-07-11 11:21:54.365 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [64ms] +2025-07-11 11:21:54.368 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [64ms] +2025-07-11 11:21:54.370 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [62ms] +2025-07-11 11:21:54.371 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [60ms] +2025-07-11 11:23:34.576 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [83ms] +2025-07-11 11:23:34.580 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [78ms] +2025-07-11 11:23:34.583 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [73ms] +2025-07-11 11:23:34.585 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [89ms] +2025-07-11 11:23:34.641 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [63ms] +2025-07-11 11:23:34.647 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [64ms] +2025-07-11 11:23:34.649 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [64ms] +2025-07-11 11:23:34.651 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [63ms] +2025-07-11 11:23:48.922 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [73ms] +2025-07-11 11:23:48.926 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [69ms] +2025-07-11 11:23:48.929 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [77ms] +2025-07-11 11:23:48.932 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [72ms] +2025-07-11 11:23:48.989 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [65ms] +2025-07-11 11:23:48.993 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [65ms] +2025-07-11 11:23:48.996 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [64ms] +2025-07-11 11:23:48.997 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [64ms] +2025-07-11 11:24:00.699 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [75ms] +2025-07-11 11:24:00.702 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [75ms] +2025-07-11 11:24:00.705 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [75ms] +2025-07-11 11:24:00.708 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [76ms] +2025-07-11 11:24:00.767 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [65ms] +2025-07-11 11:24:00.767 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [62ms] +2025-07-11 11:24:00.769 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [61ms] +2025-07-11 11:24:00.772 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [61ms] +2025-07-11 11:24:03.453 [info] > git check-ignore -v -z --stdin [54ms] +2025-07-11 11:24:13.137 [info] > git show --textconv HEAD:docs/hxzx/终端管理.md [62ms] +2025-07-11 11:24:13.137 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:24:13.137 [info] > git show --textconv :docs/hxzx/终端管理.md [65ms] +2025-07-11 11:24:13.140 [info] > git ls-files --stage -- docs/hxzx/终端管理.md [62ms] +2025-07-11 11:24:13.144 [info] > git ls-tree -l HEAD -- docs/hxzx/终端管理.md [65ms] +2025-07-11 11:24:13.144 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%BB%88%E7%AB%AF%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:24:13.198 [info] > git cat-file -s e0e6e74daf6b368ee2f5ae2db33298060b7f75cb [57ms] +2025-07-11 11:24:13.871 [info] > git show --textconv HEAD:docs/hxzx/自提管理.md [63ms] +2025-07-11 11:24:13.871 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:24:13.872 [info] > git show --textconv :docs/hxzx/自提管理.md [66ms] +2025-07-11 11:24:13.875 [info] > git ls-files --stage -- docs/hxzx/自提管理.md [64ms] +2025-07-11 11:24:13.878 [info] > git ls-tree -l HEAD -- docs/hxzx/自提管理.md [65ms] +2025-07-11 11:24:13.878 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%87%AA%E6%8F%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:24:13.935 [info] > git cat-file -s bb2ede3700aa6e1b8fdb7c27fb07563fe6f7f6f9 [58ms] +2025-07-11 11:24:14.300 [info] > git show --textconv HEAD:docs/hxzx/账号权限管理.md [61ms] +2025-07-11 11:24:14.300 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:24:14.300 [info] > git show --textconv :docs/hxzx/账号权限管理.md [65ms] +2025-07-11 11:24:14.301 [info] > git ls-files --stage -- docs/hxzx/账号权限管理.md [60ms] +2025-07-11 11:24:14.305 [info] > git ls-tree -l HEAD -- docs/hxzx/账号权限管理.md [60ms] +2025-07-11 11:24:14.305 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%B4%A6%E5%8F%B7%E6%9D%83%E9%99%90%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:24:14.358 [info] > git cat-file -s 712a69ef9315819762cd0f2b7ac97e9a67c0201e [55ms] +2025-07-11 11:24:14.788 [info] > git show --textconv :docs/hxzx/营销管理.md [64ms] +2025-07-11 11:24:14.789 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [62ms] +2025-07-11 11:24:14.789 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:24:14.790 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [61ms] +2025-07-11 11:24:14.792 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [62ms] +2025-07-11 11:24:14.793 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:24:14.849 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [56ms] +2025-07-11 11:24:15.111 [info] > git show --textconv :docs/hxzx/商品管理.md [64ms] +2025-07-11 11:24:15.113 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [63ms] +2025-07-11 11:24:15.113 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:24:15.114 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [62ms] +2025-07-11 11:24:15.116 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [62ms] +2025-07-11 11:24:15.117 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:24:15.172 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [55ms] +2025-07-11 11:24:26.569 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [81ms] +2025-07-11 11:24:26.573 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [90ms] +2025-07-11 11:24:26.576 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [84ms] +2025-07-11 11:24:26.578 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [82ms] +2025-07-11 11:24:26.632 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [60ms] +2025-07-11 11:24:26.633 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [57ms] +2025-07-11 11:24:26.636 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [59ms] +2025-07-11 11:24:26.638 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [59ms] +2025-07-11 11:25:11.555 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [81ms] +2025-07-11 11:25:11.558 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [78ms] +2025-07-11 11:25:11.562 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [73ms] +2025-07-11 11:25:11.565 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [78ms] +2025-07-11 11:25:11.616 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [59ms] +2025-07-11 11:25:11.617 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [57ms] +2025-07-11 11:25:11.624 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [57ms] +2025-07-11 11:25:11.624 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [60ms] +2025-07-11 11:30:23.937 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [84ms] +2025-07-11 11:30:23.942 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [76ms] +2025-07-11 11:30:23.945 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [83ms] +2025-07-11 11:30:23.947 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [75ms] +2025-07-11 11:30:23.995 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [57ms] +2025-07-11 11:30:24.002 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [58ms] +2025-07-11 11:30:24.006 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [56ms] +2025-07-11 11:30:24.006 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [60ms] +2025-07-11 11:31:15.457 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [76ms] +2025-07-11 11:31:15.460 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [70ms] +2025-07-11 11:31:15.462 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [84ms] +2025-07-11 11:31:15.465 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [80ms] +2025-07-11 11:31:15.518 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [59ms] +2025-07-11 11:31:15.520 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [58ms] +2025-07-11 11:31:15.522 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [58ms] +2025-07-11 11:31:15.523 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [56ms] +2025-07-11 11:35:17.385 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [107ms] +2025-07-11 11:35:17.388 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [123ms] +2025-07-11 11:35:17.391 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [121ms] +2025-07-11 11:35:17.394 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [132ms] +2025-07-11 11:35:17.463 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [72ms] +2025-07-11 11:35:17.465 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [71ms] +2025-07-11 11:35:17.466 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [78ms] +2025-07-11 11:35:17.469 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [72ms] +2025-07-11 11:37:05.984 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [76ms] +2025-07-11 11:37:05.987 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [83ms] +2025-07-11 11:37:05.990 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [78ms] +2025-07-11 11:37:05.993 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [92ms] +2025-07-11 11:37:06.051 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [64ms] +2025-07-11 11:37:06.052 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [62ms] +2025-07-11 11:37:06.053 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [60ms] +2025-07-11 11:37:06.054 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [58ms] +2025-07-11 11:37:21.738 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [99ms] +2025-07-11 11:37:21.742 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [98ms] +2025-07-11 11:37:21.745 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [97ms] +2025-07-11 11:37:21.746 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [106ms] +2025-07-11 11:37:21.803 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [61ms] +2025-07-11 11:37:21.804 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [59ms] +2025-07-11 11:37:21.805 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [58ms] +2025-07-11 11:37:21.807 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [59ms] +2025-07-11 11:37:23.278 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [70ms] +2025-07-11 11:37:23.281 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [75ms] +2025-07-11 11:37:23.283 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [72ms] +2025-07-11 11:37:23.286 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [72ms] +2025-07-11 11:37:23.532 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [244ms] +2025-07-11 11:37:23.532 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [249ms] +2025-07-11 11:37:23.533 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [252ms] +2025-07-11 11:37:23.533 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [247ms] +2025-07-11 11:37:26.852 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [67ms] +2025-07-11 11:37:26.855 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [65ms] +2025-07-11 11:37:26.859 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [71ms] +2025-07-11 11:37:26.861 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [68ms] +2025-07-11 11:37:26.916 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [62ms] +2025-07-11 11:37:26.918 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [59ms] +2025-07-11 11:37:26.921 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [61ms] +2025-07-11 11:37:26.922 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [59ms] +2025-07-11 11:39:23.320 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [61ms] +2025-07-11 11:39:23.323 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [61ms] +2025-07-11 11:39:23.331 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [66ms] +2025-07-11 11:39:23.333 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [65ms] +2025-07-11 11:39:23.386 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [60ms] +2025-07-11 11:39:23.386 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [64ms] +2025-07-11 11:39:23.395 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [62ms] +2025-07-11 11:39:23.397 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [61ms] +2025-07-11 11:39:49.336 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [172ms] +2025-07-11 11:39:49.341 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [172ms] +2025-07-11 11:39:49.345 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [185ms] +2025-07-11 11:39:49.349 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [183ms] +2025-07-11 11:39:49.426 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [87ms] +2025-07-11 11:39:49.427 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [83ms] +2025-07-11 11:39:49.441 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [92ms] +2025-07-11 11:39:49.442 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [90ms] +2025-07-11 11:39:57.605 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [68ms] +2025-07-11 11:39:57.610 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [69ms] +2025-07-11 11:39:57.613 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [69ms] +2025-07-11 11:39:57.617 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [68ms] +2025-07-11 11:39:57.677 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [70ms] +2025-07-11 11:39:57.678 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [65ms] +2025-07-11 11:39:57.681 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [64ms] +2025-07-11 11:39:57.683 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [63ms] +2025-07-11 11:41:37.596 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [88ms] +2025-07-11 11:41:37.599 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [93ms] +2025-07-11 11:41:37.602 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [87ms] +2025-07-11 11:41:37.605 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [94ms] +2025-07-11 11:41:37.668 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [69ms] +2025-07-11 11:41:37.673 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [71ms] +2025-07-11 11:41:37.675 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [70ms] +2025-07-11 11:41:37.682 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [75ms] +2025-07-11 11:42:10.736 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [73ms] +2025-07-11 11:42:10.740 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [79ms] +2025-07-11 11:42:10.742 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [74ms] +2025-07-11 11:42:10.744 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [72ms] +2025-07-11 11:42:10.800 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [61ms] +2025-07-11 11:42:10.804 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [62ms] +2025-07-11 11:42:10.808 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [61ms] +2025-07-11 11:42:10.808 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [64ms] +2025-07-11 11:42:15.886 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [73ms] +2025-07-11 11:42:15.890 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [74ms] +2025-07-11 11:42:15.893 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [74ms] +2025-07-11 11:42:15.896 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [74ms] +2025-07-11 11:42:15.953 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [64ms] +2025-07-11 11:42:15.956 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [63ms] +2025-07-11 11:42:15.958 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [62ms] +2025-07-11 11:42:15.961 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [62ms] +2025-07-11 11:42:24.693 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [86ms] +2025-07-11 11:42:24.704 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [87ms] +2025-07-11 11:42:24.707 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [94ms] +2025-07-11 11:42:24.710 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [100ms] +2025-07-11 11:42:24.762 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [67ms] +2025-07-11 11:42:24.774 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [67ms] +2025-07-11 11:42:24.779 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [67ms] +2025-07-11 11:42:24.780 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [70ms] +2025-07-11 11:42:25.628 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [70ms] +2025-07-11 11:42:25.635 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [74ms] +2025-07-11 11:42:25.638 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [74ms] +2025-07-11 11:42:25.640 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [74ms] +2025-07-11 11:42:26.031 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [391ms] +2025-07-11 11:42:26.031 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [388ms] +2025-07-11 11:42:26.031 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [393ms] +2025-07-11 11:42:26.031 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [402ms] +2025-07-11 11:42:34.418 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [78ms] +2025-07-11 11:42:34.422 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [85ms] +2025-07-11 11:42:34.425 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [78ms] +2025-07-11 11:42:34.427 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [84ms] +2025-07-11 11:42:34.498 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [73ms] +2025-07-11 11:42:34.499 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [72ms] +2025-07-11 11:42:34.500 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [79ms] +2025-07-11 11:42:34.500 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [71ms] +2025-07-11 11:42:52.647 [info] > git show --textconv :.git/COMMIT_EDITMSG [57ms] +2025-07-11 11:42:52.647 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.git/COMMIT_EDITMSG.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.git%5C%5CCOMMIT_EDITMSG%22%2C%22ref%22%3A%22%22%7D +2025-07-11 11:42:52.648 [info] > git ls-files --stage -- .git/COMMIT_EDITMSG [54ms] +2025-07-11 11:42:52.648 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.git/COMMIT_EDITMSG.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.git%5C%5CCOMMIT_EDITMSG%22%2C%22ref%22%3A%22%22%7D +2025-07-11 11:42:59.813 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [64ms] +2025-07-11 11:42:59.816 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [68ms] +2025-07-11 11:42:59.819 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [67ms] +2025-07-11 11:42:59.822 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [67ms] +2025-07-11 11:42:59.885 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [66ms] +2025-07-11 11:42:59.885 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [70ms] +2025-07-11 11:42:59.888 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [67ms] +2025-07-11 11:42:59.890 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [66ms] +2025-07-11 11:43:07.286 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [184ms] +2025-07-11 11:43:07.288 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [183ms] +2025-07-11 11:43:07.290 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [194ms] +2025-07-11 11:43:07.292 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [193ms] +2025-07-11 11:43:07.417 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [130ms] +2025-07-11 11:43:07.437 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [148ms] +2025-07-11 11:43:07.438 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [145ms] +2025-07-11 11:43:07.439 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [147ms] +2025-07-11 11:43:10.333 [info] > git show --textconv :.vscode/launch.json [60ms] +2025-07-11 11:43:10.333 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.vscode/launch.json.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.vscode%5C%5Claunch.json%22%2C%22ref%22%3A%22%22%7D +2025-07-11 11:43:10.333 [info] > git ls-files --stage -- .vscode/launch.json [59ms] +2025-07-11 11:43:10.333 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.vscode/launch.json.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.vscode%5C%5Claunch.json%22%2C%22ref%22%3A%22%22%7D +2025-07-11 11:43:57.296 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [66ms] +2025-07-11 11:43:57.300 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [68ms] +2025-07-11 11:43:57.303 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [67ms] +2025-07-11 11:43:57.306 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [66ms] +2025-07-11 11:43:57.357 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [60ms] +2025-07-11 11:43:57.364 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [59ms] +2025-07-11 11:43:57.365 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [62ms] +2025-07-11 11:43:57.367 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [59ms] +2025-07-11 11:44:03.925 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [67ms] +2025-07-11 11:44:03.929 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [68ms] +2025-07-11 11:44:03.932 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [67ms] +2025-07-11 11:44:03.934 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [66ms] +2025-07-11 11:44:04.148 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [211ms] +2025-07-11 11:44:04.148 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [214ms] +2025-07-11 11:44:04.148 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [216ms] +2025-07-11 11:44:04.148 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [221ms] +2025-07-11 11:44:20.338 [info] > git show --textconv :docs/hxzx/商品管理.md [64ms] +2025-07-11 11:44:20.342 [info] > git show --textconv HEAD:docs/hxzx/商品管理.md [66ms] +2025-07-11 11:44:20.342 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:44:20.344 [info] > git ls-files --stage -- docs/hxzx/商品管理.md [66ms] +2025-07-11 11:44:20.346 [info] > git ls-tree -l HEAD -- docs/hxzx/商品管理.md [66ms] +2025-07-11 11:44:20.346 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%95%86%E5%93%81%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 11:44:20.402 [info] > git cat-file -s 379e02f1896fc3ccc3c8c7fb6063607d6d0a983b [56ms] +2025-07-11 11:44:21.022 [info] > git ls-files --stage -- .vscode/launch.json [58ms] +2025-07-11 11:44:21.022 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.vscode/launch.json.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.vscode%5C%5Claunch.json%22%2C%22ref%22%3A%22%22%7D +2025-07-11 11:44:21.023 [info] > git show --textconv :.vscode/launch.json [61ms] +2025-07-11 11:44:21.023 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.vscode/launch.json.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.vscode%5C%5Claunch.json%22%2C%22ref%22%3A%22%22%7D +2025-07-11 11:44:23.059 [info] > git show --textconv :.git/COMMIT_EDITMSG [62ms] +2025-07-11 11:44:23.059 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.git/COMMIT_EDITMSG.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.git%5C%5CCOMMIT_EDITMSG%22%2C%22ref%22%3A%22%22%7D +2025-07-11 11:44:23.060 [info] > git ls-files --stage -- .git/COMMIT_EDITMSG [61ms] +2025-07-11 11:44:23.060 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.git/COMMIT_EDITMSG.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.git%5C%5CCOMMIT_EDITMSG%22%2C%22ref%22%3A%22%22%7D +2025-07-11 11:52:40.352 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [74ms] +2025-07-11 11:52:40.355 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [73ms] +2025-07-11 11:52:40.358 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [73ms] +2025-07-11 11:52:40.361 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [72ms] +2025-07-11 11:52:40.415 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [61ms] +2025-07-11 11:52:40.419 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [61ms] +2025-07-11 11:52:40.424 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [60ms] +2025-07-11 11:52:40.424 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [63ms] +2025-07-11 11:52:55.465 [info] [main] 日志级别: Debug +2025-07-11 11:54:06.286 [info] > git show --textconv :.git/COMMIT_EDITMSG [60ms] +2025-07-11 11:54:06.287 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.git/COMMIT_EDITMSG.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.git%5C%5CCOMMIT_EDITMSG%22%2C%22ref%22%3A%22%22%7D +2025-07-11 11:54:06.287 [info] > git ls-files --stage -- .git/COMMIT_EDITMSG [59ms] +2025-07-11 11:54:06.288 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/.git/COMMIT_EDITMSG.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5C.git%5C%5CCOMMIT_EDITMSG%22%2C%22ref%22%3A%22%22%7D +2025-07-11 11:54:08.216 [info] > git -c user.useConfigOnly=true commit --quiet [5415787ms] +2025-07-11 11:54:08.216 [info] Aborting commit due to empty commit message. +2025-07-11 11:54:08.283 [info] > git config --get commit.template [62ms] +2025-07-11 11:54:08.283 [info] > git symbolic-ref --short HEAD [65ms] +2025-07-11 11:54:08.354 [info] > git for-each-ref --format=%(refname)%00%(upstream:short)%00%(objectname)%00%(upstream:track)%00%(upstream:remotename)%00%(upstream:remoteref) --ignore-case refs/heads/master refs/remotes/master [68ms] +2025-07-11 11:54:08.357 [warning] [Git][revParse] Unable to read file: ENOENT: no such file or directory, open 'c:\Users\zsw\Desktop\zsw-docs\.git\refs\remotes\origin\master' +2025-07-11 11:54:08.427 [info] > git rev-parse refs/remotes/origin/master [71ms] +2025-07-11 11:54:08.491 [info] > git for-each-ref --sort -committerdate --format %(refname)%00%(objectname)%00%(*objectname) [59ms] +2025-07-11 11:54:08.495 [info] > git status -z -uall [65ms] +2025-07-11 11:55:00.377 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [67ms] +2025-07-11 11:55:00.380 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [67ms] +2025-07-11 11:55:00.382 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [65ms] +2025-07-11 11:55:00.385 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [66ms] +2025-07-11 11:55:00.443 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [61ms] +2025-07-11 11:55:00.443 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [63ms] +2025-07-11 11:55:00.444 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [60ms] +2025-07-11 11:55:00.450 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [63ms] +2025-07-11 11:55:31.949 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [75ms] +2025-07-11 11:55:31.952 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [72ms] +2025-07-11 11:55:31.955 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [72ms] +2025-07-11 11:55:31.958 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [69ms] +2025-07-11 11:55:32.013 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [61ms] +2025-07-11 11:55:32.014 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [60ms] +2025-07-11 11:55:32.017 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [60ms] +2025-07-11 11:55:32.018 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [58ms] +2025-07-11 11:56:16.829 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [65ms] +2025-07-11 11:56:16.831 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [65ms] +2025-07-11 11:56:16.834 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [65ms] +2025-07-11 11:56:16.837 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [63ms] +2025-07-11 11:56:16.891 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [60ms] +2025-07-11 11:56:16.892 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [59ms] +2025-07-11 11:56:16.897 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [60ms] +2025-07-11 11:56:16.899 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [59ms] +2025-07-11 12:04:31.348 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [74ms] +2025-07-11 12:04:31.357 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [80ms] +2025-07-11 12:04:31.359 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [75ms] +2025-07-11 12:04:31.361 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [80ms] +2025-07-11 12:04:31.409 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [58ms] +2025-07-11 12:04:31.420 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [59ms] +2025-07-11 12:04:31.420 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [61ms] +2025-07-11 12:04:31.422 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [59ms] +2025-07-11 12:05:02.460 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [68ms] +2025-07-11 12:05:02.462 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [68ms] +2025-07-11 12:05:02.465 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [68ms] +2025-07-11 12:05:02.468 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [67ms] +2025-07-11 12:05:02.522 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [59ms] +2025-07-11 12:05:02.523 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [58ms] +2025-07-11 12:05:02.525 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [57ms] +2025-07-11 12:05:02.527 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [56ms] +2025-07-11 12:06:51.438 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [64ms] +2025-07-11 12:06:51.441 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [65ms] +2025-07-11 12:06:51.444 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [66ms] +2025-07-11 12:06:51.447 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [66ms] +2025-07-11 12:06:51.511 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [70ms] +2025-07-11 12:06:51.513 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [70ms] +2025-07-11 12:06:51.516 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [70ms] +2025-07-11 12:06:51.519 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [70ms] +2025-07-11 12:08:17.111 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [68ms] +2025-07-11 12:08:17.115 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [75ms] +2025-07-11 12:08:17.117 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [71ms] +2025-07-11 12:08:17.119 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [70ms] +2025-07-11 12:08:17.175 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [60ms] +2025-07-11 12:08:17.179 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [62ms] +2025-07-11 12:08:17.180 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [61ms] +2025-07-11 12:08:17.182 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [61ms] +2025-07-11 12:08:34.615 [info] > git show --textconv :docs/hxzx/安全管理.md [66ms] +2025-07-11 12:08:34.616 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [63ms] +2025-07-11 12:08:34.619 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [68ms] +2025-07-11 12:08:34.619 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:08:34.621 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [66ms] +2025-07-11 12:08:34.621 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:08:34.676 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [57ms] +2025-07-11 12:08:44.956 [debug] [CommandCenter][getSCMResource] git.getSCMResource.uri: file:///c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md +2025-07-11 12:08:44.956 [debug] [CommandCenter][getSCMResource] repo root: c:\Users\zsw\Desktop\zsw-docs +2025-07-11 12:08:45.036 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [59ms] +2025-07-11 12:08:45.096 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [57ms] +2025-07-11 12:09:02.612 [info] > git show --textconv :docs/hxzx/订单管理.md [63ms] +2025-07-11 12:09:02.613 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [62ms] +2025-07-11 12:09:02.613 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:09:02.616 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [63ms] +2025-07-11 12:09:02.618 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [63ms] +2025-07-11 12:09:02.619 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:09:02.675 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [57ms] +2025-07-11 12:09:21.239 [info] > git check-ignore -v -z --stdin [57ms] +2025-07-11 12:09:22.073 [info] > git ls-files --stage -- docs/erp/生产管理/生产计划.md [59ms] +2025-07-11 12:09:22.075 [info] > git show --textconv :docs/erp/生产管理/生产计划.md [63ms] +2025-07-11 12:09:22.133 [info] > git cat-file -s 93b8fc73e374942e05cebbc825afa03f539c9baf [58ms] +2025-07-11 12:09:23.011 [info] > git ls-files --stage -- docs/erp/生产管理/生产入库.md [60ms] +2025-07-11 12:09:23.014 [info] > git show --textconv :docs/erp/生产管理/生产入库.md [64ms] +2025-07-11 12:09:23.131 [info] > git cat-file -s b6b0588796cbb4aa12ab34019b19d678dc8afe72 [118ms] +2025-07-11 12:09:23.744 [info] > git ls-files --stage -- docs/erp/生产管理/生产计划.md [59ms] +2025-07-11 12:09:23.747 [info] > git show --textconv :docs/erp/生产管理/生产计划.md [66ms] +2025-07-11 12:09:23.800 [info] > git cat-file -s 93b8fc73e374942e05cebbc825afa03f539c9baf [53ms] +2025-07-11 12:09:24.108 [info] > git ls-files --stage -- docs/erp/生产管理/_category_.json [61ms] +2025-07-11 12:09:24.111 [info] > git show --textconv :docs/erp/生产管理/_category_.json [66ms] +2025-07-11 12:09:24.166 [info] > git cat-file -s 39ccc18e59a5df62dc5b66dfb8331fd6f22901f7 [55ms] +2025-07-11 12:09:24.855 [info] > git check-ignore -v -z --stdin [60ms] +2025-07-11 12:09:28.793 [info] > git ls-files --stage -- docs/erp/2、账期管理.md [59ms] +2025-07-11 12:09:28.796 [info] > git show --textconv :docs/erp/2、账期管理.md [64ms] +2025-07-11 12:09:28.853 [info] > git cat-file -s e8d51ff7312a91ae4c59be9b090aaf9dccd25d20 [57ms] +2025-07-11 12:09:35.614 [info] > git show --textconv :docs/hxzx/订单管理.md [66ms] +2025-07-11 12:09:35.615 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [65ms] +2025-07-11 12:09:35.615 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:09:35.616 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [64ms] +2025-07-11 12:09:35.619 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [65ms] +2025-07-11 12:09:35.619 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:09:35.675 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [56ms] +2025-07-11 12:09:37.195 [info] > git show --textconv :docs/hxzx/登录后台.md [64ms] +2025-07-11 12:09:37.199 [info] > git show --textconv HEAD:docs/hxzx/登录后台.md [66ms] +2025-07-11 12:09:37.199 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:09:37.200 [info] > git ls-files --stage -- docs/hxzx/登录后台.md [64ms] +2025-07-11 12:09:37.202 [info] > git ls-tree -l HEAD -- docs/hxzx/登录后台.md [64ms] +2025-07-11 12:09:37.203 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E7%99%BB%E5%BD%95%E5%90%8E%E5%8F%B0.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:09:37.255 [info] > git cat-file -s f9936bcd164e84632200753cc1eff2cc509e6a3b [53ms] +2025-07-11 12:09:39.160 [info] > git show --textconv :docs/hxzx/营销管理.md [66ms] +2025-07-11 12:09:39.161 [info] > git show --textconv HEAD:docs/hxzx/营销管理.md [64ms] +2025-07-11 12:09:39.161 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:09:39.164 [info] > git ls-files --stage -- docs/hxzx/营销管理.md [64ms] +2025-07-11 12:09:39.166 [info] > git ls-tree -l HEAD -- docs/hxzx/营销管理.md [65ms] +2025-07-11 12:09:39.167 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%90%A5%E9%94%80%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:09:39.225 [info] > git cat-file -s 6afa56fd328f4af8db4cb5805fcf1c179a5402fe [59ms] +2025-07-11 12:09:39.820 [info] > git show --textconv :docs/hxzx/订单管理.md [67ms] +2025-07-11 12:09:39.822 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [68ms] +2025-07-11 12:09:39.823 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:09:39.823 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [67ms] +2025-07-11 12:09:39.826 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [67ms] +2025-07-11 12:09:39.826 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:09:39.894 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [69ms] +2025-07-11 12:09:40.487 [info] > git show --textconv :docs/hxzx/安全管理.md [65ms] +2025-07-11 12:09:40.491 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [63ms] +2025-07-11 12:09:40.494 [info] > git show --textconv HEAD:docs/hxzx/安全管理.md [69ms] +2025-07-11 12:09:40.494 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:09:40.494 [info] > git ls-tree -l HEAD -- docs/hxzx/安全管理.md [65ms] +2025-07-11 12:09:40.494 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%AE%89%E5%85%A8%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:09:40.550 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [56ms] +2025-07-11 12:10:11.813 [info] > git show --textconv HEAD:docs/hxzx/常见问题解答.md [63ms] +2025-07-11 12:10:11.813 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:10:11.814 [info] > git show --textconv :docs/hxzx/常见问题解答.md [66ms] +2025-07-11 12:10:11.817 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [65ms] +2025-07-11 12:10:11.819 [info] > git ls-tree -l HEAD -- docs/hxzx/常见问题解答.md [65ms] +2025-07-11 12:10:11.819 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:10:11.879 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [60ms] +2025-07-11 12:10:13.144 [info] > git ls-files --stage -- docs/erp/生产管理/生产计划.md [56ms] +2025-07-11 12:10:13.147 [info] > git show --textconv :docs/erp/生产管理/生产计划.md [61ms] +2025-07-11 12:10:13.201 [info] > git cat-file -s 93b8fc73e374942e05cebbc825afa03f539c9baf [55ms] +2025-07-11 12:10:15.495 [info] > git show --textconv HEAD:docs/hxzx/常见问题解答.md [63ms] +2025-07-11 12:10:15.496 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:10:15.496 [info] > git show --textconv :docs/hxzx/常见问题解答.md [66ms] +2025-07-11 12:10:15.496 [info] > git ls-files --stage -- docs/hxzx/常见问题解答.md [61ms] +2025-07-11 12:10:15.500 [info] > git ls-tree -l HEAD -- docs/hxzx/常见问题解答.md [63ms] +2025-07-11 12:10:15.500 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98%E8%A7%A3%E7%AD%94.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:10:15.550 [info] > git cat-file -s 461ed0d97933312bd14ab692ec3095a31b94845e [52ms] +2025-07-11 12:10:18.333 [info] > git show --textconv :docs/hxzx/订单管理.md [66ms] +2025-07-11 12:10:18.337 [info] > git show --textconv HEAD:docs/hxzx/订单管理.md [67ms] +2025-07-11 12:10:18.337 [warning] [GitFileSystemProvider][readFile] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:10:18.338 [info] > git ls-files --stage -- docs/hxzx/订单管理.md [67ms] +2025-07-11 12:10:18.341 [info] > git ls-tree -l HEAD -- docs/hxzx/订单管理.md [67ms] +2025-07-11 12:10:18.341 [warning] [GitFileSystemProvider][stat] File not found - git:/c%3A/Users/zsw/Desktop/zsw-docs/docs/hxzx/%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md.git?%7B%22path%22%3A%22c%3A%5C%5CUsers%5C%5Czsw%5C%5CDesktop%5C%5Czsw-docs%5C%5Cdocs%5C%5Chxzx%5C%5C%E8%AE%A2%E5%8D%95%E7%AE%A1%E7%90%86.md%22%2C%22ref%22%3A%22HEAD%22%7D +2025-07-11 12:10:18.400 [info] > git cat-file -s 356d12d90a7d7992ca9fe891026e931ac0fe72be [60ms] +2025-07-11 12:10:18.869 [info] > git ls-files --stage -- docs/hxzx/安全管理.md [67ms] +2025-07-11 12:10:18.930 [info] > git cat-file -s b8429619845453c8fe63ee5770b00b4c93f6b47d [59ms] +2025-07-11 12:11:28.539 [info] > git ls-files --stage -- docs/odoo/bom.md [57ms] +2025-07-11 12:11:28.542 [info] > git show --textconv :docs/odoo/bom.md [62ms] +2025-07-11 12:11:28.598 [info] > git cat-file -s 425085f10c68e31f0924eb923bbc5469517870fa [56ms] diff --git a/odoo/img/bom1.png b/odoo/img/bom1.png new file mode 100644 index 0000000..89eb32e Binary files /dev/null and b/odoo/img/bom1.png differ diff --git a/odoo/img/bom2.png b/odoo/img/bom2.png new file mode 100644 index 0000000..695cdc1 Binary files /dev/null and b/odoo/img/bom2.png differ diff --git a/odoo/img/bom3.png b/odoo/img/bom3.png new file mode 100644 index 0000000..803c69b Binary files /dev/null and b/odoo/img/bom3.png differ diff --git a/odoo/img/bom4.png b/odoo/img/bom4.png new file mode 100644 index 0000000..0b28d79 Binary files /dev/null and b/odoo/img/bom4.png differ diff --git a/odoo/img/bom5.png b/odoo/img/bom5.png new file mode 100644 index 0000000..29f9885 Binary files /dev/null and b/odoo/img/bom5.png differ diff --git a/odoo/img/bom6.png b/odoo/img/bom6.png new file mode 100644 index 0000000..1463ecd Binary files /dev/null and b/odoo/img/bom6.png differ diff --git a/odoo/img/bom7.png b/odoo/img/bom7.png new file mode 100644 index 0000000..b9cc6a5 Binary files /dev/null and b/odoo/img/bom7.png differ diff --git a/odoo/img/custm.png b/odoo/img/custm.png new file mode 100644 index 0000000..277e0f7 Binary files /dev/null and b/odoo/img/custm.png differ diff --git a/odoo/img/custm1.png b/odoo/img/custm1.png new file mode 100644 index 0000000..1898891 Binary files /dev/null and b/odoo/img/custm1.png differ diff --git a/odoo/img/custm2.png b/odoo/img/custm2.png new file mode 100644 index 0000000..808dda7 Binary files /dev/null and b/odoo/img/custm2.png differ diff --git a/odoo/img/custm3.png b/odoo/img/custm3.png new file mode 100644 index 0000000..f178629 Binary files /dev/null and b/odoo/img/custm3.png differ diff --git a/odoo/img/import1.png b/odoo/img/import1.png new file mode 100644 index 0000000..ed83175 Binary files /dev/null and b/odoo/img/import1.png differ diff --git a/odoo/img/import2.png b/odoo/img/import2.png new file mode 100644 index 0000000..46b1e57 Binary files /dev/null and b/odoo/img/import2.png differ diff --git a/odoo/img/import3.png b/odoo/img/import3.png new file mode 100644 index 0000000..7e9e52f Binary files /dev/null and b/odoo/img/import3.png differ diff --git a/odoo/img/import4.png b/odoo/img/import4.png new file mode 100644 index 0000000..c69de78 Binary files /dev/null and b/odoo/img/import4.png differ diff --git a/odoo/img/inv1.png b/odoo/img/inv1.png new file mode 100644 index 0000000..878bdc2 Binary files /dev/null and b/odoo/img/inv1.png differ diff --git a/odoo/img/inv10.png b/odoo/img/inv10.png new file mode 100644 index 0000000..673f901 Binary files /dev/null and b/odoo/img/inv10.png differ diff --git a/odoo/img/inv11.png b/odoo/img/inv11.png new file mode 100644 index 0000000..57fddf6 Binary files /dev/null and b/odoo/img/inv11.png differ diff --git a/odoo/img/inv12.png b/odoo/img/inv12.png new file mode 100644 index 0000000..9c34f56 Binary files /dev/null and b/odoo/img/inv12.png differ diff --git a/odoo/img/inv2.png b/odoo/img/inv2.png new file mode 100644 index 0000000..5345066 Binary files /dev/null and b/odoo/img/inv2.png differ diff --git a/odoo/img/inv3.png b/odoo/img/inv3.png new file mode 100644 index 0000000..17dabdc Binary files /dev/null and b/odoo/img/inv3.png differ diff --git a/odoo/img/inv4.png b/odoo/img/inv4.png new file mode 100644 index 0000000..59e9e87 Binary files /dev/null and b/odoo/img/inv4.png differ diff --git a/odoo/img/inv5.png b/odoo/img/inv5.png new file mode 100644 index 0000000..514b82a Binary files /dev/null and b/odoo/img/inv5.png differ diff --git a/odoo/img/inv6.png b/odoo/img/inv6.png new file mode 100644 index 0000000..89a0256 Binary files /dev/null and b/odoo/img/inv6.png differ diff --git a/odoo/img/inv7.png b/odoo/img/inv7.png new file mode 100644 index 0000000..7f1ed9d Binary files /dev/null and b/odoo/img/inv7.png differ diff --git a/odoo/img/inv8.png b/odoo/img/inv8.png new file mode 100644 index 0000000..8623b45 Binary files /dev/null and b/odoo/img/inv8.png differ diff --git a/odoo/img/inv9.png b/odoo/img/inv9.png new file mode 100644 index 0000000..16dc595 Binary files /dev/null and b/odoo/img/inv9.png differ diff --git a/odoo/img/login.png b/odoo/img/login.png new file mode 100644 index 0000000..75901f4 Binary files /dev/null and b/odoo/img/login.png differ diff --git a/odoo/img/op.png b/odoo/img/op.png new file mode 100644 index 0000000..54b00ab Binary files /dev/null and b/odoo/img/op.png differ diff --git a/odoo/img/op2.png b/odoo/img/op2.png new file mode 100644 index 0000000..ae514e8 Binary files /dev/null and b/odoo/img/op2.png differ diff --git a/odoo/img/partner.png b/odoo/img/partner.png new file mode 100644 index 0000000..4203299 Binary files /dev/null and b/odoo/img/partner.png differ diff --git a/odoo/img/purchase1.png b/odoo/img/purchase1.png new file mode 100644 index 0000000..3e1753c Binary files /dev/null and b/odoo/img/purchase1.png differ diff --git a/odoo/img/purchase2.png b/odoo/img/purchase2.png new file mode 100644 index 0000000..ef1dc27 Binary files /dev/null and b/odoo/img/purchase2.png differ diff --git a/odoo/img/purchase3.png b/odoo/img/purchase3.png new file mode 100644 index 0000000..88294ec Binary files /dev/null and b/odoo/img/purchase3.png differ diff --git a/odoo/img/purchase4.png b/odoo/img/purchase4.png new file mode 100644 index 0000000..ccd8398 Binary files /dev/null and b/odoo/img/purchase4.png differ diff --git a/odoo/img/sale1.png b/odoo/img/sale1.png new file mode 100644 index 0000000..3d752d7 Binary files /dev/null and b/odoo/img/sale1.png differ diff --git a/odoo/img/sale2.png b/odoo/img/sale2.png new file mode 100644 index 0000000..6fc37f4 Binary files /dev/null and b/odoo/img/sale2.png differ diff --git a/odoo/img/sale3.png b/odoo/img/sale3.png new file mode 100644 index 0000000..deeb4a1 Binary files /dev/null and b/odoo/img/sale3.png differ diff --git a/odoo/img/sc1.png b/odoo/img/sc1.png new file mode 100644 index 0000000..22ae7b3 Binary files /dev/null and b/odoo/img/sc1.png differ diff --git a/odoo/img/sc10.png b/odoo/img/sc10.png new file mode 100644 index 0000000..998394d Binary files /dev/null and b/odoo/img/sc10.png differ diff --git a/odoo/img/sc11.png b/odoo/img/sc11.png new file mode 100644 index 0000000..9e7d457 Binary files /dev/null and b/odoo/img/sc11.png differ diff --git a/odoo/img/sc2.png b/odoo/img/sc2.png new file mode 100644 index 0000000..dfaa671 Binary files /dev/null and b/odoo/img/sc2.png differ diff --git a/odoo/img/sc3.png b/odoo/img/sc3.png new file mode 100644 index 0000000..d26a410 Binary files /dev/null and b/odoo/img/sc3.png differ diff --git a/odoo/img/sc4.png b/odoo/img/sc4.png new file mode 100644 index 0000000..3be782c Binary files /dev/null and b/odoo/img/sc4.png differ diff --git a/odoo/img/sc5.png b/odoo/img/sc5.png new file mode 100644 index 0000000..2626247 Binary files /dev/null and b/odoo/img/sc5.png differ diff --git a/odoo/img/sc6.png b/odoo/img/sc6.png new file mode 100644 index 0000000..82b4751 Binary files /dev/null and b/odoo/img/sc6.png differ diff --git a/odoo/img/sc7.png b/odoo/img/sc7.png new file mode 100644 index 0000000..6094513 Binary files /dev/null and b/odoo/img/sc7.png differ diff --git a/odoo/img/sc8.png b/odoo/img/sc8.png new file mode 100644 index 0000000..8bfdffd Binary files /dev/null and b/odoo/img/sc8.png differ diff --git a/odoo/img/sc9.png b/odoo/img/sc9.png new file mode 100644 index 0000000..2542291 Binary files /dev/null and b/odoo/img/sc9.png differ diff --git a/odoo/img/set1.png b/odoo/img/set1.png new file mode 100644 index 0000000..ba0fea0 Binary files /dev/null and b/odoo/img/set1.png differ diff --git a/odoo/img/set2.png b/odoo/img/set2.png new file mode 100644 index 0000000..1dbc768 Binary files /dev/null and b/odoo/img/set2.png differ diff --git a/odoo/img/set3.png b/odoo/img/set3.png new file mode 100644 index 0000000..37853d4 Binary files /dev/null and b/odoo/img/set3.png differ diff --git a/odoo/img/set4.png b/odoo/img/set4.png new file mode 100644 index 0000000..451f2c2 Binary files /dev/null and b/odoo/img/set4.png differ diff --git a/odoo/img/set5.png b/odoo/img/set5.png new file mode 100644 index 0000000..d33f14e Binary files /dev/null and b/odoo/img/set5.png differ diff --git a/odoo/img/store1.png b/odoo/img/store1.png new file mode 100644 index 0000000..59997ce Binary files /dev/null and b/odoo/img/store1.png differ diff --git a/odoo/img/store2.png b/odoo/img/store2.png new file mode 100644 index 0000000..6d6e9fb Binary files /dev/null and b/odoo/img/store2.png differ diff --git a/odoo/img/summary1.png b/odoo/img/summary1.png new file mode 100644 index 0000000..526d508 Binary files /dev/null and b/odoo/img/summary1.png differ diff --git a/odoo/img/summary10.png b/odoo/img/summary10.png new file mode 100644 index 0000000..5d3c12a Binary files /dev/null and b/odoo/img/summary10.png differ diff --git a/odoo/img/summary11.png b/odoo/img/summary11.png new file mode 100644 index 0000000..936b2ca Binary files /dev/null and b/odoo/img/summary11.png differ diff --git a/odoo/img/summary12.png b/odoo/img/summary12.png new file mode 100644 index 0000000..5648399 Binary files /dev/null and b/odoo/img/summary12.png differ diff --git a/odoo/img/summary13.png b/odoo/img/summary13.png new file mode 100644 index 0000000..9baf7f3 Binary files /dev/null and b/odoo/img/summary13.png differ diff --git a/odoo/img/summary14.png b/odoo/img/summary14.png new file mode 100644 index 0000000..28d7b05 Binary files /dev/null and b/odoo/img/summary14.png differ diff --git a/odoo/img/summary15.png b/odoo/img/summary15.png new file mode 100644 index 0000000..53422d7 Binary files /dev/null and b/odoo/img/summary15.png differ diff --git a/odoo/img/summary16.png b/odoo/img/summary16.png new file mode 100644 index 0000000..066fe7b Binary files /dev/null and b/odoo/img/summary16.png differ diff --git a/odoo/img/summary2.png b/odoo/img/summary2.png new file mode 100644 index 0000000..9a964e2 Binary files /dev/null and b/odoo/img/summary2.png differ diff --git a/odoo/img/summary3.png b/odoo/img/summary3.png new file mode 100644 index 0000000..663e036 Binary files /dev/null and b/odoo/img/summary3.png differ diff --git a/odoo/img/summary4.png b/odoo/img/summary4.png new file mode 100644 index 0000000..a352561 Binary files /dev/null and b/odoo/img/summary4.png differ diff --git a/odoo/img/summary5.png b/odoo/img/summary5.png new file mode 100644 index 0000000..1fc32ea Binary files /dev/null and b/odoo/img/summary5.png differ diff --git a/odoo/img/summary6.png b/odoo/img/summary6.png new file mode 100644 index 0000000..227cff1 Binary files /dev/null and b/odoo/img/summary6.png differ diff --git a/odoo/img/summary7.png b/odoo/img/summary7.png new file mode 100644 index 0000000..47b5077 Binary files /dev/null and b/odoo/img/summary7.png differ diff --git a/odoo/img/summary8.png b/odoo/img/summary8.png new file mode 100644 index 0000000..e328fee Binary files /dev/null and b/odoo/img/summary8.png differ diff --git a/odoo/img/summary9.png b/odoo/img/summary9.png new file mode 100644 index 0000000..d37ecf7 Binary files /dev/null and b/odoo/img/summary9.png differ diff --git a/odoo/img/user1.png b/odoo/img/user1.png new file mode 100644 index 0000000..db7e5be Binary files /dev/null and b/odoo/img/user1.png differ diff --git a/odoo/img/user2.png b/odoo/img/user2.png new file mode 100644 index 0000000..21a8b98 Binary files /dev/null and b/odoo/img/user2.png differ diff --git a/odoo/img/user3.png b/odoo/img/user3.png new file mode 100644 index 0000000..508fb16 Binary files /dev/null and b/odoo/img/user3.png differ diff --git a/odoo/img/user4.png b/odoo/img/user4.png new file mode 100644 index 0000000..b3c8999 Binary files /dev/null and b/odoo/img/user4.png differ diff --git a/odoo/img/user5.png b/odoo/img/user5.png new file mode 100644 index 0000000..1db760e Binary files /dev/null and b/odoo/img/user5.png differ diff --git a/odoo/img/wh.png b/odoo/img/wh.png new file mode 100644 index 0000000..ec0a4c4 Binary files /dev/null and b/odoo/img/wh.png differ diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..1ce3be7 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,2515 @@ +{ + "name": "vitepress", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "vitepress", + "version": "1.0.0", + "license": "ISC", + "devDependencies": { + "vitepress": "^1.6.4", + "vue": "^3.5.31" + } + }, + "node_modules/@algolia/abtesting": { + "version": "1.16.0", + "resolved": "https://registry.npmmirror.com/@algolia/abtesting/-/abtesting-1.16.0.tgz", + "integrity": "sha512-alHFZ68/i9qLC/muEB07VQ9r7cB8AvCcGX6dVQi2PNHhc/ZQRmmFAv8KK1ay4UiseGSFr7f0nXBKsZ/jRg7e4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.0", + "@algolia/requester-browser-xhr": "5.50.0", + "@algolia/requester-fetch": "5.50.0", + "@algolia/requester-node-http": "5.50.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/autocomplete-core": { + "version": "1.17.7", + "resolved": "https://registry.npmmirror.com/@algolia/autocomplete-core/-/autocomplete-core-1.17.7.tgz", + "integrity": "sha512-BjiPOW6ks90UKl7TwMv7oNQMnzU+t/wk9mgIDi6b1tXpUek7MW0lbNOUHpvam9pe3lVCf4xPFT+lK7s+e+fs7Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/autocomplete-plugin-algolia-insights": "1.17.7", + "@algolia/autocomplete-shared": "1.17.7" + } + }, + "node_modules/@algolia/autocomplete-plugin-algolia-insights": { + "version": "1.17.7", + "resolved": "https://registry.npmmirror.com/@algolia/autocomplete-plugin-algolia-insights/-/autocomplete-plugin-algolia-insights-1.17.7.tgz", + "integrity": "sha512-Jca5Ude6yUOuyzjnz57og7Et3aXjbwCSDf/8onLHSQgw1qW3ALl9mrMWaXb5FmPVkV3EtkD2F/+NkT6VHyPu9A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/autocomplete-shared": "1.17.7" + }, + "peerDependencies": { + "search-insights": ">= 1 < 3" + } + }, + "node_modules/@algolia/autocomplete-preset-algolia": { + "version": "1.17.7", + "resolved": "https://registry.npmmirror.com/@algolia/autocomplete-preset-algolia/-/autocomplete-preset-algolia-1.17.7.tgz", + "integrity": "sha512-ggOQ950+nwbWROq2MOCIL71RE0DdQZsceqrg32UqnhDz8FlO9rL8ONHNsI2R1MH0tkgVIDKI/D0sMiUchsFdWA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/autocomplete-shared": "1.17.7" + }, + "peerDependencies": { + "@algolia/client-search": ">= 4.9.1 < 6", + "algoliasearch": ">= 4.9.1 < 6" + } + }, + "node_modules/@algolia/autocomplete-shared": { + "version": "1.17.7", + "resolved": "https://registry.npmmirror.com/@algolia/autocomplete-shared/-/autocomplete-shared-1.17.7.tgz", + "integrity": "sha512-o/1Vurr42U/qskRSuhBH+VKxMvkkUVTLU6WZQr+L5lGZZLYWyhdzWjW0iGXY7EkwRTjBqvN2EsR81yCTGV/kmg==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@algolia/client-search": ">= 4.9.1 < 6", + "algoliasearch": ">= 4.9.1 < 6" + } + }, + "node_modules/@algolia/client-abtesting": { + "version": "5.50.0", + "resolved": "https://registry.npmmirror.com/@algolia/client-abtesting/-/client-abtesting-5.50.0.tgz", + "integrity": "sha512-mfgUdLQNxOAvCZUGzPQxjahEWEPuQkKlV0ZtGmePOa9ZxIQZlk31vRBNbM6ScU8jTH41SCYE77G/lCifDr1SVw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.0", + "@algolia/requester-browser-xhr": "5.50.0", + "@algolia/requester-fetch": "5.50.0", + "@algolia/requester-node-http": "5.50.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-analytics": { + "version": "5.50.0", + "resolved": "https://registry.npmmirror.com/@algolia/client-analytics/-/client-analytics-5.50.0.tgz", + "integrity": "sha512-5mjokeKYyPaP3Q8IYJEnutI+O4dW/Ixxx5IgsSxT04pCfGqPXxTOH311hTQxyNpcGGEOGrMv8n8Z+UMTPamioQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.0", + "@algolia/requester-browser-xhr": "5.50.0", + "@algolia/requester-fetch": "5.50.0", + "@algolia/requester-node-http": "5.50.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-common": { + "version": "5.50.0", + "resolved": "https://registry.npmmirror.com/@algolia/client-common/-/client-common-5.50.0.tgz", + "integrity": "sha512-emtOvR6dl3rX3sBJXXbofMNHU1qMQqQSWu319RMrNL5BWoBqyiq7y0Zn6cjJm7aGHV/Qbf+KCCYeWNKEMPI3BQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-insights": { + "version": "5.50.0", + "resolved": "https://registry.npmmirror.com/@algolia/client-insights/-/client-insights-5.50.0.tgz", + "integrity": "sha512-IerGH2/hcj/6bwkpQg/HHRqmlGN1XwygQWythAk0gZFBrghs9danJaYuSS3ShzLSVoIVth4jY5GDPX9Lbw5cgg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.0", + "@algolia/requester-browser-xhr": "5.50.0", + "@algolia/requester-fetch": "5.50.0", + "@algolia/requester-node-http": "5.50.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-personalization": { + "version": "5.50.0", + "resolved": "https://registry.npmmirror.com/@algolia/client-personalization/-/client-personalization-5.50.0.tgz", + "integrity": "sha512-3idPJeXn5L0MmgP9jk9JJqblrQ/SguN93dNK9z9gfgyupBhHnJMOEjrRYcVgTIfvG13Y04wO+Q0FxE2Ut8PVbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.0", + "@algolia/requester-browser-xhr": "5.50.0", + "@algolia/requester-fetch": "5.50.0", + "@algolia/requester-node-http": "5.50.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-query-suggestions": { + "version": "5.50.0", + "resolved": "https://registry.npmmirror.com/@algolia/client-query-suggestions/-/client-query-suggestions-5.50.0.tgz", + "integrity": "sha512-q7qRoWrQK1a8m5EFQEmPlo7+pg9mVQ8X5jsChtChERre0uS2pdYEDixBBl0ydBSGkdGbLUDufcACIhH/077E4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.0", + "@algolia/requester-browser-xhr": "5.50.0", + "@algolia/requester-fetch": "5.50.0", + "@algolia/requester-node-http": "5.50.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/client-search": { + "version": "5.50.0", + "resolved": "https://registry.npmmirror.com/@algolia/client-search/-/client-search-5.50.0.tgz", + "integrity": "sha512-Jc360x4yqb3eEg4OY4KEIdGePBxZogivKI+OGIU8aLXgAYPTECvzeOBc90312yHA1hr3AeRlAFl0rIc8lQaIrQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.0", + "@algolia/requester-browser-xhr": "5.50.0", + "@algolia/requester-fetch": "5.50.0", + "@algolia/requester-node-http": "5.50.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/ingestion": { + "version": "1.50.0", + "resolved": "https://registry.npmmirror.com/@algolia/ingestion/-/ingestion-1.50.0.tgz", + "integrity": "sha512-OS3/Viao+NPpyBbEY3tf6hLewppG+UclD+9i0ju56mq2DrdMJFCkEky6Sk9S5VPcbLzxzg3BqBX6u9Q35w19aQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.0", + "@algolia/requester-browser-xhr": "5.50.0", + "@algolia/requester-fetch": "5.50.0", + "@algolia/requester-node-http": "5.50.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/monitoring": { + "version": "1.50.0", + "resolved": "https://registry.npmmirror.com/@algolia/monitoring/-/monitoring-1.50.0.tgz", + "integrity": "sha512-/znwgSiGufpbJVIoDmeQaHtTq+OMdDawFRbMSJVv+12n79hW+qdQXS8/Uu3BD3yn0BzgVFJEvrsHrCsInZKdhw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.0", + "@algolia/requester-browser-xhr": "5.50.0", + "@algolia/requester-fetch": "5.50.0", + "@algolia/requester-node-http": "5.50.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/recommend": { + "version": "5.50.0", + "resolved": "https://registry.npmmirror.com/@algolia/recommend/-/recommend-5.50.0.tgz", + "integrity": "sha512-dHjUfu4jfjdQiKDpCpAnM7LP5yfG0oNShtfpF5rMCel6/4HIoqJ4DC4h5GKDzgrvJYtgAhblo0AYBmOM00T+lQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.0", + "@algolia/requester-browser-xhr": "5.50.0", + "@algolia/requester-fetch": "5.50.0", + "@algolia/requester-node-http": "5.50.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/requester-browser-xhr": { + "version": "5.50.0", + "resolved": "https://registry.npmmirror.com/@algolia/requester-browser-xhr/-/requester-browser-xhr-5.50.0.tgz", + "integrity": "sha512-bffIbUljAWnh/Ctu5uScORajuUavqmZ0ACYd1fQQeSSYA9NNN83ynO26pSc2dZRXpSK0fkc1//qSSFXMKGu+aw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/requester-fetch": { + "version": "5.50.0", + "resolved": "https://registry.npmmirror.com/@algolia/requester-fetch/-/requester-fetch-5.50.0.tgz", + "integrity": "sha512-y0EwNvPGvkM+yTAqqO6Gpt9wVGm3CLDtpLvNEiB3VGvN3WzfkjZGtLUsG/ru2kVJIIU7QcV0puuYgEpBeFxcJg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@algolia/requester-node-http": { + "version": "5.50.0", + "resolved": "https://registry.npmmirror.com/@algolia/requester-node-http/-/requester-node-http-5.50.0.tgz", + "integrity": "sha512-xpwefe4fCOWnZgXCbkGpqQY6jgBSCf2hmgnySbyzZIccrv3SoashHKGPE4x6vVG+gdHrGciMTAcDo9HOZwH22Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/client-common": "5.50.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmmirror.com/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmmirror.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.29.2", + "resolved": "https://registry.npmmirror.com/@babel/parser/-/parser-7.29.2.tgz", + "integrity": "sha512-4GgRzy/+fsBa72/RZVJmGKPmZu9Byn8o4MoLpmNe1m8ZfYnz5emHLQz3U4gLud6Zwl0RZIcgiLD7Uq7ySFuDLA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.29.0" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/types": { + "version": "7.29.0", + "resolved": "https://registry.npmmirror.com/@babel/types/-/types-7.29.0.tgz", + "integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@docsearch/css": { + "version": "3.8.2", + "resolved": "https://registry.npmmirror.com/@docsearch/css/-/css-3.8.2.tgz", + "integrity": "sha512-y05ayQFyUmCXze79+56v/4HpycYF3uFqB78pLPrSV5ZKAlDuIAAJNhaRi8tTdRNXh05yxX/TyNnzD6LwSM89vQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/@docsearch/js": { + "version": "3.8.2", + "resolved": "https://registry.npmmirror.com/@docsearch/js/-/js-3.8.2.tgz", + "integrity": "sha512-Q5wY66qHn0SwA7Taa0aDbHiJvaFJLOJyHmooQ7y8hlwwQLQ/5WwCcoX0g7ii04Qi2DJlHsd0XXzJ8Ypw9+9YmQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@docsearch/react": "3.8.2", + "preact": "^10.0.0" + } + }, + "node_modules/@docsearch/react": { + "version": "3.8.2", + "resolved": "https://registry.npmmirror.com/@docsearch/react/-/react-3.8.2.tgz", + "integrity": "sha512-xCRrJQlTt8N9GU0DG4ptwHRkfnSnD/YpdeaXe02iKfqs97TkZJv60yE+1eq/tjPcVnTW8dP5qLP7itifFVV5eg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/autocomplete-core": "1.17.7", + "@algolia/autocomplete-preset-algolia": "1.17.7", + "@docsearch/css": "3.8.2", + "algoliasearch": "^5.14.2" + }, + "peerDependencies": { + "@types/react": ">= 16.8.0 < 19.0.0", + "react": ">= 16.8.0 < 19.0.0", + "react-dom": ">= 16.8.0 < 19.0.0", + "search-insights": ">= 1 < 3" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "react": { + "optional": true + }, + "react-dom": { + "optional": true + }, + "search-insights": { + "optional": true + } + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@iconify-json/simple-icons": { + "version": "1.2.76", + "resolved": "https://registry.npmmirror.com/@iconify-json/simple-icons/-/simple-icons-1.2.76.tgz", + "integrity": "sha512-lLRlA8yaf+1L5VCPRvR9lynoSklsddKHEylchmZJKdj/q2xVQ1ZAEJ8SCQlv9cbgtMefnlyM98U+8Si2aoFZPA==", + "dev": true, + "license": "CC0-1.0", + "dependencies": { + "@iconify/types": "*" + } + }, + "node_modules/@iconify/types": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/@iconify/types/-/types-2.0.0.tgz", + "integrity": "sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmmirror.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.60.1.tgz", + "integrity": "sha512-d6FinEBLdIiK+1uACUttJKfgZREXrF0Qc2SmLII7W2AD8FfiZ9Wjd+rD/iRuf5s5dWrr1GgwXCvPqOuDquOowA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.60.1.tgz", + "integrity": "sha512-YjG/EwIDvvYI1YvYbHvDz/BYHtkY4ygUIXHnTdLhG+hKIQFBiosfWiACWortsKPKU/+dUwQQCKQM3qrDe8c9BA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.60.1.tgz", + "integrity": "sha512-mjCpF7GmkRtSJwon+Rq1N8+pI+8l7w5g9Z3vWj4T7abguC4Czwi3Yu/pFaLvA3TTeMVjnu3ctigusqWUfjZzvw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.60.1.tgz", + "integrity": "sha512-haZ7hJ1JT4e9hqkoT9R/19XW2QKqjfJVv+i5AGg57S+nLk9lQnJ1F/eZloRO3o9Scy9CM3wQ9l+dkXtcBgN5Ew==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.60.1.tgz", + "integrity": "sha512-czw90wpQq3ZsAVBlinZjAYTKduOjTywlG7fEeWKUA7oCmpA8xdTkxZZlwNJKWqILlq0wehoZcJYfBvOyhPTQ6w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.60.1.tgz", + "integrity": "sha512-KVB2rqsxTHuBtfOeySEyzEOB7ltlB/ux38iu2rBQzkjbwRVlkhAGIEDiiYnO2kFOkJp+Z7pUXKyrRRFuFUKt+g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.60.1.tgz", + "integrity": "sha512-L+34Qqil+v5uC0zEubW7uByo78WOCIrBvci69E7sFASRl0X7b/MB6Cqd1lky/CtcSVTydWa2WZwFuWexjS5o6g==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.60.1.tgz", + "integrity": "sha512-n83O8rt4v34hgFzlkb1ycniJh7IR5RCIqt6mz1VRJD6pmhRi0CXdmfnLu9dIUS6buzh60IvACM842Ffb3xd6Gg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.60.1.tgz", + "integrity": "sha512-Nql7sTeAzhTAja3QXeAI48+/+GjBJ+QmAH13snn0AJSNL50JsDqotyudHyMbO2RbJkskbMbFJfIJKWA6R1LCJQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.60.1.tgz", + "integrity": "sha512-+pUymDhd0ys9GcKZPPWlFiZ67sTWV5UU6zOJat02M1+PiuSGDziyRuI/pPue3hoUwm2uGfxdL+trT6Z9rxnlMA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.60.1.tgz", + "integrity": "sha512-VSvgvQeIcsEvY4bKDHEDWcpW4Yw7BtlKG1GUT4FzBUlEKQK0rWHYBqQt6Fm2taXS+1bXvJT6kICu5ZwqKCnvlQ==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-musl": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.60.1.tgz", + "integrity": "sha512-4LqhUomJqwe641gsPp6xLfhqWMbQV04KtPp7/dIp0nzPxAkNY1AbwL5W0MQpcalLYk07vaW9Kp1PBhdpZYYcEw==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.60.1.tgz", + "integrity": "sha512-tLQQ9aPvkBxOc/EUT6j3pyeMD6Hb8QF2BTBnCQWP/uu1lhc9AIrIjKnLYMEroIz/JvtGYgI9dF3AxHZNaEH0rw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-musl": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.60.1.tgz", + "integrity": "sha512-RMxFhJwc9fSXP6PqmAz4cbv3kAyvD1etJFjTx4ONqFP9DkTkXsAMU4v3Vyc5BgzC+anz7nS/9tp4obsKfqkDHg==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.60.1.tgz", + "integrity": "sha512-QKgFl+Yc1eEk6MmOBfRHYF6lTxiiiV3/z/BRrbSiW2I7AFTXoBFvdMEyglohPj//2mZS4hDOqeB0H1ACh3sBbg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.60.1.tgz", + "integrity": "sha512-RAjXjP/8c6ZtzatZcA1RaQr6O1TRhzC+adn8YZDnChliZHviqIjmvFwHcxi4JKPSDAt6Uhf/7vqcBzQJy0PDJg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.60.1.tgz", + "integrity": "sha512-wcuocpaOlaL1COBYiA89O6yfjlp3RwKDeTIA0hM7OpmhR1Bjo9j31G1uQVpDlTvwxGn2nQs65fBFL5UFd76FcQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.60.1.tgz", + "integrity": "sha512-77PpsFQUCOiZR9+LQEFg9GClyfkNXj1MP6wRnzYs0EeWbPcHs02AXu4xuUbM1zhwn3wqaizle3AEYg5aeoohhg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.60.1.tgz", + "integrity": "sha512-5cIATbk5vynAjqqmyBjlciMJl1+R/CwX9oLk/EyiFXDWd95KpHdrOJT//rnUl4cUcskrd0jCCw3wpZnhIHdD9w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openbsd-x64": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.60.1.tgz", + "integrity": "sha512-cl0w09WsCi17mcmWqqglez9Gk8isgeWvoUZ3WiJFYSR3zjBQc2J5/ihSjpl+VLjPqjQ/1hJRcqBfLjssREQILw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.60.1.tgz", + "integrity": "sha512-4Cv23ZrONRbNtbZa37mLSueXUCtN7MXccChtKpUnQNgF010rjrjfHx3QxkS2PI7LqGT5xXyYs1a7LbzAwT0iCA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.60.1.tgz", + "integrity": "sha512-i1okWYkA4FJICtr7KpYzFpRTHgy5jdDbZiWfvny21iIKky5YExiDXP+zbXzm3dUcFpkEeYNHgQ5fuG236JPq0g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.60.1.tgz", + "integrity": "sha512-u09m3CuwLzShA0EYKMNiFgcjjzwqtUMLmuCJLeZWjjOYA3IT2Di09KaxGBTP9xVztWyIWjVdsB2E9goMjZvTQg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.60.1.tgz", + "integrity": "sha512-k+600V9Zl1CM7eZxJgMyTUzmrmhB/0XZnF4pRypKAlAgxmedUA+1v9R+XOFv56W4SlHEzfeMtzujLJD22Uz5zg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.60.1.tgz", + "integrity": "sha512-lWMnixq/QzxyhTV6NjQJ4SFo1J6PvOX8vUx5Wb4bBPsEb+8xZ89Bz6kOXpfXj9ak9AHTQVQzlgzBEc1SyM27xQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@shikijs/core": { + "version": "2.5.0", + "resolved": "https://registry.npmmirror.com/@shikijs/core/-/core-2.5.0.tgz", + "integrity": "sha512-uu/8RExTKtavlpH7XqnVYBrfBkUc20ngXiX9NSrBhOVZYv/7XQRKUyhtkeflY5QsxC0GbJThCerruZfsUaSldg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/engine-javascript": "2.5.0", + "@shikijs/engine-oniguruma": "2.5.0", + "@shikijs/types": "2.5.0", + "@shikijs/vscode-textmate": "^10.0.2", + "@types/hast": "^3.0.4", + "hast-util-to-html": "^9.0.4" + } + }, + "node_modules/@shikijs/engine-javascript": { + "version": "2.5.0", + "resolved": "https://registry.npmmirror.com/@shikijs/engine-javascript/-/engine-javascript-2.5.0.tgz", + "integrity": "sha512-VjnOpnQf8WuCEZtNUdjjwGUbtAVKuZkVQ/5cHy/tojVVRIRtlWMYVjyWhxOmIq05AlSOv72z7hRNRGVBgQOl0w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/types": "2.5.0", + "@shikijs/vscode-textmate": "^10.0.2", + "oniguruma-to-es": "^3.1.0" + } + }, + "node_modules/@shikijs/engine-oniguruma": { + "version": "2.5.0", + "resolved": "https://registry.npmmirror.com/@shikijs/engine-oniguruma/-/engine-oniguruma-2.5.0.tgz", + "integrity": "sha512-pGd1wRATzbo/uatrCIILlAdFVKdxImWJGQ5rFiB5VZi2ve5xj3Ax9jny8QvkaV93btQEwR/rSz5ERFpC5mKNIw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/types": "2.5.0", + "@shikijs/vscode-textmate": "^10.0.2" + } + }, + "node_modules/@shikijs/langs": { + "version": "2.5.0", + "resolved": "https://registry.npmmirror.com/@shikijs/langs/-/langs-2.5.0.tgz", + "integrity": "sha512-Qfrrt5OsNH5R+5tJ/3uYBBZv3SuGmnRPejV9IlIbFH3HTGLDlkqgHymAlzklVmKBjAaVmkPkyikAV/sQ1wSL+w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/types": "2.5.0" + } + }, + "node_modules/@shikijs/themes": { + "version": "2.5.0", + "resolved": "https://registry.npmmirror.com/@shikijs/themes/-/themes-2.5.0.tgz", + "integrity": "sha512-wGrk+R8tJnO0VMzmUExHR+QdSaPUl/NKs+a4cQQRWyoc3YFbUzuLEi/KWK1hj+8BfHRKm2jNhhJck1dfstJpiw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/types": "2.5.0" + } + }, + "node_modules/@shikijs/transformers": { + "version": "2.5.0", + "resolved": "https://registry.npmmirror.com/@shikijs/transformers/-/transformers-2.5.0.tgz", + "integrity": "sha512-SI494W5X60CaUwgi8u4q4m4s3YAFSxln3tzNjOSYqq54wlVgz0/NbbXEb3mdLbqMBztcmS7bVTaEd2w0qMmfeg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/core": "2.5.0", + "@shikijs/types": "2.5.0" + } + }, + "node_modules/@shikijs/types": { + "version": "2.5.0", + "resolved": "https://registry.npmmirror.com/@shikijs/types/-/types-2.5.0.tgz", + "integrity": "sha512-ygl5yhxki9ZLNuNpPitBWvcy9fsSKKaRuO4BAlMyagszQidxcpLAr0qiW/q43DtSIDxO6hEbtYLiFZNXO/hdGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/vscode-textmate": "^10.0.2", + "@types/hast": "^3.0.4" + } + }, + "node_modules/@shikijs/vscode-textmate": { + "version": "10.0.2", + "resolved": "https://registry.npmmirror.com/@shikijs/vscode-textmate/-/vscode-textmate-10.0.2.tgz", + "integrity": "sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmmirror.com/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/hast": { + "version": "3.0.4", + "resolved": "https://registry.npmmirror.com/@types/hast/-/hast-3.0.4.tgz", + "integrity": "sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/linkify-it": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/@types/linkify-it/-/linkify-it-5.0.0.tgz", + "integrity": "sha512-sVDA58zAw4eWAffKOaQH5/5j3XeayukzDk+ewSsnv3p4yJEZHCCzMDiZM8e0OUrRvmpGZ85jf4yDHkHsgBNr9Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/markdown-it": { + "version": "14.1.2", + "resolved": "https://registry.npmmirror.com/@types/markdown-it/-/markdown-it-14.1.2.tgz", + "integrity": "sha512-promo4eFwuiW+TfGxhi+0x3czqTYJkG8qB17ZUJiVF10Xm7NLVRSLUsfRTU/6h1e24VvRnXCx+hG7li58lkzog==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/linkify-it": "^5", + "@types/mdurl": "^2" + } + }, + "node_modules/@types/mdast": { + "version": "4.0.4", + "resolved": "https://registry.npmmirror.com/@types/mdast/-/mdast-4.0.4.tgz", + "integrity": "sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "*" + } + }, + "node_modules/@types/mdurl": { + "version": "2.0.0", + "resolved": "https://registry.npmmirror.com/@types/mdurl/-/mdurl-2.0.0.tgz", + "integrity": "sha512-RGdgjQUZba5p6QEFAVx2OGb8rQDL/cPRG7GiedRzMcJ1tYnUANBncjbSB1NRGwbvjcPeikRABz2nshyPk1bhWg==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/unist": { + "version": "3.0.3", + "resolved": "https://registry.npmmirror.com/@types/unist/-/unist-3.0.3.tgz", + "integrity": "sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/web-bluetooth": { + "version": "0.0.21", + "resolved": "https://registry.npmmirror.com/@types/web-bluetooth/-/web-bluetooth-0.0.21.tgz", + "integrity": "sha512-oIQLCGWtcFZy2JW77j9k8nHzAOpqMHLQejDA48XXMWH6tjCQHz5RCFz1bzsmROyL6PUm+LLnUiI4BCn221inxA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@ungap/structured-clone": { + "version": "1.3.0", + "resolved": "https://registry.npmmirror.com/@ungap/structured-clone/-/structured-clone-1.3.0.tgz", + "integrity": "sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==", + "dev": true, + "license": "ISC" + }, + "node_modules/@vitejs/plugin-vue": { + "version": "5.2.4", + "resolved": "https://registry.npmmirror.com/@vitejs/plugin-vue/-/plugin-vue-5.2.4.tgz", + "integrity": "sha512-7Yx/SXSOcQq5HiiV3orevHUFn+pmMB4cgbEkDYgnkUWb0WfeQ/wa2yFv6D5ICiCQOVpjA7vYDXrC7AGO8yjDHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "peerDependencies": { + "vite": "^5.0.0 || ^6.0.0", + "vue": "^3.2.25" + } + }, + "node_modules/@vue/compiler-core": { + "version": "3.5.31", + "resolved": "https://registry.npmmirror.com/@vue/compiler-core/-/compiler-core-3.5.31.tgz", + "integrity": "sha512-k/ueL14aNIEy5Onf0OVzR8kiqF/WThgLdFhxwa4e/KF/0qe38IwIdofoSWBTvvxQOesaz6riAFAUaYjoF9fLLQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.29.2", + "@vue/shared": "3.5.31", + "entities": "^7.0.1", + "estree-walker": "^2.0.2", + "source-map-js": "^1.2.1" + } + }, + "node_modules/@vue/compiler-dom": { + "version": "3.5.31", + "resolved": "https://registry.npmmirror.com/@vue/compiler-dom/-/compiler-dom-3.5.31.tgz", + "integrity": "sha512-BMY/ozS/xxjYqRFL+tKdRpATJYDTTgWSo0+AJvJNg4ig+Hgb0dOsHPXvloHQ5hmlivUqw1Yt2pPIqp4e0v1GUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/compiler-core": "3.5.31", + "@vue/shared": "3.5.31" + } + }, + "node_modules/@vue/compiler-sfc": { + "version": "3.5.31", + "resolved": "https://registry.npmmirror.com/@vue/compiler-sfc/-/compiler-sfc-3.5.31.tgz", + "integrity": "sha512-M8wpPgR9UJ8MiRGjppvx9uWJfLV7A/T+/rL8s/y3QG3u0c2/YZgff3d6SuimKRIhcYnWg5fTfDMlz2E6seUW8Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.29.2", + "@vue/compiler-core": "3.5.31", + "@vue/compiler-dom": "3.5.31", + "@vue/compiler-ssr": "3.5.31", + "@vue/shared": "3.5.31", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.21", + "postcss": "^8.5.8", + "source-map-js": "^1.2.1" + } + }, + "node_modules/@vue/compiler-ssr": { + "version": "3.5.31", + "resolved": "https://registry.npmmirror.com/@vue/compiler-ssr/-/compiler-ssr-3.5.31.tgz", + "integrity": "sha512-h0xIMxrt/LHOvJKMri+vdYT92BrK3HFLtDqq9Pr/lVVfE4IyKZKvWf0vJFW10Yr6nX02OR4MkJwI0c1HDa1hog==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/compiler-dom": "3.5.31", + "@vue/shared": "3.5.31" + } + }, + "node_modules/@vue/devtools-api": { + "version": "7.7.9", + "resolved": "https://registry.npmmirror.com/@vue/devtools-api/-/devtools-api-7.7.9.tgz", + "integrity": "sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/devtools-kit": "^7.7.9" + } + }, + "node_modules/@vue/devtools-kit": { + "version": "7.7.9", + "resolved": "https://registry.npmmirror.com/@vue/devtools-kit/-/devtools-kit-7.7.9.tgz", + "integrity": "sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/devtools-shared": "^7.7.9", + "birpc": "^2.3.0", + "hookable": "^5.5.3", + "mitt": "^3.0.1", + "perfect-debounce": "^1.0.0", + "speakingurl": "^14.0.1", + "superjson": "^2.2.2" + } + }, + "node_modules/@vue/devtools-shared": { + "version": "7.7.9", + "resolved": "https://registry.npmmirror.com/@vue/devtools-shared/-/devtools-shared-7.7.9.tgz", + "integrity": "sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==", + "dev": true, + "license": "MIT", + "dependencies": { + "rfdc": "^1.4.1" + } + }, + "node_modules/@vue/reactivity": { + "version": "3.5.31", + "resolved": "https://registry.npmmirror.com/@vue/reactivity/-/reactivity-3.5.31.tgz", + "integrity": "sha512-DtKXxk9E/KuVvt8VxWu+6Luc9I9ETNcqR1T1oW1gf02nXaZ1kuAx58oVu7uX9XxJR0iJCro6fqBLw9oSBELo5g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/shared": "3.5.31" + } + }, + "node_modules/@vue/runtime-core": { + "version": "3.5.31", + "resolved": "https://registry.npmmirror.com/@vue/runtime-core/-/runtime-core-3.5.31.tgz", + "integrity": "sha512-AZPmIHXEAyhpkmN7aWlqjSfYynmkWlluDNPHMCZKFHH+lLtxP/30UJmoVhXmbDoP1Ng0jG0fyY2zCj1PnSSA6Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/reactivity": "3.5.31", + "@vue/shared": "3.5.31" + } + }, + "node_modules/@vue/runtime-dom": { + "version": "3.5.31", + "resolved": "https://registry.npmmirror.com/@vue/runtime-dom/-/runtime-dom-3.5.31.tgz", + "integrity": "sha512-xQJsNRmGPeDCJq/u813tyonNgWBFjzfVkBwDREdEWndBnGdHLHgkwNBQxLtg4zDrzKTEcnikUy1UUNecb3lJ6g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/reactivity": "3.5.31", + "@vue/runtime-core": "3.5.31", + "@vue/shared": "3.5.31", + "csstype": "^3.2.3" + } + }, + "node_modules/@vue/server-renderer": { + "version": "3.5.31", + "resolved": "https://registry.npmmirror.com/@vue/server-renderer/-/server-renderer-3.5.31.tgz", + "integrity": "sha512-GJuwRvMcdZX/CriUnyIIOGkx3rMV3H6sOu0JhdKbduaeCji6zb60iOGMY7tFoN24NfsUYoFBhshZtGxGpxO4iA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/compiler-ssr": "3.5.31", + "@vue/shared": "3.5.31" + }, + "peerDependencies": { + "vue": "3.5.31" + } + }, + "node_modules/@vue/shared": { + "version": "3.5.31", + "resolved": "https://registry.npmmirror.com/@vue/shared/-/shared-3.5.31.tgz", + "integrity": "sha512-nBxuiuS9Lj5bPkPbWogPUnjxxWpkRniX7e5UBQDWl6Fsf4roq9wwV+cR7ezQ4zXswNvPIlsdj1slcLB7XCsRAw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@vueuse/core": { + "version": "12.8.2", + "resolved": "https://registry.npmmirror.com/@vueuse/core/-/core-12.8.2.tgz", + "integrity": "sha512-HbvCmZdzAu3VGi/pWYm5Ut+Kd9mn1ZHnn4L5G8kOQTPs/IwIAmJoBrmYk2ckLArgMXZj0AW3n5CAejLUO+PhdQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/web-bluetooth": "^0.0.21", + "@vueuse/metadata": "12.8.2", + "@vueuse/shared": "12.8.2", + "vue": "^3.5.13" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/integrations": { + "version": "12.8.2", + "resolved": "https://registry.npmmirror.com/@vueuse/integrations/-/integrations-12.8.2.tgz", + "integrity": "sha512-fbGYivgK5uBTRt7p5F3zy6VrETlV9RtZjBqd1/HxGdjdckBgBM4ugP8LHpjolqTj14TXTxSK1ZfgPbHYyGuH7g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vueuse/core": "12.8.2", + "@vueuse/shared": "12.8.2", + "vue": "^3.5.13" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "async-validator": "^4", + "axios": "^1", + "change-case": "^5", + "drauu": "^0.4", + "focus-trap": "^7", + "fuse.js": "^7", + "idb-keyval": "^6", + "jwt-decode": "^4", + "nprogress": "^0.2", + "qrcode": "^1.5", + "sortablejs": "^1", + "universal-cookie": "^7" + }, + "peerDependenciesMeta": { + "async-validator": { + "optional": true + }, + "axios": { + "optional": true + }, + "change-case": { + "optional": true + }, + "drauu": { + "optional": true + }, + "focus-trap": { + "optional": true + }, + "fuse.js": { + "optional": true + }, + "idb-keyval": { + "optional": true + }, + "jwt-decode": { + "optional": true + }, + "nprogress": { + "optional": true + }, + "qrcode": { + "optional": true + }, + "sortablejs": { + "optional": true + }, + "universal-cookie": { + "optional": true + } + } + }, + "node_modules/@vueuse/metadata": { + "version": "12.8.2", + "resolved": "https://registry.npmmirror.com/@vueuse/metadata/-/metadata-12.8.2.tgz", + "integrity": "sha512-rAyLGEuoBJ/Il5AmFHiziCPdQzRt88VxR+Y/A/QhJ1EWtWqPBBAxTAFaSkviwEuOEZNtW8pvkPgoCZQ+HxqW1A==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/@vueuse/shared": { + "version": "12.8.2", + "resolved": "https://registry.npmmirror.com/@vueuse/shared/-/shared-12.8.2.tgz", + "integrity": "sha512-dznP38YzxZoNloI0qpEfpkms8knDtaoQ6Y/sfS0L7Yki4zh40LFHEhur0odJC6xTHG5dxWVPiUWBXn+wCG2s5w==", + "dev": true, + "license": "MIT", + "dependencies": { + "vue": "^3.5.13" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/algoliasearch": { + "version": "5.50.0", + "resolved": "https://registry.npmmirror.com/algoliasearch/-/algoliasearch-5.50.0.tgz", + "integrity": "sha512-yE5I83Q2s8euVou8Y3feXK08wyZInJWLYXgWO6Xti9jBUEZAGUahyeQ7wSZWkifLWVnQVKEz5RAmBlXG5nqxog==", + "dev": true, + "license": "MIT", + "dependencies": { + "@algolia/abtesting": "1.16.0", + "@algolia/client-abtesting": "5.50.0", + "@algolia/client-analytics": "5.50.0", + "@algolia/client-common": "5.50.0", + "@algolia/client-insights": "5.50.0", + "@algolia/client-personalization": "5.50.0", + "@algolia/client-query-suggestions": "5.50.0", + "@algolia/client-search": "5.50.0", + "@algolia/ingestion": "1.50.0", + "@algolia/monitoring": "1.50.0", + "@algolia/recommend": "5.50.0", + "@algolia/requester-browser-xhr": "5.50.0", + "@algolia/requester-fetch": "5.50.0", + "@algolia/requester-node-http": "5.50.0" + }, + "engines": { + "node": ">= 14.0.0" + } + }, + "node_modules/birpc": { + "version": "2.9.0", + "resolved": "https://registry.npmmirror.com/birpc/-/birpc-2.9.0.tgz", + "integrity": "sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, + "node_modules/ccount": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/ccount/-/ccount-2.0.1.tgz", + "integrity": "sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-html4": { + "version": "2.1.0", + "resolved": "https://registry.npmmirror.com/character-entities-html4/-/character-entities-html4-2.1.0.tgz", + "integrity": "sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/character-entities-legacy": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/character-entities-legacy/-/character-entities-legacy-3.0.0.tgz", + "integrity": "sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/comma-separated-tokens": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz", + "integrity": "sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/copy-anything": { + "version": "4.0.5", + "resolved": "https://registry.npmmirror.com/copy-anything/-/copy-anything-4.0.5.tgz", + "integrity": "sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-what": "^5.2.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmmirror.com/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmmirror.com/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/devlop": { + "version": "1.1.0", + "resolved": "https://registry.npmmirror.com/devlop/-/devlop-1.1.0.tgz", + "integrity": "sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==", + "dev": true, + "license": "MIT", + "dependencies": { + "dequal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/emoji-regex-xs": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/emoji-regex-xs/-/emoji-regex-xs-1.0.0.tgz", + "integrity": "sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==", + "dev": true, + "license": "MIT" + }, + "node_modules/entities": { + "version": "7.0.1", + "resolved": "https://registry.npmmirror.com/entities/-/entities-7.0.1.tgz", + "integrity": "sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmmirror.com/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true, + "license": "MIT" + }, + "node_modules/focus-trap": { + "version": "7.8.0", + "resolved": "https://registry.npmmirror.com/focus-trap/-/focus-trap-7.8.0.tgz", + "integrity": "sha512-/yNdlIkpWbM0ptxno3ONTuf+2g318kh2ez3KSeZN5dZ8YC6AAmgeWz+GasYYiBJPFaYcSAPeu4GfhUaChzIJXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "tabbable": "^6.4.0" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmmirror.com/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/hast-util-to-html": { + "version": "9.0.5", + "resolved": "https://registry.npmmirror.com/hast-util-to-html/-/hast-util-to-html-9.0.5.tgz", + "integrity": "sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/unist": "^3.0.0", + "ccount": "^2.0.0", + "comma-separated-tokens": "^2.0.0", + "hast-util-whitespace": "^3.0.0", + "html-void-elements": "^3.0.0", + "mdast-util-to-hast": "^13.0.0", + "property-information": "^7.0.0", + "space-separated-tokens": "^2.0.0", + "stringify-entities": "^4.0.0", + "zwitch": "^2.0.4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hast-util-whitespace": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/hast-util-whitespace/-/hast-util-whitespace-3.0.0.tgz", + "integrity": "sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/hookable": { + "version": "5.5.3", + "resolved": "https://registry.npmmirror.com/hookable/-/hookable-5.5.3.tgz", + "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/html-void-elements": { + "version": "3.0.0", + "resolved": "https://registry.npmmirror.com/html-void-elements/-/html-void-elements-3.0.0.tgz", + "integrity": "sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-what": { + "version": "5.5.0", + "resolved": "https://registry.npmmirror.com/is-what/-/is-what-5.5.0.tgz", + "integrity": "sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmmirror.com/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/mark.js": { + "version": "8.11.1", + "resolved": "https://registry.npmmirror.com/mark.js/-/mark.js-8.11.1.tgz", + "integrity": "sha512-1I+1qpDt4idfgLQG+BNWmrqku+7/2bi5nLf4YwF8y8zXvmfiTBY3PV3ZibfrjBueCByROpuBjLLFCajqkgYoLQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/mdast-util-to-hast": { + "version": "13.2.1", + "resolved": "https://registry.npmmirror.com/mdast-util-to-hast/-/mdast-util-to-hast-13.2.1.tgz", + "integrity": "sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/hast": "^3.0.0", + "@types/mdast": "^4.0.0", + "@ungap/structured-clone": "^1.0.0", + "devlop": "^1.0.0", + "micromark-util-sanitize-uri": "^2.0.0", + "trim-lines": "^3.0.0", + "unist-util-position": "^5.0.0", + "unist-util-visit": "^5.0.0", + "vfile": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/micromark-util-character": { + "version": "2.1.1", + "resolved": "https://registry.npmmirror.com/micromark-util-character/-/micromark-util-character-2.1.1.tgz", + "integrity": "sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-symbol": "^2.0.0", + "micromark-util-types": "^2.0.0" + } + }, + "node_modules/micromark-util-encode": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/micromark-util-encode/-/micromark-util-encode-2.0.1.tgz", + "integrity": "sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-sanitize-uri": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/micromark-util-sanitize-uri/-/micromark-util-sanitize-uri-2.0.1.tgz", + "integrity": "sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT", + "dependencies": { + "micromark-util-character": "^2.0.0", + "micromark-util-encode": "^2.0.0", + "micromark-util-symbol": "^2.0.0" + } + }, + "node_modules/micromark-util-symbol": { + "version": "2.0.1", + "resolved": "https://registry.npmmirror.com/micromark-util-symbol/-/micromark-util-symbol-2.0.1.tgz", + "integrity": "sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/micromark-util-types": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/micromark-util-types/-/micromark-util-types-2.0.2.tgz", + "integrity": "sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==", + "dev": true, + "funding": [ + { + "type": "GitHub Sponsors", + "url": "https://github.com/sponsors/unifiedjs" + }, + { + "type": "OpenCollective", + "url": "https://opencollective.com/unified" + } + ], + "license": "MIT" + }, + "node_modules/minisearch": { + "version": "7.2.0", + "resolved": "https://registry.npmmirror.com/minisearch/-/minisearch-7.2.0.tgz", + "integrity": "sha512-dqT2XBYUOZOiC5t2HRnwADjhNS2cecp9u+TJRiJ1Qp/f5qjkeT5APcGPjHw+bz89Ms8Jp+cG4AlE+QZ/QnDglg==", + "dev": true, + "license": "MIT" + }, + "node_modules/mitt": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/mitt/-/mitt-3.0.1.tgz", + "integrity": "sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==", + "dev": true, + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmmirror.com/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/oniguruma-to-es": { + "version": "3.1.1", + "resolved": "https://registry.npmmirror.com/oniguruma-to-es/-/oniguruma-to-es-3.1.1.tgz", + "integrity": "sha512-bUH8SDvPkH3ho3dvwJwfonjlQ4R80vjyvrU8YpxuROddv55vAEJrTuCuCVUhhsHbtlD9tGGbaNApGQckXhS8iQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "emoji-regex-xs": "^1.0.0", + "regex": "^6.0.1", + "regex-recursion": "^6.0.2" + } + }, + "node_modules/perfect-debounce": { + "version": "1.0.0", + "resolved": "https://registry.npmmirror.com/perfect-debounce/-/perfect-debounce-1.0.0.tgz", + "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==", + "dev": true, + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmmirror.com/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/postcss": { + "version": "8.5.8", + "resolved": "https://registry.npmmirror.com/postcss/-/postcss-8.5.8.tgz", + "integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/preact": { + "version": "10.29.0", + "resolved": "https://registry.npmmirror.com/preact/-/preact-10.29.0.tgz", + "integrity": "sha512-wSAGyk2bYR1c7t3SZ3jHcM6xy0lcBcDel6lODcs9ME6Th++Dx2KU+6D3HD8wMMKGA8Wpw7OMd3/4RGzYRpzwRg==", + "dev": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/preact" + } + }, + "node_modules/property-information": { + "version": "7.1.0", + "resolved": "https://registry.npmmirror.com/property-information/-/property-information-7.1.0.tgz", + "integrity": "sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/regex": { + "version": "6.1.0", + "resolved": "https://registry.npmmirror.com/regex/-/regex-6.1.0.tgz", + "integrity": "sha512-6VwtthbV4o/7+OaAF9I5L5V3llLEsoPyq9P1JVXkedTP33c7MfCG0/5NOPcSJn0TzXcG9YUrR0gQSWioew3LDg==", + "dev": true, + "license": "MIT", + "dependencies": { + "regex-utilities": "^2.3.0" + } + }, + "node_modules/regex-recursion": { + "version": "6.0.2", + "resolved": "https://registry.npmmirror.com/regex-recursion/-/regex-recursion-6.0.2.tgz", + "integrity": "sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==", + "dev": true, + "license": "MIT", + "dependencies": { + "regex-utilities": "^2.3.0" + } + }, + "node_modules/regex-utilities": { + "version": "2.3.0", + "resolved": "https://registry.npmmirror.com/regex-utilities/-/regex-utilities-2.3.0.tgz", + "integrity": "sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==", + "dev": true, + "license": "MIT" + }, + "node_modules/rfdc": { + "version": "1.4.1", + "resolved": "https://registry.npmmirror.com/rfdc/-/rfdc-1.4.1.tgz", + "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", + "dev": true, + "license": "MIT" + }, + "node_modules/rollup": { + "version": "4.60.1", + "resolved": "https://registry.npmmirror.com/rollup/-/rollup-4.60.1.tgz", + "integrity": "sha512-VmtB2rFU/GroZ4oL8+ZqXgSA38O6GR8KSIvWmEFv63pQ0G6KaBH9s07PO8XTXP4vI+3UJUEypOfjkGfmSBBR0w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.60.1", + "@rollup/rollup-android-arm64": "4.60.1", + "@rollup/rollup-darwin-arm64": "4.60.1", + "@rollup/rollup-darwin-x64": "4.60.1", + "@rollup/rollup-freebsd-arm64": "4.60.1", + "@rollup/rollup-freebsd-x64": "4.60.1", + "@rollup/rollup-linux-arm-gnueabihf": "4.60.1", + "@rollup/rollup-linux-arm-musleabihf": "4.60.1", + "@rollup/rollup-linux-arm64-gnu": "4.60.1", + "@rollup/rollup-linux-arm64-musl": "4.60.1", + "@rollup/rollup-linux-loong64-gnu": "4.60.1", + "@rollup/rollup-linux-loong64-musl": "4.60.1", + "@rollup/rollup-linux-ppc64-gnu": "4.60.1", + "@rollup/rollup-linux-ppc64-musl": "4.60.1", + "@rollup/rollup-linux-riscv64-gnu": "4.60.1", + "@rollup/rollup-linux-riscv64-musl": "4.60.1", + "@rollup/rollup-linux-s390x-gnu": "4.60.1", + "@rollup/rollup-linux-x64-gnu": "4.60.1", + "@rollup/rollup-linux-x64-musl": "4.60.1", + "@rollup/rollup-openbsd-x64": "4.60.1", + "@rollup/rollup-openharmony-arm64": "4.60.1", + "@rollup/rollup-win32-arm64-msvc": "4.60.1", + "@rollup/rollup-win32-ia32-msvc": "4.60.1", + "@rollup/rollup-win32-x64-gnu": "4.60.1", + "@rollup/rollup-win32-x64-msvc": "4.60.1", + "fsevents": "~2.3.2" + } + }, + "node_modules/search-insights": { + "version": "2.17.3", + "resolved": "https://registry.npmmirror.com/search-insights/-/search-insights-2.17.3.tgz", + "integrity": "sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ==", + "dev": true, + "license": "MIT", + "peer": true + }, + "node_modules/shiki": { + "version": "2.5.0", + "resolved": "https://registry.npmmirror.com/shiki/-/shiki-2.5.0.tgz", + "integrity": "sha512-mI//trrsaiCIPsja5CNfsyNOqgAZUb6VpJA+340toL42UpzQlXpwRV9nch69X6gaUxrr9kaOOa6e3y3uAkGFxQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@shikijs/core": "2.5.0", + "@shikijs/engine-javascript": "2.5.0", + "@shikijs/engine-oniguruma": "2.5.0", + "@shikijs/langs": "2.5.0", + "@shikijs/themes": "2.5.0", + "@shikijs/types": "2.5.0", + "@shikijs/vscode-textmate": "^10.0.2", + "@types/hast": "^3.0.4" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmmirror.com/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/space-separated-tokens": { + "version": "2.0.2", + "resolved": "https://registry.npmmirror.com/space-separated-tokens/-/space-separated-tokens-2.0.2.tgz", + "integrity": "sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/speakingurl": { + "version": "14.0.1", + "resolved": "https://registry.npmmirror.com/speakingurl/-/speakingurl-14.0.1.tgz", + "integrity": "sha512-1POYv7uv2gXoyGFpBCmpDVSNV74IfsWlDW216UPjbWufNf+bSU6GdbDsxdcxtfwb4xlI3yxzOTKClUosxARYrQ==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stringify-entities": { + "version": "4.0.4", + "resolved": "https://registry.npmmirror.com/stringify-entities/-/stringify-entities-4.0.4.tgz", + "integrity": "sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==", + "dev": true, + "license": "MIT", + "dependencies": { + "character-entities-html4": "^2.0.0", + "character-entities-legacy": "^3.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/superjson": { + "version": "2.2.6", + "resolved": "https://registry.npmmirror.com/superjson/-/superjson-2.2.6.tgz", + "integrity": "sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==", + "dev": true, + "license": "MIT", + "dependencies": { + "copy-anything": "^4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/tabbable": { + "version": "6.4.0", + "resolved": "https://registry.npmmirror.com/tabbable/-/tabbable-6.4.0.tgz", + "integrity": "sha512-05PUHKSNE8ou2dwIxTngl4EzcnsCDZGJ/iCLtDflR/SHB/ny14rXc+qU5P4mG9JkusiV7EivzY9Mhm55AzAvCg==", + "dev": true, + "license": "MIT" + }, + "node_modules/trim-lines": { + "version": "3.0.1", + "resolved": "https://registry.npmmirror.com/trim-lines/-/trim-lines-3.0.1.tgz", + "integrity": "sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/unist-util-is": { + "version": "6.0.1", + "resolved": "https://registry.npmmirror.com/unist-util-is/-/unist-util-is-6.0.1.tgz", + "integrity": "sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-position": { + "version": "5.0.0", + "resolved": "https://registry.npmmirror.com/unist-util-position/-/unist-util-position-5.0.0.tgz", + "integrity": "sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-stringify-position": { + "version": "4.0.0", + "resolved": "https://registry.npmmirror.com/unist-util-stringify-position/-/unist-util-stringify-position-4.0.0.tgz", + "integrity": "sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit": { + "version": "5.1.0", + "resolved": "https://registry.npmmirror.com/unist-util-visit/-/unist-util-visit-5.1.0.tgz", + "integrity": "sha512-m+vIdyeCOpdr/QeQCu2EzxX/ohgS8KbnPDgFni4dQsfSCtpz8UqDyY5GjRru8PDKuYn7Fq19j1CQ+nJSsGKOzg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0", + "unist-util-visit-parents": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/unist-util-visit-parents": { + "version": "6.0.2", + "resolved": "https://registry.npmmirror.com/unist-util-visit-parents/-/unist-util-visit-parents-6.0.2.tgz", + "integrity": "sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-is": "^6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile": { + "version": "6.0.3", + "resolved": "https://registry.npmmirror.com/vfile/-/vfile-6.0.3.tgz", + "integrity": "sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "vfile-message": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vfile-message": { + "version": "4.0.3", + "resolved": "https://registry.npmmirror.com/vfile-message/-/vfile-message-4.0.3.tgz", + "integrity": "sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/unist": "^3.0.0", + "unist-util-stringify-position": "^4.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" + } + }, + "node_modules/vite": { + "version": "5.4.21", + "resolved": "https://registry.npmmirror.com/vite/-/vite-5.4.21.tgz", + "integrity": "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vitepress": { + "version": "1.6.4", + "resolved": "https://registry.npmmirror.com/vitepress/-/vitepress-1.6.4.tgz", + "integrity": "sha512-+2ym1/+0VVrbhNyRoFFesVvBvHAVMZMK0rw60E3X/5349M1GuVdKeazuksqopEdvkKwKGs21Q729jX81/bkBJg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@docsearch/css": "3.8.2", + "@docsearch/js": "3.8.2", + "@iconify-json/simple-icons": "^1.2.21", + "@shikijs/core": "^2.1.0", + "@shikijs/transformers": "^2.1.0", + "@shikijs/types": "^2.1.0", + "@types/markdown-it": "^14.1.2", + "@vitejs/plugin-vue": "^5.2.1", + "@vue/devtools-api": "^7.7.0", + "@vue/shared": "^3.5.13", + "@vueuse/core": "^12.4.0", + "@vueuse/integrations": "^12.4.0", + "focus-trap": "^7.6.4", + "mark.js": "8.11.1", + "minisearch": "^7.1.1", + "shiki": "^2.1.0", + "vite": "^5.4.14", + "vue": "^3.5.13" + }, + "bin": { + "vitepress": "bin/vitepress.js" + }, + "peerDependencies": { + "markdown-it-mathjax3": "^4", + "postcss": "^8" + }, + "peerDependenciesMeta": { + "markdown-it-mathjax3": { + "optional": true + }, + "postcss": { + "optional": true + } + } + }, + "node_modules/vue": { + "version": "3.5.31", + "resolved": "https://registry.npmmirror.com/vue/-/vue-3.5.31.tgz", + "integrity": "sha512-iV/sU9SzOlmA/0tygSmjkEN6Jbs3nPoIPFhCMLD2STrjgOU8DX7ZtzMhg4ahVwf5Rp9KoFzcXeB1ZrVbLBp5/Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/compiler-dom": "3.5.31", + "@vue/compiler-sfc": "3.5.31", + "@vue/runtime-dom": "3.5.31", + "@vue/server-renderer": "3.5.31", + "@vue/shared": "3.5.31" + }, + "peerDependencies": { + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/zwitch": { + "version": "2.0.4", + "resolved": "https://registry.npmmirror.com/zwitch/-/zwitch-2.0.4.tgz", + "integrity": "sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..876110b --- /dev/null +++ b/package.json @@ -0,0 +1,18 @@ +{ + "name": "vitepress", + "version": "1.0.0", + "description": "", + "main": "index.js", + "scripts": { + "dev": "vitepress dev", + "build": "vitepress build", + "preview": "vitepress preview" + }, + "keywords": [], + "author": "", + "license": "ISC", + "devDependencies": { + "vitepress": "^1.6.4", + "vue": "^3.5.31" + } +} \ No newline at end of file diff --git a/programming/index.md b/programming/index.md new file mode 100644 index 0000000..bd7f238 --- /dev/null +++ b/programming/index.md @@ -0,0 +1,94 @@ +--- +prev: false +next: false +--- + +# 🚀 办公与设计 AI 科学上网通用指南 (2026 版) + +::: tip 编写初衷 +为了方便同事日常查阅海外资料、使用 **ChatGPT-5**、**Claude 5** 以及设计常用的 **Midjourney**、**Adobe Firefly** 等 AI 工具,特编写此指南。本指南旨在协助大家快速配置稳定、高速的网络环境。 +::: + +::: danger 严正警告 +1. **数据隐私**:在使用公开 AI 工具(如 ChatGPT/Claude)处理公司材料时,请务必隐去敏感数据及客户隐私信息。 +2. **账号保护**:订阅链接相当于你的账号密码,**严禁泄露**给外部人员。请勿大规模分享节点信息,防止服务器被封锁影响全公司使用。 +::: + +--- + +## 🔑 核心配置信息 (极速链路) + +如果你的客户端支持订阅,请优先使用 **订阅地址**。 + +- **订阅地址 (推荐):** + `http://34.28.240.95:2096/sub/3f385drovdzavi6q` + +- **备用链接:** + `vless://2c721ae5-82de-415d-beb7-205fcd2015f9@34.28.240.95:41230?encryption=none&fp=chrome&pbk=ldUtZ7comuzzfFrFnTwhk_QMA_EY7WdntsG0DPRTC1w&security=reality&sid=72fdb5&sni=www.google.com&spx=%2Fu2oBbzIvH9YZHJc&type=tcp#HuiXiang-2026-SuperNode` + +--- + +## 📦 工具获取 (离线安装包) + +::: info 解决“打不开网页”难题 +如果你目前无法打开下载页面,请通过以下方式获取离线包: +1. **企业网盘下载**:登录 [公共网盘](http://pan.yixinhuixiang.com/) -> `00.必备工具` -> `2026网络套件`。 +2. ~~**离线拷贝**:前往 **308 办公室** 联系技术人员拷贝安装包或获取 “即插即用型” U 盘。~~ +::: + +--- + +## 🍏 iOS 用户 (iPhone / iPad) + +推荐工具:**Shadowrocket (小火箭)** + +### 1. 下载软件 (美区 App Store) +请使用以下美区账号,**严禁在手机系统的 iCloud 中登录**(仅在 App Store 登录)。 + +- **Apple ID**: `457713643@qq.com` +- **密码**: `Stm2017.` +- **验证码获取**:如登录触发双重验证,请联系 **“灰灰”** 获取。 + +### 2. 配置步骤 +打开小火箭,点击右上角 `+`,类型选 `Subscribe`,粘贴订阅地址,启用顶部开关即可。 + +--- + +## 💻 桌面端:Windows & macOS (设计必备) + +对于需要大屏幕进行 **AI 作图 (Midjourney / Firefly)** 的同事,推荐在电脑端安装以下软件: + +- **Windows**: 使用 **v2rayN**。 +- **macOS**: 使用 **Clash Verge (Rev)**。 + +### 核心配置步骤: +1. **添加订阅**:在软件的 `订阅设置` 或 `配置` 页面粘贴订阅地址。 +2. **同步节点**:点击 `更新订阅` 以载入最新的极速线路。 +3. **分流模式 (重要)**: + - 建议选择 **“绕过大陆”** 模式。 + - 这样在访问百度、微信或公司内网时速度最快,仅在访问 ChatGPT、Google 等国外网站时才自动翻墙。 + +--- + +## 🤖 Android 用户 + +推荐工具:**v2rayNG** +1. 侧边栏 -> 订阅设置 -> `+` 号添加地址。 +2. 主界面右上角 -> 更新订阅。 +3. 选择节点后,点击右下角 **V** 图标启动即可。 + +--- + +## 🎨 AI 设计辅助:解决访问受限 + +如果你在访问 **Midjourney / Discord** 或 **Adobe Firefly** 时遇到卡顿: +1. **清理缓存**:部分 AI 网站会记录登录失败的区域信息,尝试开启浏览器的“无痕模式”访问。 +2. **更换节点**:如果一个节点无法访问,尝试在软件列表中点击“测速”,挑选延迟最低的绿色节点切换。 + +--- + +## ❓ 常见故障自查 + +1. **确定连上了但打不开网页**:80% 的情况是 **“系统时间不准”**。请务必开启电脑/手机设置里的“自动同步网络时间”。 +2. **订阅无法更新**:请先关闭当前已开启的其他代理尝试更新,或切换至手机热点重试。 +3. **网速慢**:2026 年网络波动较为频繁,建议每天上班第一件事就是点击一次“更新订阅”。 diff --git a/zsw/1.引言.md b/zsw/1.引言.md new file mode 100644 index 0000000..74c3bef --- /dev/null +++ b/zsw/1.引言.md @@ -0,0 +1,50 @@ +# POS (ZSW) 系统引言与技术指南 + +::: tip 品牌背景 +**POS (ZSW)** 是本公司自有的门店零售管理系统,全称为“POS 智慧门店管理平台”。本指南旨在协助运营团队掌握后台配置,并为技术团队提供部署参考。 +::: + +## 1. 运营快速开始 +本系统的后台管理主要涵盖商品、门店、营销、会员及财务对账。 +- **管理地址**:[http://pos.lotus-wallet.com/](http://pos.lotus-wallet.com/) +- **核心操作**:请参考后续章节的 `2.登录` 及 `5.商品管理`。 + +--- + +## 2. 技术研发与部署 + +### 2.1 代码维护 +本系统文档及部分前端代码采用 Git 进行版本管理: +```bash +git clone https://git.lotus-wallet.com/Loki/zsw-docs.git +``` + +### 2.2 容器化部署 (Rainbond 平台) +系统支持基于 Docker 的自动化构建与发布。 + +**Dockerfile 示例:** +```dockerfile +FROM nginx +# 将构建产物 dist 目录拷贝至 Nginx 静态资源目录 +COPY ./dist /usr/share/nginx/html +# 引入自定义 Nginx 配置(用于反向代理及上下载限制) +COPY ./default.conf /etc/nginx/conf.d/ +EXPOSE 80/tcp +``` + +**镜像分发流程:** +1. **构建本地镜像**:`docker build . -t registry.cn-beijing.aliyuncs.com/zsw2023/pos-system` +2. **推送至私有仓库 (阿里云)**: + ```bash + docker login registry.cn-beijing.aliyuncs.com + docker push registry.cn-beijing.aliyuncs.com/zsw2023/pos-system + ``` +3. **平台构建**:前往 [Rainbond 控制台](http://rainbond.lotus-wallet.com/) 点击“构建”即可完成线上服务的实时更新。 + +![容器化部署逻辑图](img/rainbond-container.png) + +--- + +## 3. 协作建议 +- **内容维护**:本文档为长期更新项,鼓励所有运营及技术人员共同参与纠错与迭代。 +- **图片规范**:所有文档插图请统一存放在对应目录下的 `img` 文件夹内,并保持命名规则清晰。 \ No newline at end of file diff --git a/zsw/10.门店端/1.登录.md b/zsw/10.门店端/1.登录.md new file mode 100644 index 0000000..9f32563 --- /dev/null +++ b/zsw/10.门店端/1.登录.md @@ -0,0 +1,21 @@ +# 门店收银端登录指南 + +::: info 终端定位 +门店端(Merchant Terminal)主要面向前台收银员与店员。它提供了极简化的操作界面,支持扫码下单、挂单点菜、交接班及实时订单状态管理。 +::: + +## 1. 登录访问 +- **访问地址**:[回乡 POS 门店终端](http://pos.merchant.lotus-wallet.com) +- **验证方式**:输入分配给该门店的店员账号与密码。 + +![门店端登录界面](img/image1.png) + +--- + +## 2. 初始准备:开账操作 +**关键步骤**:首次进入系统或更换交接班时,必须执行“开账”。 +1. 登录成功。 +2. 点击【店员交接】。 +3. 点击【开账】并刷新页面,此时系统正式进入可售状态。 + +![开账操作预览](img/image-1.png) diff --git a/zsw/10.门店端/2.商品上下架.md b/zsw/10.门店端/2.商品上下架.md new file mode 100644 index 0000000..3d80700 --- /dev/null +++ b/zsw/10.门店端/2.商品上下架.md @@ -0,0 +1,22 @@ +# 门店端:商品快速上下架处理 + +::: info 场景应用 +在日常营业中,如遇到某个主打菜品或明星单品售罄,店员可直接在门店端执行“下架”,防止用户在小程序前端误下单。 +::: + +## 1. 商品状态快速调整 +- **操作路径**:`门店端` -> `商品操作`。 +- **作用**:实时隐藏无法下单的商品或恢复已到货的商品。 + +### 1.1 执行下架 (Sold Out) +1. 在“商品分类”中搜索目标商品。 +2. 点击“编辑商品信息”。 +3. **关键开关**:将“是否上架”设为 **否**,同时将“小程序是否显示”设为 **否**。 +4. 保存预览,此时该商品在收银端及小程序将同步消失。 + +![商品状态编辑](img/image7.png) + +--- + +## 2. 批量库存同步 +对于库存精准管理的门店,建议在下架前核实“库存总量”。如果库存已为 0 且设置了“库存锁定”,系统将自动置灰售罄商品。 \ No newline at end of file diff --git a/zsw/10.门店端/3.收银流程.md b/zsw/10.门店端/3.收银流程.md new file mode 100644 index 0000000..2ddfaa0 --- /dev/null +++ b/zsw/10.门店端/3.收银流程.md @@ -0,0 +1,55 @@ +# 标准收银与结算操作流程 + +::: tip 运营流程 +一套标准的终端收银流程包含:**开账 -> 下单(堂食/自取) -> 支付(多轨道支付) -> 履约(状态流转)**。 +::: + +## 1. 业务下单全流程 + +### 1.1 开账与交班 +- **必须先进行“开账”**,否则所有收款单据无法进入当前会计周期流水。 + +### 1.2 点餐下单 +- **点餐方式**:在商品列表中勾选产品。 +- **模式选择**:选择“堂食点餐”(需输入餐号/桌位号)或“自取打包”。 +- **单据出单**:确认后系统自动触发后厨打印机出单。 + +![下单下单预览](img/image-2.png) + +--- + +## 2. 支付轨道与核算 + +### 2.1 常见的支付轨道 +| 支付方式 | 操作要领 | +| :--- | :--- | +| **现金支付** | 输入实收金额,系统自动找零。部分收银机支持自动开箱。 | +| **在线支付** | 选择微信/支付宝后,使用扫码枪扫描客户的付款码(二维码/条码)。 | +| **会员余额** | 输入会员手机号/卡号,验证身份后直接从其余额账户核销。 | +| **三方/记账** | 仅用于记账联通(如:美团、大众点评已支付单据的线下手动平账)。 | + +![支付方式列表](img/image-3.png) + +--- + +## 3. 订单生命周期管理 (状态变更) +订单的履约过程决定了用户的通知体验。 + +- **制作中**:下单后自动进入该状态。 +- **待取中 (或待送)**:点击状态变更,系统将推送微信公众号消息提醒用户取餐。 +- **已完成**:**重要!** 只有标记为“已完成”的订单才会计入后台销售报表。 + +::: warning 结班提醒 +当班结束(交班)前,请务必核查并处理所有订单,将其标记为 **“完成”** 或 **“取消”**。严禁在结班时留存未处理的中间态订单。 +::: + +![状态流转界面](img/image-4.png) + +--- + +## 4. 售后退款处理 (退菜管理) +1. 点击“订单查询”找到对应订单。 +2. 点击“申请退款”。 +3. **退款操作**:勾选具体的退款菜品或整单退款,填写理由,提交至后台(冯美坎/管理员)审核。 + +![售后退款界面](img/image-5.png) \ No newline at end of file diff --git a/zsw/10.门店端/img/image-1.png b/zsw/10.门店端/img/image-1.png new file mode 100644 index 0000000..8298155 Binary files /dev/null and b/zsw/10.门店端/img/image-1.png differ diff --git a/zsw/10.门店端/img/image-2.png b/zsw/10.门店端/img/image-2.png new file mode 100644 index 0000000..94dfde5 Binary files /dev/null and b/zsw/10.门店端/img/image-2.png differ diff --git a/zsw/10.门店端/img/image-3.png b/zsw/10.门店端/img/image-3.png new file mode 100644 index 0000000..1933e8d Binary files /dev/null and b/zsw/10.门店端/img/image-3.png differ diff --git a/zsw/10.门店端/img/image-4.png b/zsw/10.门店端/img/image-4.png new file mode 100644 index 0000000..17c90e2 Binary files /dev/null and b/zsw/10.门店端/img/image-4.png differ diff --git a/zsw/10.门店端/img/image-5.png b/zsw/10.门店端/img/image-5.png new file mode 100644 index 0000000..6cca562 Binary files /dev/null and b/zsw/10.门店端/img/image-5.png differ diff --git a/zsw/10.门店端/img/image.png b/zsw/10.门店端/img/image.png new file mode 100644 index 0000000..8298155 Binary files /dev/null and b/zsw/10.门店端/img/image.png differ diff --git a/zsw/10.门店端/img/image1.png b/zsw/10.门店端/img/image1.png new file mode 100644 index 0000000..544153f Binary files /dev/null and b/zsw/10.门店端/img/image1.png differ diff --git a/zsw/10.门店端/img/image7.png b/zsw/10.门店端/img/image7.png new file mode 100644 index 0000000..658a8a6 Binary files /dev/null and b/zsw/10.门店端/img/image7.png differ diff --git a/zsw/11.打印机设置.md b/zsw/11.打印机设置.md new file mode 100644 index 0000000..d521f5e --- /dev/null +++ b/zsw/11.打印机设置.md @@ -0,0 +1,57 @@ +# 联动打印设置与外卖接单配置 + +::: tip 打印机核心 +高效的收银与出餐离不开打印机的稳定连接。本系统支持飞鹅、商鹏、易联云等主流云打印及本地热敏打印,主要用途涵盖结账小票、后厨配菜单及外卖标签。 +::: + +## 1. 打印机档案管理 (新增打印机) +- **操作路径**:`设置` -> `打印机设置` -> `新增`。 +- **配置要点**: + - **设备编码**:通常位于打印机底面标签。 + - **打印机类型**:正确识别品牌(如飞鹅、商鹏、本地等)。 + +![新增打印机界面](img/printer.png) + +--- + +## 2. 深度业务绑定 (按场景分配) +单纯新增打印机后,必须将其绑定至具体的业务场景才能触发打印动作。 + +### 2.1 结账、订单与厨房单绑定 +- **操作路径**:`系统设置` -> `打印机设置`。 +- **逻辑说明**:可将“结账单”同时绑定至多个打印机(如收银台 + 前台)。 + +![业务场景绑定](img/printer2.png) + +### 2.2 后厨配菜单绑定 (按商品分类) +- **操作路径**:`运营` -> `商品分组`。 +- **逻辑说明**:每个分类(如“热菜类”)可绑定独立的厨房打印机,实现菜品分档口自动出单。 +- **特别提醒**:新录入商品分类时,请务必同步检查打印机设置,防止漏打。 + +![配菜单设置](img/printer1.png) + +### 2.3 区域与桌位绑定 +- **操作路径**:`门店管理` -> `桌位区域`。 +- **应用场景**:堂食商户可将特定包厢区域的打印指令定向分配至该区域的就近服务台,提升响应速度。 + +![桌位区域绑定](img/printer3.png) + +--- + +## 3. 外卖自动接单配置 (外域对接) + +::: danger 最佳实践原则 +**强烈建议**:请尽量通过厂商官方**公众号**进行自动接单配置(不依赖手机 APP 启动,更稳定),而非通过 APP 蓝牙直连打印。 +::: + +### 3.1 配置流程 (以飞鹅/易联云/商鹏为例) +1. **关注平台公众号**: + - 飞鹅:【飞鹅自动接单外卖打印机】 + - 易联云:【易联云外卖打印机】 + - 商鹏云:【商鹏助手】 +2. **添加设备**:扫描打印机背面序列号,关联至您的账户。 +3. **平台授权**:在公众号主页选择“绑定店铺”,输入美团或饿了么的商家账号进行授权。 +4. **单据测试**:设置打印份数并点击“测试打印”,确保证常同步。 + +![飞鹅外卖配置](img/printer/p1.jpg) +![店铺授权测试](img/printer/p2.jpg) \ No newline at end of file diff --git a/zsw/12.报表分析.md b/zsw/12.报表分析.md new file mode 100644 index 0000000..43f0512 --- /dev/null +++ b/zsw/12.报表分析.md @@ -0,0 +1,62 @@ +# 多维报表分析与营运决策 + +::: tip 报表价值 +数据不仅是结果,更是经营的罗盘。本系统提供了从订单流水到单品毛利、从会员充值到门店分账的全方位报表体系。建议各店长每周定期导出“周期报表”进行深度业务复盘。 +::: + +## 1. 核心报表矩阵 + +### 1.1 综合报表:财务对账基准 +- **功能**:详尽展示订单的各种优惠(平台赠送、商户赠送、第三方优惠)、实付金额及退款流水。 +- **对账点**:重点查核“实付金额”与“流水号”,确保每一笔资金流向清晰。 + +![综合报表界面](img/zhbb.png) + +### 1.2 销售报表:品类动销分析 +- **菜品占比图**:直观展示各类产品的营业额比重(如:主食 vs 引流产品)。 +- **时间段分析**:显示全天各营业时段(如早市、午市、晚市)的峰值压力与营收情况。 +- **单品排行榜**:根据销售数量与单价,识别门店的“爆款”与“僵尸款”。 + +![销售占比分析](img/xsbb1.png) +![时间段规律统计](img/xsbb2.png) + +### 1.3 营收明细:毛利与折扣透视 +- **核心指标**:原价、实收、优惠额及其各自的占比。 +- **价值**:帮助识别营销活动(如满减、打折)是否过度侵蚀了商品毛利。 + +![营收统计看板](img/ysbb.png) + +--- + +## 2. 周期性经营分析 + +### 2.1 周期报表 (日/周/月轮转) +- **订单周期**:每日查看桌均消费、实收收入及折扣率变化。 +- **销售周期**:按商品分组筛选,查看每个品类在不同日期的波动。 +- **单品周期**:追踪特定促销单品的每日转化率。 + +![经营周期汇总](img/zqbb1.png) + +--- + +## 3. 资金与营销统计 + +### 3.1 充值报表与周期 +- **监控点**:监控会员储值池的注资速度,区分小程序在线充值与 POS 线下充值。 +- **营销赠送**:核算充值满减活动带来的账面“虚耗”与实际现金入账。 + +![充值明细表](img/czbb.png) + +### 3.2 活动统计表 +- **分析维度**:按促销活动类型(优惠券、活动阶梯减)统计。 +- **效果评估**:通过“执行次数”与“订单原价/实收”对比,评估该活动是否真正带来了营业额增量。 + +![活动效果分析](img/hdtjbb.png) + +--- + +## 4. 结算与分账 (财务专用) +- **店铺流水**:显示所有入账、退款、体现记录,是资金链路的最底层审计依据。 +- **门店分账**:针对联营或托管门店,实时查看分账比例、结算金额及分账状态(待审核/已通过/已完成)。 + +![资金流水追踪](img/dpls.png) diff --git a/zsw/13.公共网盘.md b/zsw/13.公共网盘.md new file mode 100644 index 0000000..04cf3d8 --- /dev/null +++ b/zsw/13.公共网盘.md @@ -0,0 +1,63 @@ +# 企业公共网盘使用指南 + +::: tip 协助与支持 +在使用网盘过程中,如有任何疑问(如账号登录、大文件传输、同步冲突等),请及时在企业微信联系技术团队。 +::: + +## 1. 产品形态概览 + +回乡企业网盘基于群晖(Synology)技术栈,提供两种核心使用形态以满足不同的办公场景: + +- **File Station (网页文件管理器)**:提供极致的在线预览体验。支持文件/文件夹的直接上传下载、视频在线播放及图片预览。 +- **Synology Drive (同步协作组件)**:更接近“本地操作”的体验。支持文件多端同步、增量备份以及快速生成外链共享。 + +--- + +## 2. 访问与使用方式 + +### 2.1 网页端 (Web) 访问 +无需安装插件,通过浏览器即可快速完成文件的查阅与简单传输。 + +#### **File Station: 在线预览与传输** +- **地址**:[http://pan.yixinhuixiang.com/](http://pan.yixinhuixiang.com/) +- **特点**:适合临时查阅、在线预览音视频资料。 + +![File Station 界面预览](img/drive/pan.png) + +#### **Synology Drive: 云端同步协作** +- **地址**:[http://drive.yixinhuixiang.com/](http://drive.yixinhuixiang.com/) +- **特点**:支持直接在网页端生成“共享链接”分享给他人。 + +![Drive 网页版界面](img/drive/drive.png) + +--- + +## 3. 客户端使用 (推荐) + +为了获得类似“本地硬盘”的操作体验,推荐在办公电脑上安装 **Synology Drive Client** 客户端。 + +### 3.1 客户端下载 +- [官方下载页 (Synology 官网)](https://www.synology.cn/zh-cn/dsm/feature/drive) + +**常用系统快速下载链接 (2024.12 更新):** +- ⬇️ [Windows 64位下载](https://cndl.synology.cn/download/Utility/SynologyDriveClient/3.5.1-16102/Windows/Installer/x86_64/Synology%20Drive%20Client-3.5.1-16102-x64.exe?model=RS3614xs%2B&bays=12&dsm_version=7.1.1&build_number=42962) +- ⬇️ [macOS 下载](https://cndl.synology.cn/download/Utility/SynologyDriveClient/3.5.1-16102/Mac/Installer/synology-drive-client-16102.dmg?model=RS3614xs%2B&bays=12&dsm_version=7.1.1&build_number=42962) + +::: warning 温馨提示 +如若上述直接下载链接失效,请根据引导进入官网下载或联系技术支持。 +::: + +### 3.2 客户端配置 +安装完成后,请在服务器地址栏输入: +`drive.yixinhuixiang.com` + +- **操作体验**:客户端支持“按需同步”(不占本地硬盘空间,仅在双击打开时下载)和“实时备份”。其操作逻辑与百度网盘、腾讯微云等产品相似。 + +![客户端同步界面](img/drive/client.png) + +--- + +## 4. 注意事项 +1. **数据安全**:请勿将网盘账号泄露给外部人员。 +2. **共享权限**:在 Drive 生成分享链接时,请务必核实接收人的权限范围(只读/可编辑)。 +3. **版本冲突**:当多人同时编辑同一个 Drive 同步文档时,请注意同步提示以防数据覆盖。 diff --git a/zsw/2.登录.md b/zsw/2.登录.md new file mode 100644 index 0000000..9903237 --- /dev/null +++ b/zsw/2.登录.md @@ -0,0 +1,33 @@ +# 系统登录与界面概览 + +::: tip +商家后台是 POS 业务的核心指挥站。请妥善保管您的员工账号与密码。 +::: + +## 1. 登录访问指南 + +- **访问地址**:[回乡 POS 商家端](https://pos.tenant.lotus-wallet.com) +- **验证方式**:输入您的商家账号及对应密码即可登录。 + +![登录界面](img/login.dat) + +--- + +## 2. 后台功能区域分布 + +登录成功后,您将进入管理主界面。系统分为**上方导航栏**(核心业务切换)与**左边导航栏**(精细化功能配置)。 + +### 2.1 五大核心业务板块 +| 板块名称 | 主要功能描述 | +| :--- | :--- | +| **概况** | 业务仪表盘。实时查看店铺今日营收、订单量、退单统计及资金对比。 | +| **运营** | 核心业务流。包含店铺基本设置、商品新增与编辑、实时订单处理。 | +| **营销** | 用户触达工具。可在此设置营销优惠券、推文活动及会员促销规则。 | +| **报表** | 数据中心。提供多维度的销售统计报表、营收明细分析及员工绩效参考。 | +| **会员** | 私域资产管理。涵盖会员等级设置、名单维护、储值余额及消费积分查询。 | + +--- + +## 3. 操作小贴士 +1. **多终端同步**:后台所有配置操作在保存后将实时同步至门店扫码设备及 PC 端的 POS 终端。 +2. **退出安全**:若在公用设备操作,离开前请务必点击账户头像执行“退出登录”。 diff --git a/zsw/3.商品分类.md b/zsw/3.商品分类.md new file mode 100644 index 0000000..6ad89bd --- /dev/null +++ b/zsw/3.商品分类.md @@ -0,0 +1,32 @@ +# 商品分组与分类策略 + +::: tip 运营提示 +在上传商品前,请务必先建立“商品分组”。上传商品时勾选对应的分组,既能保持后台条理,也有助于在前端(小程序/APP)展现整洁。 +::: + +## 1. 添加商品分类/分组 +- **操作路径**:`运营` -> `商品分组`。 +- **作用**:将商品归类,如“时令蔬菜”、“有机干货”、“酒水饮料”。 + +### 10.1 核心配置要素 +| 字段名称 | 操作指南 | +| :--- | :--- | +| **分类名称** | 建议简短明确,方便在小程序顶部导航栏展示。 | +| **排序权重** | 输入数值调整排列顺序。数值越大,在前端展示越靠前。 | +| **收款参数** | 包含商户名称、商户编号、分账比例等(通常由财务/技术人员预设,一般无需手动修改)。 | + +--- + +## 2. 核心开关:是否参与折扣 + +这是一个极其重要的功能点,直接影响门店利润。 +- **场景应用**: + - **是 (开启)**:该分类下的所有商品将受全店满减、会员折扣等营销活动影响。 + - **否 (关闭)**:例如“酒水类”、“高价值定制类”或其他毛利较低的产品。即便全店打 8 折,该分组下的商品仍将维持原价,受利润保护。 + +--- + +## 3. 前端预览与展示 +成功设置后,对应的排序和名称将实时反映在小程序的分层列表中。 + +![分类配置界面](img/image3.png) diff --git a/zsw/4.门店设置.md b/zsw/4.门店设置.md new file mode 100644 index 0000000..bf55610 --- /dev/null +++ b/zsw/4.门店设置.md @@ -0,0 +1,43 @@ +# 门店设置与支付配置 + +::: danger 警告 +店铺收款方式(微信、支付宝)的配置,非专业技术人员请勿在生产环境下轻易变更。错误的设置会导致门店发生无法收款或资金流错乱的严重事故。 +::: + +## 1. 门店基础信息维护 +- **操作路径**:`运营` -> `门店列表` -> `编辑`。 +- **作用**:维护店铺名称、营业时间、地址坐标、店铺 Logo 及门面大图。 + +### 1.1 收单业务类型 (极其重要) +系统根据收单模式的不同,有不同的订单流转逻辑: + +| 业务类型 | 适用场景 | 结算逻辑 | +| :--- | :--- | :--- | +| **直付** | 简单的扫码付商户。 | 即时支付。 | +| **零售** | 零售超市、便利店。 | 先付款后出货,库存即时核减。 | +| **快消餐饮** | 奶茶、饮品点单,扫码后自取。 | 线上下单并支付,后出餐。 | +| **普通餐饮** | 堂食扫码点餐(桌位码)。 | **先打单后结算**。支持多次点菜,餐后统一支付。 | + +![门店基础配置](img/image.png) + +--- + +## 2. 支付方式管理 +- **操作路径**:`运营` -> `门店` -> `支付方式`。 + +### 2.1 默认支付轨道 +系统预设了以下 6 种标准支付方式: +- **混合支付**:支持微信、支付宝。 +- **余额中心**:门店余额、平台余额。 +- **结算凭证**:现金、绿币支付。 + +### 2.2 自动优惠功能 +在支付方式中开启“自动优惠”后: +- 若收银员输入的“实付金额”小于“应付金额”,系统将差值部分自动作为该种支付方式的优惠入账(需谨慎开启,防止误操作导致的财务对账不平)。 + +--- + +## 3. 页面展示预览 +在管理后台进行配置后,相关信息将实时更新至移动端(小程序/APP)的门店列表展示页。 + +![支付方式配置界面](img/sts3.png) diff --git a/zsw/5.商品管理/1.商品信息.md b/zsw/5.商品管理/1.商品信息.md new file mode 100644 index 0000000..e4aa7f0 --- /dev/null +++ b/zsw/5.商品管理/1.商品信息.md @@ -0,0 +1,29 @@ +# 商品基础信息录入 + +::: info 录入核心 +商品是 POS 系统的基本业务单元。准确填写商品的分组、价格、属性以及限购规则,是库存管理与收银结算的前提。 +::: + +## 1. 商品管理概览 +- **操作路径**:`运营` -> `商品` -> `商品管理`。 +- **作用**:全案管理商品上架、下架、基本属性及积分权益。 + +--- + +## 2. 核心字段配置指引 + +| 字段名称 | 操作规范 | +| :--- | :--- | +| **商品名称** | 建议直读性强(如:有机红富士苹果)。 | +| **商品分组** | **必填项**。关联之前建立好的商品分类(如:时令蔬果)。 | +| **集换卡** | 营销属性。设置后客户在小程序购买本品可自动获取集换卡,用于后期兑换权益。 | +| **显示渠道** | 默认全部显示。若设置为“仅小程序”,收银端 POS 将无法扫描并下单。 | +| **限购次数** | 防薅羊毛设置。设置后仅在小程序/APP 端生效。 | + +![商品录入主界面](img/image.png) + +--- + +## 3. 注意事项 +- **首图规格**:建议使用 1:1 的白底或实拍精致图,提升列表美感。 +- **关联分组**:若商品未关联分组,系统将无法正确将该品推送至前端展示位。 \ No newline at end of file diff --git a/zsw/5.商品管理/2.商品规格.md b/zsw/5.商品管理/2.商品规格.md new file mode 100644 index 0000000..f2ed01c --- /dev/null +++ b/zsw/5.商品管理/2.商品规格.md @@ -0,0 +1,38 @@ +# 款式设置:单品、规格与套餐 + +::: tip 款式差异 +款式设置决定了用户的选择体验。单款式适用于标品(如:矿泉水),多款式适用于非标品(如:奶茶、咖啡),套餐适用于组合销售(如:超值双人餐)。 +::: + +## 1. 款式分类与配置 + +### 1.1 单款式 (标品配置) +- **适用场景**:单一规格、单一单价。 +- **配置要点**:直接录入 SKU 编码、售价及库存即可。 + +![单款式配置](img/spec1.dat) + +### 1.2 多款式 (sku 矩阵配置) +- **适用场景**:奶茶(冰/热、糖度)、服装(S/M/L、红/绿)。 +- **配置要点**: + - 点击“新增规格”,输入规格名(例:温度)。 + - 添加规格值(例:常温、去冰、少冰)。 + - 为每一个生成的 SKU 组合独立设置价格、库存。 + +![多款式配置](img/spec2.dat) + +### 1.3 套餐 (组合销售配置) +- **适用场景**:由多款固定产品或可选产品组合而成的定额商品。 +- **配置策略**: + - **基础信息**:选择“单款式”并录入套餐总价。 + - **套餐详情**:点击“套餐选择”,增加分组(例:主食分组、饮品分组)。 + - **规则设定**:如设置“3 选 1”或“2 选 2”,满足用户的个性化搭配需求。 + +![套餐设置](img/spec3.png) +![套餐预览](img/spec4.png) + +--- + +## 2. 运营小知识 +- **库存控制**:多款式模式下,系统支持针对每个具体 SKU 进行库存预警设置。 +- **条码管理**:每个规格均可分配唯一的条码,方便收银扫描时自动识别对应款式。 diff --git a/zsw/5.商品管理/3.详情编辑.md b/zsw/5.商品管理/3.详情编辑.md new file mode 100644 index 0000000..4dee1f2 --- /dev/null +++ b/zsw/5.商品管理/3.详情编辑.md @@ -0,0 +1,29 @@ +# 商品图文详情编辑 + +::: info 详情作用 +精美的图文详情是提升转化率的关键。通过详情页,用户可以更直观地了解商品的产品特色、配料成分、产地及食用建议。 +::: + +## 1. 详情页配置 +- **操作路径**:`运营` -> `商品` -> `商品详情`。 +- **配置规则**: + - **图文混排**:支持插入文字、粗体设置及上传高清图片。 + - **上传指令**:点击右上角“上传”按钮,选择本地素材库或直接上传新图。 + +![详情编辑主界面](./img/details2.png) + +--- + +## 2. 预览与生效 + +1. **保存配置**:完成图文编辑后,点击“保存”以更新商品主档案。 +2. **实时查看**:新设置的图文详情将即时同步至小程序或 APP 端的商品详情页。 +3. **编辑修改**:如需更新促销信息或更换图片,可随时返回该页面进行二次编辑。 + +![商品显示预览](./img/details1.png) + +--- + +## 3. 注意事项 +- **图片尺寸**:建议详情页图片宽度统一为 **750px**(小程序标准宽度),以保证全屏铺满效果。 +- **文案规范**:注意文字描述的准确性,避免敏感词及违规词使用。 \ No newline at end of file diff --git a/zsw/5.商品管理/img/details1.png b/zsw/5.商品管理/img/details1.png new file mode 100644 index 0000000..10633d8 Binary files /dev/null and b/zsw/5.商品管理/img/details1.png differ diff --git a/zsw/5.商品管理/img/details2.png b/zsw/5.商品管理/img/details2.png new file mode 100644 index 0000000..d83cd23 Binary files /dev/null and b/zsw/5.商品管理/img/details2.png differ diff --git a/zsw/5.商品管理/img/good.dat b/zsw/5.商品管理/img/good.dat new file mode 100644 index 0000000..953bb92 Binary files /dev/null and b/zsw/5.商品管理/img/good.dat differ diff --git a/zsw/5.商品管理/img/image.png b/zsw/5.商品管理/img/image.png new file mode 100644 index 0000000..577237c Binary files /dev/null and b/zsw/5.商品管理/img/image.png differ diff --git a/zsw/5.商品管理/img/spec1.dat b/zsw/5.商品管理/img/spec1.dat new file mode 100644 index 0000000..a60de01 Binary files /dev/null and b/zsw/5.商品管理/img/spec1.dat differ diff --git a/zsw/5.商品管理/img/spec2.dat b/zsw/5.商品管理/img/spec2.dat new file mode 100644 index 0000000..28182be Binary files /dev/null and b/zsw/5.商品管理/img/spec2.dat differ diff --git a/zsw/5.商品管理/img/spec3.png b/zsw/5.商品管理/img/spec3.png new file mode 100644 index 0000000..5a0914c Binary files /dev/null and b/zsw/5.商品管理/img/spec3.png differ diff --git a/zsw/5.商品管理/img/spec4.png b/zsw/5.商品管理/img/spec4.png new file mode 100644 index 0000000..0ea85b2 Binary files /dev/null and b/zsw/5.商品管理/img/spec4.png differ diff --git a/zsw/6.轮播图设置.md b/zsw/6.轮播图设置.md new file mode 100644 index 0000000..e576a63 --- /dev/null +++ b/zsw/6.轮播图设置.md @@ -0,0 +1,28 @@ +# 小程序与门店轮播图配置 + +::: tip 运营建议 +轮播图是提升门店首屏点击率的核心。建议图片比例统一为 **2:1**,且单张图片大小建议控制在 **500KB** 以内,以保证加载速度。 +::: + +## 1. 业务端点分类 +系统将轮播图分为“全局首页”与“单店首页”两种层级,适应不同粒度的营销。 + +### 1.1 小程序全局首页配置 +- **操作路径**:`运营` -> `小程序配置` -> `首页配置`。 +- **作用**:控制小程序首页最顶层的全局广告位。 + +![全局轮播配置](img/banner1.png) + +### 1.2 店铺详情页轮播配置 +- **操作路径**:`运营` -> `门店管理` -> `轮播`。 +- **配置规则**: + - **轮播类型**:设置为“首页轮播”。 + - **单店差异化**:每个门店可拥有独立的促销海报(如:门店新店开业、单店满减)。 + +![单店轮播预览](img/banner2.png) + +--- + +## 2. 设置技巧 +- **多图轮播**:支持添加多张图片。根据排序顺序自动轮播。 +- **跳转链接**:大部分轮播位支持点击跳转至特定商品、优惠券页或自定义文案页面,极大提升转化效率。 \ No newline at end of file diff --git a/zsw/7.查看订单.md b/zsw/7.查看订单.md new file mode 100644 index 0000000..20e2e55 --- /dev/null +++ b/zsw/7.查看订单.md @@ -0,0 +1,31 @@ +# 订单管理与售后处理指南 + +::: tip 运营中心 +实时响应客户订单与售后申请是维系用户信任的核心。建议将“订单列表”页面保持在常开状态,以便随时快速筛选交易情况。 +::: + +## 1. 业务订单实时查询 +- **操作路径**:`运营` -> `订单` -> `订单列表`。 +- **功能点**: + - **检索过滤**:支持按客户名称、订单号、购买时间段及付款金额进行全维度筛选。 + - **明细查看**:可查看客户购买的具体单品、实付金额及下单终端信息。 + +--- + +## 2. 售后记录与退款处理 +- **操作路径**:`运营` -> `订单` -> `售后订单`。 + +### 2.1 退款流程闭环 +1. **订单筛选**:查看所有标记为“售后中”或“申请退款”的交易。 +2. **原因审核**:核实客户申请退款的理由是否符合门店规则。 +3. **退款操作**: + - 如果是微信/支付宝支付,点击“同意退款”后,资金将原路返回给用户。 + - 商家亦可在特殊情况下(如缺货)主动发起反向退款流程。 + +![售后管理界面](img/order5.png) + +--- + +## 3. 注意事项 +- **周期限制**:通常系统支持在订单支付后的 72 小时内发起线上原路退款;超过时长的售后建议线下沟通并手动处理。 +- **退款权限**:退款涉及资金流变动,请确保操作人员具备对应的权限(财务或主店长角色)。 diff --git a/zsw/8.营销优惠设置/1.优惠营销介绍.md b/zsw/8.营销优惠设置/1.优惠营销介绍.md new file mode 100644 index 0000000..253a9f9 --- /dev/null +++ b/zsw/8.营销优惠设置/1.优惠营销介绍.md @@ -0,0 +1,29 @@ +# 营销活动与体系概览 + +::: tip 活动导向 +营销活动是门店引流的关键。系统支持“门店活动”(侧重线上/线下全渠道)与“促销活动”(侧重收银端即时调整)两大核心体系。 +::: + +## 1. 营销活动分类 + +### 1.1 门店活动 (全渠道营销) +- **操作路径**:`营销` -> `门店活动`。 +- **活动类型**: + - **满减**:例“满 100 减 10”。 + - **折扣**:全分类或全场打折。 + - **兑换/换购**:凭券或积分进行实物兑换。 +- **展示渠道**:可自由勾选在小程序前端展示或仅限收银端店员操作。 + +![门店活动列表](img/image9.png) + +### 1.2 促销活动 (收银端专用) +- **主要类型**:整单折扣、分类折扣(如:酒水类 9 折)。 +- **应用场景**:收银员在结账时根据现场情况(如:熟客优惠、临期特价)手动勾选。 + +--- + +## 2. 运营避坑指南 +- **叠加规则**:请务必核实“分类折扣”与“全局满减”是否可叠加。若不可叠加,建议在商品分类中关闭“参与折扣”开关。 +- **有效期管理**:活动设置成功后,请检查开始与结束时间,防止出现活动未生效或过期未下线的情况。 + +![促销分类配置](img/image10.png) diff --git a/zsw/8.营销优惠设置/2.优惠券.md b/zsw/8.营销优惠设置/2.优惠券.md new file mode 100644 index 0000000..9592048 --- /dev/null +++ b/zsw/8.营销优惠设置/2.优惠券.md @@ -0,0 +1,45 @@ +# 优惠券全流程管理指南 + +::: tip 优惠券核心 +系统支持 4 种标准的优惠券:满减券、兑换券、折扣券及限定券。灵活运用这四类工具,可以有效锁定新客并提升老客的回头率。 +::: + +## 1. 优惠券分类与应用 +- **操作路径**:`营销` -> `优惠券管理`。 + +| 优惠券类型 | 适用场景 | 例子 | +| :--- | :--- | :--- | +| **满减券** | 提升客单价的关键。 | 满 40 减 5 元。 | +| **兑换券** | 实物引流神器。 | 凭券兑换中杯美式咖啡。 | +| **折扣券** | 节日大促、指定件数优惠。 | 买 3 件即打 7 折。 | +| **限定券** | 指定日期/指定商品的闪促。 | 首杯奶茶 10 元限时购。 | + +![优惠券列表界面](img/image5.png) + +--- + +## 2. 数量与发放周期 (重点关注) +编辑优惠券时,请严格设置三个维度的“周期性”限量配置: + +1. **商户总量**:该批次券在全店范围内发出的总量(例:总发行 1000 张)。 +2. **个人领取限量**:单个用户在规定周期(日/周/月)内可领取的张数。 +3. **个人使用限量**:单个用户在规定周期内允许使用的最大张数。 + +![周期配置指引](img/coupon_edit_time.png) + +--- + +## 3. 优惠券捆绑方案 +- **操作路径**:`营销` -> `门店活动` -> `优惠券捆绑`。 +- **应用场景**: + - **新客礼包**:新会员注册小程序时,自动赠送绑定的券包。 + - **任务奖励**:完成特定行为(如分享商品)后自动发券。 + +![优惠券捆绑预览](img/image7.png) + +--- + +## 4. 后台主动发放 +除了用户领券,商家亦可基于“会员分析”主动将优惠券推送到某个特定会员或全店会员的账户中,激活沉睡用户。 + +![主动分发界面](img/image6.png) diff --git a/zsw/8.营销优惠设置/3.开心豆及其他.md b/zsw/8.营销优惠设置/3.开心豆及其他.md new file mode 100644 index 0000000..7e566de --- /dev/null +++ b/zsw/8.营销优惠设置/3.开心豆及其他.md @@ -0,0 +1,45 @@ +# 集换卡:消费印章与权益兑换 + +::: tip 集换卡核心 +集换卡(Stamps)是回乡体系中独特的“游戏化营销”工具。目前主要在 **海峡姐妹 APP** 上生效。用户通过购买特定商品或达成金额条件获得“印章(集换点)”,集满后即可兑换超值实物。 +::: + +## 1. 印章获取规则设置 +系统支持“按单品购买”或“按满额门槛”两种获取方式。*特别提醒:平台层级的配置优先级高于单品配置。* + +### 1.1 方式 A:购买特定商品获取 +- **后台路径**:`运营` -> `商品` -> `商品管理` -> `编辑`。 +- **配置要点**:在商品编辑页找到“集换卡点”,设置每购买 1 件可获得的印章数(通常设置为 1)。 + +![商品获取设置](img/image123.png) + +### 1.2 方式 B:全平台消费满额获取 +- **平台后台路径**:`设置` -> `系统设置` -> `集换卡设置`。 +- **配置策略**: + - **满额条件**:如“每满 10 元”获得 1 枚印章。 + - **优先级**:开启本项后,单品设置将失效,以金额核算为准。 + +![系统中心设置](img/image321.png) + +--- + +## 2. 奖品池与兑换规则 +印章集齐后的兑换单品需在“积分商城”中独立维护。 +- **后台路径**:`积分商城` -> `商品管理`。 +- **关键配置**: + - **价格类型**:选择“仅集换券”。 + - **积分/现金**:均填写为 0。 + +![兑换单品配置](img/image132.png) + +--- + +## 3. 用户端使用体验 (海峡姐妹 APP) +用户可在 APP 的个人中心或首页 Banner 参与集换卡互动。 + +1. **查阅进度**:在“收集印章页”查看已点入的印章。 +2. **兑换路径**:点击“去逛逛” -> 选择“集换券”标签 -> 选择对应商品进行兑换。 + +![APP 场景预览](img/phone1.jpg) +![APP 场景预览](img/phone2.jpg) +![APP 场景预览](img/phone3.jpg) diff --git a/zsw/8.营销优惠设置/4.三方渠道.md b/zsw/8.营销优惠设置/4.三方渠道.md new file mode 100644 index 0000000..efd60c7 --- /dev/null +++ b/zsw/8.营销优惠设置/4.三方渠道.md @@ -0,0 +1,31 @@ +# 第三方券码核销 (抖音、美团等) + +::: danger 财务核销规范 +请务必在收银操作前,首先核销会员在三方平台(如抖音、美团、口碑)的电子券码。防止因操作失误导致的重复核销或异常退款纠纷。 +::: + +## 1. 后台配置:新增核销渠道 +- **操作路径**:`商户后台` -> `运营` -> `门店管理` -> `第三方渠道`。 +- **作用**:让收银端识别并处理来自非本系统的券码记录。 + +### 1.1 核销类型配置 +- **会员余额**:导入三方平台的预存余额。建议将“核销金额”全数录入至“赠送余额”分类,以实现财务在账目上与本系统自有余额的有效区分。 +- **优惠券/票券**:针对单品兑换或定额减免券。 + +![后台三方配置](img/tenant_third.png) + +--- + +## 2. 前台收银端操作流程 (三方核销) +1. **选择渠道**:在 POS 界面点击“第三方核销”。 +2. **身份验证**:输入客户关联的手机号码(通常为三方平台预留号码)。 +3. **完成核销**: + - 扫描用户三方券码并执行核销动作。 + - **双向留存**:建议将核销后的凭证再次扫描进回乡系统,供财务后台复核。 + +![前台核销界面](img/hexiao.png) + +--- + +## 3. 对账提醒 +每个账期结束时,需在后台统计各三方渠道的核销总量,并与三方平台的管理后台导出明细进行二次核对,确保资金结算准确。 diff --git a/zsw/8.营销优惠设置/img/coupon_edit_time.png b/zsw/8.营销优惠设置/img/coupon_edit_time.png new file mode 100644 index 0000000..ab37636 Binary files /dev/null and b/zsw/8.营销优惠设置/img/coupon_edit_time.png differ diff --git a/zsw/8.营销优惠设置/img/hexiao.png b/zsw/8.营销优惠设置/img/hexiao.png new file mode 100644 index 0000000..6de9f61 Binary files /dev/null and b/zsw/8.营销优惠设置/img/hexiao.png differ diff --git a/zsw/8.营销优惠设置/img/image10.png b/zsw/8.营销优惠设置/img/image10.png new file mode 100644 index 0000000..e620fdc Binary files /dev/null and b/zsw/8.营销优惠设置/img/image10.png differ diff --git a/zsw/8.营销优惠设置/img/image123.png b/zsw/8.营销优惠设置/img/image123.png new file mode 100644 index 0000000..a0622e3 Binary files /dev/null and b/zsw/8.营销优惠设置/img/image123.png differ diff --git a/zsw/8.营销优惠设置/img/image132.png b/zsw/8.营销优惠设置/img/image132.png new file mode 100644 index 0000000..6bbcdce Binary files /dev/null and b/zsw/8.营销优惠设置/img/image132.png differ diff --git a/zsw/8.营销优惠设置/img/image321.png b/zsw/8.营销优惠设置/img/image321.png new file mode 100644 index 0000000..55be50c Binary files /dev/null and b/zsw/8.营销优惠设置/img/image321.png differ diff --git a/zsw/8.营销优惠设置/img/image5.png b/zsw/8.营销优惠设置/img/image5.png new file mode 100644 index 0000000..279a3c7 Binary files /dev/null and b/zsw/8.营销优惠设置/img/image5.png differ diff --git a/zsw/8.营销优惠设置/img/image6.png b/zsw/8.营销优惠设置/img/image6.png new file mode 100644 index 0000000..5e9545a Binary files /dev/null and b/zsw/8.营销优惠设置/img/image6.png differ diff --git a/zsw/8.营销优惠设置/img/image7.png b/zsw/8.营销优惠设置/img/image7.png new file mode 100644 index 0000000..666101f Binary files /dev/null and b/zsw/8.营销优惠设置/img/image7.png differ diff --git a/zsw/8.营销优惠设置/img/image8.png b/zsw/8.营销优惠设置/img/image8.png new file mode 100644 index 0000000..16ecadb Binary files /dev/null and b/zsw/8.营销优惠设置/img/image8.png differ diff --git a/zsw/8.营销优惠设置/img/image9.png b/zsw/8.营销优惠设置/img/image9.png new file mode 100644 index 0000000..68ad78d Binary files /dev/null and b/zsw/8.营销优惠设置/img/image9.png differ diff --git a/zsw/8.营销优惠设置/img/phone1.jpg b/zsw/8.营销优惠设置/img/phone1.jpg new file mode 100644 index 0000000..a6af6aa Binary files /dev/null and b/zsw/8.营销优惠设置/img/phone1.jpg differ diff --git a/zsw/8.营销优惠设置/img/phone2.jpg b/zsw/8.营销优惠设置/img/phone2.jpg new file mode 100644 index 0000000..bbd4617 Binary files /dev/null and b/zsw/8.营销优惠设置/img/phone2.jpg differ diff --git a/zsw/8.营销优惠设置/img/phone3.jpg b/zsw/8.营销优惠设置/img/phone3.jpg new file mode 100644 index 0000000..b089d3d Binary files /dev/null and b/zsw/8.营销优惠设置/img/phone3.jpg differ diff --git a/zsw/8.营销优惠设置/img/tenant_third.png b/zsw/8.营销优惠设置/img/tenant_third.png new file mode 100644 index 0000000..2769259 Binary files /dev/null and b/zsw/8.营销优惠设置/img/tenant_third.png differ diff --git a/zsw/9.会员管理.md b/zsw/9.会员管理.md new file mode 100644 index 0000000..e32c8f4 --- /dev/null +++ b/zsw/9.会员管理.md @@ -0,0 +1,42 @@ +# 会员管理与历史数据资产核算 + +::: info 管理目标 +会员是门店运营的核心资产。本章节涵盖了会员基础管理、积分余额规则以及特定子品牌(如:百年川椒光谷店)的历史数据迁移处理办法。 +::: + +## 1. 常规会员管理 +- **操作路径**:顶部导航栏 `会员` -> `会员管理`。 +- **核心功能**: + - **档案维护**:查看会员手机号、姓名、消费频次及累计金额。 + - **余额充值**:手动为会员处理储值变更(仅限有权限人员)。 + - **等级策略**:设置普卡、金卡、钻卡等不同等级的折扣与权益。 + +--- + +## 2. 专题:百年川椒历史余额迁移策略 +针对旗下“百年川椒光谷店”由于系统更迭产生的会员余额迁移,请严格执行以下操作规程: + +### 2.1 历史背景说明 +- **2016年以前**:使用“志杰收款系统”。数据已整体迁移至回乡 POS 架构。 +- **2016年 - 2020年**:使用“微生活”系统。由于该系统授权已到期,目前数据以 `.xls` 表格形式离线保存。 + +### 2.2 余额查询与绑定指引 + +#### **A. 志杰系统会员 (在线自助绑定)** +1. **获取编码**:运营人员在后台通过手机号/姓名搜索,获取对应“绑定编码”。 +2. **用户操作**:引导客人在“百年川椒”小程序 -> `我的` -> `老会员` 界面,输入绑定编码。 +3. **完成迁移**:验证通过后,志杰系统的余额将自动划转至小程序账户。 + +![志杰会员绑定流程](img/member_bind.png) + +#### **B. 微生活会员 (人工核销与转入)** +微生活余额由于无法自动对接,采用“先实拨、后补录”的方式: +1. **现场抵扣**:顾客到店消费时,根据离线表格核实其余额。本次消费直接从余额中抵扣。 +2. **数据上报**:通知信息部人员(冯美坎)更新表格。 +3. **余额注入**:剩余资金将作为“赠送余额”由后台人员人工注入会员小程序账户。 + +::: warning 特别注意 +微生活系统的离线余额单位为 **“分”**。录入与抵扣时请务必进行 100 倍换算(10000 分 = 100 元)。 +::: + +![微生活资料备查](img/weishenghuo.png) diff --git a/zsw/img/banner1.png b/zsw/img/banner1.png new file mode 100644 index 0000000..53e457e Binary files /dev/null and b/zsw/img/banner1.png differ diff --git a/zsw/img/banner2.png b/zsw/img/banner2.png new file mode 100644 index 0000000..7a17242 Binary files /dev/null and b/zsw/img/banner2.png differ diff --git a/zsw/img/cm1.png b/zsw/img/cm1.png new file mode 100644 index 0000000..11d552b Binary files /dev/null and b/zsw/img/cm1.png differ diff --git a/zsw/img/cm2.png b/zsw/img/cm2.png new file mode 100644 index 0000000..60802a1 Binary files /dev/null and b/zsw/img/cm2.png differ diff --git a/zsw/img/cm3.png b/zsw/img/cm3.png new file mode 100644 index 0000000..f2d350b Binary files /dev/null and b/zsw/img/cm3.png differ diff --git a/zsw/img/cm4.png b/zsw/img/cm4.png new file mode 100644 index 0000000..60f8712 Binary files /dev/null and b/zsw/img/cm4.png differ diff --git a/zsw/img/cm5.png b/zsw/img/cm5.png new file mode 100644 index 0000000..5c7c3b1 Binary files /dev/null and b/zsw/img/cm5.png differ diff --git a/zsw/img/cm7.png b/zsw/img/cm7.png new file mode 100644 index 0000000..9b1e76e Binary files /dev/null and b/zsw/img/cm7.png differ diff --git a/zsw/img/czbb.png b/zsw/img/czbb.png new file mode 100644 index 0000000..f714bf4 Binary files /dev/null and b/zsw/img/czbb.png differ diff --git a/zsw/img/czzqbb.png b/zsw/img/czzqbb.png new file mode 100644 index 0000000..06445a9 Binary files /dev/null and b/zsw/img/czzqbb.png differ diff --git a/zsw/img/dpls.png b/zsw/img/dpls.png new file mode 100644 index 0000000..fd529a4 Binary files /dev/null and b/zsw/img/dpls.png differ diff --git a/zsw/img/drive/client.png b/zsw/img/drive/client.png new file mode 100644 index 0000000..617767b Binary files /dev/null and b/zsw/img/drive/client.png differ diff --git a/zsw/img/drive/drive.png b/zsw/img/drive/drive.png new file mode 100644 index 0000000..f939377 Binary files /dev/null and b/zsw/img/drive/drive.png differ diff --git a/zsw/img/drive/pan.png b/zsw/img/drive/pan.png new file mode 100644 index 0000000..12b2571 Binary files /dev/null and b/zsw/img/drive/pan.png differ diff --git a/zsw/img/fxbb.png b/zsw/img/fxbb.png new file mode 100644 index 0000000..7b2b563 Binary files /dev/null and b/zsw/img/fxbb.png differ diff --git a/zsw/img/hdtjbb.png b/zsw/img/hdtjbb.png new file mode 100644 index 0000000..8733683 Binary files /dev/null and b/zsw/img/hdtjbb.png differ diff --git a/zsw/img/image-1.png b/zsw/img/image-1.png new file mode 100644 index 0000000..e88796f Binary files /dev/null and b/zsw/img/image-1.png differ diff --git a/zsw/img/image.png b/zsw/img/image.png new file mode 100644 index 0000000..0c92f6b Binary files /dev/null and b/zsw/img/image.png differ diff --git a/zsw/img/image3.png b/zsw/img/image3.png new file mode 100644 index 0000000..d1a5624 Binary files /dev/null and b/zsw/img/image3.png differ diff --git a/zsw/img/image4.png b/zsw/img/image4.png new file mode 100644 index 0000000..37c47fc Binary files /dev/null and b/zsw/img/image4.png differ diff --git a/zsw/img/login.dat b/zsw/img/login.dat new file mode 100644 index 0000000..d2dfde5 Binary files /dev/null and b/zsw/img/login.dat differ diff --git a/zsw/img/member_bind.png b/zsw/img/member_bind.png new file mode 100644 index 0000000..d8ff72a Binary files /dev/null and b/zsw/img/member_bind.png differ diff --git a/zsw/img/order1.png b/zsw/img/order1.png new file mode 100644 index 0000000..3b8f228 Binary files /dev/null and b/zsw/img/order1.png differ diff --git a/zsw/img/order5.png b/zsw/img/order5.png new file mode 100644 index 0000000..e40aedb Binary files /dev/null and b/zsw/img/order5.png differ diff --git a/zsw/img/printer.png b/zsw/img/printer.png new file mode 100644 index 0000000..bc72d8d Binary files /dev/null and b/zsw/img/printer.png differ diff --git a/zsw/img/printer/p1.jpg b/zsw/img/printer/p1.jpg new file mode 100644 index 0000000..9ef4afd Binary files /dev/null and b/zsw/img/printer/p1.jpg differ diff --git a/zsw/img/printer/p2.jpg b/zsw/img/printer/p2.jpg new file mode 100644 index 0000000..21a65db Binary files /dev/null and b/zsw/img/printer/p2.jpg differ diff --git a/zsw/img/printer/p3.jpg b/zsw/img/printer/p3.jpg new file mode 100644 index 0000000..6d44fcc Binary files /dev/null and b/zsw/img/printer/p3.jpg differ diff --git a/zsw/img/printer/p4.jpg b/zsw/img/printer/p4.jpg new file mode 100644 index 0000000..ba910cf Binary files /dev/null and b/zsw/img/printer/p4.jpg differ diff --git a/zsw/img/printer1.png b/zsw/img/printer1.png new file mode 100644 index 0000000..fdd1fab Binary files /dev/null and b/zsw/img/printer1.png differ diff --git a/zsw/img/printer2.png b/zsw/img/printer2.png new file mode 100644 index 0000000..61254f7 Binary files /dev/null and b/zsw/img/printer2.png differ diff --git a/zsw/img/printer3.png b/zsw/img/printer3.png new file mode 100644 index 0000000..d7dc459 Binary files /dev/null and b/zsw/img/printer3.png differ diff --git a/zsw/img/ques-1.png b/zsw/img/ques-1.png new file mode 100644 index 0000000..cf706be Binary files /dev/null and b/zsw/img/ques-1.png differ diff --git a/zsw/img/ques-2.png b/zsw/img/ques-2.png new file mode 100644 index 0000000..8f959ce Binary files /dev/null and b/zsw/img/ques-2.png differ diff --git a/zsw/img/ques-3.png b/zsw/img/ques-3.png new file mode 100644 index 0000000..c65afe4 Binary files /dev/null and b/zsw/img/ques-3.png differ diff --git a/zsw/img/ques-4.png b/zsw/img/ques-4.png new file mode 100644 index 0000000..68d17a2 Binary files /dev/null and b/zsw/img/ques-4.png differ diff --git a/zsw/img/ques.png b/zsw/img/ques.png new file mode 100644 index 0000000..3bd4c7b Binary files /dev/null and b/zsw/img/ques.png differ diff --git a/zsw/img/rainbond-container.png b/zsw/img/rainbond-container.png new file mode 100644 index 0000000..a9cf768 Binary files /dev/null and b/zsw/img/rainbond-container.png differ diff --git a/zsw/img/sts3.png b/zsw/img/sts3.png new file mode 100644 index 0000000..8959dc1 Binary files /dev/null and b/zsw/img/sts3.png differ diff --git a/zsw/img/weishenghuo.png b/zsw/img/weishenghuo.png new file mode 100644 index 0000000..a9ce18b Binary files /dev/null and b/zsw/img/weishenghuo.png differ diff --git a/zsw/img/xsbb1.png b/zsw/img/xsbb1.png new file mode 100644 index 0000000..772797d Binary files /dev/null and b/zsw/img/xsbb1.png differ diff --git a/zsw/img/xsbb2.png b/zsw/img/xsbb2.png new file mode 100644 index 0000000..019a486 Binary files /dev/null and b/zsw/img/xsbb2.png differ diff --git a/zsw/img/xsbb3.png b/zsw/img/xsbb3.png new file mode 100644 index 0000000..73e1ab0 Binary files /dev/null and b/zsw/img/xsbb3.png differ diff --git a/zsw/img/ysbb.png b/zsw/img/ysbb.png new file mode 100644 index 0000000..b01e942 Binary files /dev/null and b/zsw/img/ysbb.png differ diff --git a/zsw/img/zhbb.png b/zsw/img/zhbb.png new file mode 100644 index 0000000..5f96222 Binary files /dev/null and b/zsw/img/zhbb.png differ diff --git a/zsw/img/zqbb1.png b/zsw/img/zqbb1.png new file mode 100644 index 0000000..44e9902 Binary files /dev/null and b/zsw/img/zqbb1.png differ diff --git a/zsw/img/zqbb2.png b/zsw/img/zqbb2.png new file mode 100644 index 0000000..b415cce Binary files /dev/null and b/zsw/img/zqbb2.png differ diff --git a/zsw/img/zqbb3.png b/zsw/img/zqbb3.png new file mode 100644 index 0000000..429d60c Binary files /dev/null and b/zsw/img/zqbb3.png differ