Skip to content

Instantly share code, notes, and snippets.

@gasolin
Created July 9, 2014 07:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gasolin/6ca2776306a36786adc6 to your computer and use it in GitHub Desktop.
Save gasolin/6ca2776306a36786adc6 to your computer and use it in GitHub Desktop.
git stash
# temp save git change
git stash
# list stashed items
git stash list
# get back
git stash pop
# get specify version back
git stash apply stash@{1}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment