Git-aware incremental analysis #9
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
What to build
Add a
--since <commit|tag>flag that limits analysis to files changed since a given git ref. Usesgit diff --name-onlyto get the changed file list, then only analyzes those files. Merges results with a cached previous full analysis.Useful for CI where full analysis takes too long — only re-analyze what changed.
Acceptance criteria
--sinceflag accepts a git ref (commit SHA, tag, branch)Blocked by
None - can start immediately