Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

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
 
PREVIOUS NEXT
Tagged: #git #stash #apply #specific #index
ADD COMMENT
Topic
Name
1+6 =