Skip to content

Instantly share code, notes, and snippets.

@sprhawk
Created November 28, 2011 03:24
Show Gist options
  • Save sprhawk/1398957 to your computer and use it in GitHub Desktop.
Save sprhawk/1398957 to your computer and use it in GitHub Desktop.
git command: stash
$ git stash save "work in progress for foo feature"
$ git commit -a -m "blorpl: typofix"
$ git stash apply
$ git stash list
$ git stash apply stash@{1}
$ git stash clear
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment