/ .vscode / tasks.json
tasks.json
 1  // Use 'Ctrl-Shift-P', select 'Tasks: Run Task' to show all diff and use AI tool to generate commit message.
 2  {
 3      "version": "2.0.0",
 4      "tasks": [
 5          {
 6              "label": "Run Git Diff on Staged Files",
 7              "type": "shell",
 8              "command": "git",
 9              "args": ["--no-pager", "diff", "--staged"],
10              "group": "build",
11              "presentation": {
12                  "echo": true,
13                  "reveal": "always",
14                  "focus": false,
15                  "panel": "dedicated",
16                  "showReuseMessage": false,
17                  "clear": false
18              },
19              "problemMatcher": []
20          }
21      ]
22  }