Hacker News new | ask | show | jobs
by kazinator 1686 days ago
> As of git 2.11 one can select a specific stash to be popped instead of just the latest stash using git stash apply n where n is the stash number.

You can pop or just apply a specific stash using

  git stash { pop | apply } stash@{N}
This has worked as far as I remember; I have a 1.6 installation somewhere where I can confirm it, if necessary.