0

I just stashed before committing on git. I need help with reverting back because it looks like I have lost my changes. I'm using git bash.

Hugo y
  • 1,421
  • 10
  • 20
eldix_
  • 127
  • 4
  • 20

2 Answers2

0

git stash pop or git stash apply + git stash drop (after having confirmed the stash pop got all your changes back).

bobah
  • 18,364
  • 2
  • 37
  • 70
0

Just run

git stash pop

This will un-stash your changes

A Sonik
  • 1
  • 2