git stash apply stash@ 0 code example
Example 1: git stash apply item
git stash apply stash@{index}
Example 2: git stash apply specific stash
git stash apply "stash@{n}"
or
git stash apply n
Example 3: git stash pop index
git stash pop stash@{2}
Example 4: git delete stash
git stash drop stash@{index} // here index will be shown after getting stash list.
Example 5: git stash contnet
git stash show -p stash@{1}
Example 6: git stash apply item
git checkout stash@{index} -- <filename> #stash particular file