Practice this fail.
Bring it back. Keep the receipt.
Git · Restart as often as you like
Read the error, choose a command, and learn
why it works. Nothing runs on your machine.
The newest stash contains tracked edits. Reapply those edits to a compatible working tree while retaining the stash entry.
Bring it back. Keep the receipt.
$ git stash list
stash@{0}: WIP on main: adjust layout
Which command restores the edits without dropping the stash?
Fixed. By hand.
git stash applyApply restores the changes while leaving the entry in the stash list. Pop tries to apply and then remove the entry on success. Conflicts may still need manual resolution.
Practice does not affect your daily score or streak.