git apply older stash code example
Example 1: git stash command with name
git stash save "my_stash"
Example 2: git stash pop index
git stash pop stash@{2}
Example 3: git stash apply specific stash
git stash apply "stash@{n}"
or
git stash apply n