You stashed, pulled, and popped. Pop conflict on `config.js`. The stash didn't disappear — Git kept it because pop failed.
Resolve conflict, add, commit (or not). Then `stash drop` cleans up.
Medium · 3 steps · +500 XP
This scenario walks through 3 steps, in order:
Try the terminal first — you learn more by doing. When you want to check yourself, here is the command for each step.
git stash popgit add config.jsgit stash dropPop on conflict keeps the stash. Apply doesn't drop either — that's a feature.