Problem Statement
How do you unstage only `app/config.yml` while keeping edits in your working tree?
Explanation
`git restore --staged app/config.yml` (or `git reset app/config.yml`) removes it from the index but leaves file changes on disk.
Practice Sets
This question appears in the following practice sets: