Skip to content

Latest commit

 

History

History
22 lines (12 loc) · 441 Bytes

git-stash-revert.md

File metadata and controls

22 lines (12 loc) · 441 Bytes

Get stashed changes back

To get the latest stashed changes

git stash pop

To get the specific stash

git stash apply stash@{INDEX}

  • INDEX: Index of the stash, the index can be found using stash list command

Demo

Git Stash Revert

Related