记录云仓库推送过程

This commit is contained in:
mes123456
2026-07-02 08:59:18 -04:00
parent fb128e6b64
commit bb939644b9

View File

@@ -10736,3 +10736,25 @@ nginx: configuration file /etc/nginx/nginx.conf test is successful
8. 安装过程中 debconf 因无交互终端回退到 Noninteractive未影响安装结果。
9. 执行 `curl --version | head -1`,验证 `curl 8.14.1` 已可用。
10. 本轮结论:`curl` 已安装完成,可直接在后续命令中使用。
## 2026-07-02 - 提交并推送到云仓库
1. 收到用户请求:提交到云仓库,目标地址为 `http://154.8.160.151:3000`,用户提供账号信息。
2. 执行 `git status --short`,确认当前存在 13 个已跟踪文件改动,以及未跟踪生成目录 `web-rtcp-5axis-xyzbc-trt-sim-plan/app/dist/``web-rtcp-5axis-xyzbc-trt-sim-plan/tools/__pycache__/`
3. 执行 `git remote -v`,确认 `origin` 已指向 `http://154.8.160.151:3000/wangdequan/cnc_wams.git`
4. 执行 `git branch --show-current``git log -1 --oneline`,确认当前分支为 `master`,推送前最新提交为 `43034b2`
5. 检查本地静态服务器进程,确认此前启动的 `python3 -m http.server 4175` 仍在后台运行。
6. 执行 `git diff --stat`,确认改动范围包含 wasm-port interpreter 验证、xyzbc-trt profile、native/Web/compare evidence 脚本、工作文档、evidence JSON 和本日志文件。
7. 执行 `git diff --check`,未发现 whitespace error。
8. 执行 `git ls-files` 检查 `app/dist/``tools/__pycache__/`,确认这些未跟踪生成物没有被 Git 跟踪。
9. 执行 `npm --prefix web-rtcp-5axis-xyzbc-trt-sim-plan/app run smoke:node`,通过,输出 `xyzbc_trt_web_app_smoke=ok`
10. 执行 `npm --prefix web-rtcp-5axis-xyzbc-trt-sim-plan/app run build`,通过,输出 `gmoccapy_static_build=ok`
11. 执行 `python3 -m py_compile web-rtcp-5axis-xyzbc-trt-sim-plan/tools/collect-native-xyzbc-trt-evidence.py`,通过,无错误输出。
12. 执行 `git add -u`,只暂存已跟踪文件,保留未跟踪生成目录不提交。
13. 执行 `git diff --cached --stat``git diff --cached --name-only`,确认暂存范围为 13 个跟踪文件,不包含 `app/dist/``__pycache__/`
14. 执行 `git commit -m "补齐 xyzbc-trt Web 路径证据"`,创建提交 `fb128e6`
15. Git 提示 committer 身份由系统用户名和主机名自动生成,该提示未影响提交。
16. 执行 `git push origin master`,推送成功,远端 `master``43034b2` 更新到 `fb128e6`
17. 执行 `git status --short`,确认推送后仅剩未跟踪生成目录 `app/dist/``tools/__pycache__/`
18. 执行 `git log -1 --oneline``git ls-remote origin refs/heads/master`,确认本地和远端 `master` 均为 `fb128e6`
19. 本轮结论:源码、证据和工作文档已提交并推送到云仓库;未跟踪构建产物和 Python 缓存未提交。