分析最近 N 条 git 提交,总结项目变化
/plugin marketplace add 15195999826/LomoMarketplace/plugin install 15195999826-git-utils-plugins-git-utils@15195999826/LomoMarketplace## Context - Current branch: !`git branch --show-current` - Repository root: !`git rev-parse --show-toplevel` ## Your task 用户请求分析最近 **$ARGUMENTS** 条提交的项目变化。 1. 执行 `git log -n $ARGUMENTS --pretty=format:"%h | %s | %an | %ar"` 获取提交列表 2. 执行 `git log -n $ARGUMENTS --stat --pretty=format:"━━━ %h: %s ━━━"` 获取文件变更统计 3. 基于以上信息,用中文总结项目变化: - 按类型分类 (feat/fix/refactor/docs/chore 等) - 指出主要功能变更 - 列出受影响的模块/目录 - 如有重大变更或风险点,特别说明