GitCheatSheet.org logo
Home / How To

Apply a stash entry to the current working tree

# Apply the LATEST stash entry (index 0)
git stash apply

# Apply SPECIFIC stash entry (index 1)
git stash apply stash@{1}