DIS-017: GET bareword cannot restore a deleted tracked file

GET promises be get file.c restores one file from cur's baseline, "resurrecting if deleted", and Verbs says a bareword promotes to the path slot when it "names a tracked file". The impl decides path-vs-branch by on-disk stat, not by tracked status, so a deleted tracked file misses the stat, promotes to ?branch, and be get file.c attempts a branch switch instead of resurrecting the file. The goal is bareword classification by tracked status. See GET, Verbs.

Issues

Bareword promotion keys on existence, not on tracking.

Blockers

None; needs a baseline-tree tracked-path probe available to the bareword classifier (the same lookup DIS-004 wants for the delete hash check).

Planned

Repro, then classify by tracked status.