鏇存柊鏂囨。

This commit is contained in:
renjianbo
2026-01-13 14:38:46 +08:00
parent 014ef65606
commit 311db72900
6 changed files with 31 additions and 48 deletions

View File

@@ -13,12 +13,12 @@
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "docs/Obsidian笔记体系/Projects/知你-调测/知你--调测.md", "file": "docs/Obsidian/高频命令.md",
"mode": "source", "mode": "source",
"source": false "source": false
}, },
"icon": "lucide-file", "icon": "lucide-file",
"title": "知你--调测" "title": "高频命令"
} }
} }
] ]
@@ -185,10 +185,12 @@
}, },
"active": "dc4c0d0c9987c7cd", "active": "dc4c0d0c9987c7cd",
"lastOpenFiles": [ "lastOpenFiles": [
"docs/Obsidian/2026-01-05 个人文档管理.md", "docs/gerrit/gerrit每日工作流程.md",
"docs/Obsidian/资源网站.md",
"docs/Obsidian/高频命令.md", "docs/Obsidian/高频命令.md",
"docs/cursor/cursor.md", "docs/cursor/cursor.md",
"docs/Obsidian/2026-01-05 个人文档管理.md",
"docs/Obsidian笔记体系/Projects/知你-调测/知你--调测.md",
"docs/Obsidian/资源网站.md",
"docs/Obsidian/重要笔记.md", "docs/Obsidian/重要笔记.md",
"docs/dify/作为安卓高级开发工程师,除了项目管理,你完全可以在技术专项、团队效能和个人成长三大领域构建更懂你的专属助手.md", "docs/dify/作为安卓高级开发工程师,除了项目管理,你完全可以在技术专项、团队效能和个人成长三大领域构建更懂你的专属助手.md",
"docs/dify/使用dify可以生成一个专项事务助手吗比如公司正规化事务助手.md", "docs/dify/使用dify可以生成一个专项事务助手吗比如公司正规化事务助手.md",
@@ -203,7 +205,6 @@
"docs/学习笔记/个人全自动研发体系.md", "docs/学习笔记/个人全自动研发体系.md",
"docs/学习笔记/DevOps学习.md", "docs/学习笔记/DevOps学习.md",
"docs/git/git同步远程分支总结.md", "docs/git/git同步远程分支总结.md",
"docs/Obsidian笔记体系/Projects/知你-调测/知你--调测.md",
"docs/学习笔记/honor工作资料.md", "docs/学习笔记/honor工作资料.md",
"docs/学习笔记/提交代码时候的钩子.md", "docs/学习笔记/提交代码时候的钩子.md",
"docs/Obsidian笔记体系/Projects/知你-调测", "docs/Obsidian笔记体系/Projects/知你-调测",
@@ -211,7 +212,6 @@
"docs/Obsidian笔记体系/Resources/工具/效率工具推荐/README.md", "docs/Obsidian笔记体系/Resources/工具/效率工具推荐/README.md",
"docs/Obsidian笔记体系/Resources/会议与分享/内部技术分享记录/代码评审模板示例.md", "docs/Obsidian笔记体系/Resources/会议与分享/内部技术分享记录/代码评审模板示例.md",
"docs/Obsidian笔记体系/Daily/2026-01-13.md", "docs/Obsidian笔记体系/Daily/2026-01-13.md",
"docs/Obsidian笔记体系/Projects/项目A-系统定制化/测试与验证记录.md",
"docs/gerrit", "docs/gerrit",
"gerrit", "gerrit",
"更新部署脚本/deploy.sh", "更新部署脚本/deploy.sh",

View File

@@ -6,53 +6,13 @@ git config --global user.name "renjianbo"
git config --global user.email "18691577328@qq.com" git config --global user.email "18691577328@qq.com"
查看特定应用的进程 查看特定应用的进程
adb shell ps | grep com.xunpaisoft.social adb shell ps | grep com.xunpaisoft.social
android 获取当前页面的 activity adb shell "dumpsys window | grep mCurrentFocus" android 获取当前页面的 activity adb shell "dumpsys window | grep mCurrentFocus"
# 安装 commit-msg 钩子
curl -Lo .git/hooks/commit-msg http://gerrit:8080/tools/hooks/commit-msg
chmod +x .git/hooks/commit-msg
# 为现有提交添加 Change-Id
git commit --amend --no-edit # 重新提交,钩子会自动添加
提交代码时的钩子
curl -o ".git/hooks/commit-msg"http://101.43.95.130:8082/tools/hooks/commit-msgchmod +x ".git/hooks/commit-msg"
git commit --amend --no-edit
# 手动执行清理脚本
/home/renjianbo/gerrit/cleanup_cursor_server.sh
# 或者直接清理(临时解决)
pkill -f "cursor-server"
gerrit每日工作流程
# 早上
git fetch origin
git rebase origin/master # 更新本地代码
# 开发中
git add .
git commit -m "..."
# 推送前
git pull --rebase origin master # 再次更新
解决冲突(如果有)
git push origin HEAD:refs/for/master
# 查看 Gerrit 反馈
# 根据评审意见修改
oppo测试命令 oppo测试命令

View File

@@ -2,6 +2,15 @@ curse 网站续费 https://cursor.com/cn/dashboard
pkill -f "cursor-server" pkill -f "cursor-server"
# 手动执行清理脚本
/home/renjianbo/gerrit/cleanup_cursor_server.sh
# 或者直接清理(临时解决)
pkill -f "cursor-server"
联通大王卡号13022988679 联通大王卡号13022988679

View File

@@ -0,0 +1,15 @@
# 早上
git fetch origin
git rebase origin/master # 更新本地代码
# 开发中
git add .
git commit -m "..."
# 推送前
git pull --rebase origin master # 再次更新
解决冲突(如果有)
git push origin HEAD:refs/for/master
# 查看 Gerrit 反馈
# 根据评审意见修改

View File

@@ -1 +0,0 @@
hello

View File

@@ -186,6 +186,7 @@ nav:
- gerrit/gerrit分支规范.md - gerrit/gerrit分支规范.md
- gerrit/gerrit提交代码时遇到钩子问题的解决办法.md - gerrit/gerrit提交代码时遇到钩子问题的解决办法.md
- gerrit/生成并配置SSH密钥、克隆仓库.md - gerrit/生成并配置SSH密钥、克隆仓库.md
- gerrit/gerrit每日工作流程.md
- adb调试命令: - adb调试命令:
- adb调试命令/adb常用命令.md - adb调试命令/adb常用命令.md
- adb调试命令/常用linux命令.md - adb调试命令/常用linux命令.md
@@ -197,7 +198,6 @@ nav:
- git/git同步远程分支总结.md - git/git同步远程分支总结.md
- git/git常用命令.md - git/git常用命令.md
- git/git设置用户名和邮箱.md - git/git设置用户名和邮箱.md
- git/hello.md
markdown_extensions: markdown_extensions:
- pymdownx.highlight: - pymdownx.highlight: