git worktree instead of stash
Reviewing a colleague's branch while your own work is half done does not need a stash. A worktree checks the other branch out into a second directory, sharing the same repository.
git worktree add ../review feat/thing
cd ../review && pnpm installTwo editors, two dev servers, no lost changes. git worktree remove ../review when you are done.
git