838 B
838 B
description
| description |
|---|
| Check git working directory status and file changes |
Check the current git repository status and display file changes in a clear, organized format.
Please perform the following tasks:
- Run
git statusto show the current state of the working tree - Display current branch using
git branch --show-current - List unstaged changes with
git diff --name-only - List staged changes with
git diff --cached --name-only
Present the information in Chinese with the following structure:
当前分支: [branch_name]
暂存区文件 ([count]):
[列出已暂存的文件]
未暂存的修改 ([count]):
[列出未暂存的修改文件]
未跟踪的文件 ([count]):
[列出未跟踪的文件]
Use clear formatting and emoji indicators (✓, ⚠️, etc.) to make the output easy to read.