Answers for "git stash apply specific index"

1

git stash apply specific index

// Get a list of stashes
git stash list

// Apply specific stash index
git stash apply stash@{n}

// Since version 2.11 you can do:
git stash apply n
Posted by: Guest on May-24-2021
2

git stash apply specific stash

git stash apply "stash@{n}"
or
git stash apply n
Posted by: Guest on September-04-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language