mirror of
https://github.com/apple/swift-nio.git
synced 2026-05-20 20:30:36 +00:00
8f6f8361ff
### Motivation * When threshold files don't exist yet, `thresholds update` creates new untracked files. `git diff HEAD` only shows changes to tracked files, so newly created threshold files were silently omitted from the diff. ### Modifications * Run `git add --intent-to-add .` before `git diff HEAD` so that untracked files are registered in the index and appear in the diff output without staging their contents. ### Result * The diff output now includes newly created threshold files.