* Result of git-based change detection. * Returns null when git is unavailable (non-git project or command failure), * signaling the caller to fall back to full filesystem scan.
| 811 | * signaling the caller to fall back to full filesystem scan. |
| 812 | */ |
| 813 | interface GitChanges { |
| 814 | modified: string[]; // M, MM, AM — files to re-hash + re-index |
| 815 | added: string[]; // ?? — new untracked files to index |
| 816 | deleted: string[]; // D — files to remove from DB |
| 817 | } |
| 818 | |
| 819 | /** |
| 820 | * Use `git status` to detect changed files instead of scanning every file. |
nothing calls this directly
no outgoing calls
no test coverage detected