NinjaBoy
NinjaBoy

Reputation: 3755

How to retrieve stashed changes

I stashed my changes because I had to pull. However, I forgot to pop my changes before I turned off my laptop. I tried the command git stash list to see if my stashed changes is there but I can't find it. How can I retrieve it? Please help. Thanks in advance.

Upvotes: 4

Views: 3336

Answers (1)

Sergey K.
Sergey K.

Reputation: 25386

To apply the recently pushed stash use:

git stash apply

Upvotes: 3

Related Questions