Created
November 28, 2011 03:24
-
-
Save sprhawk/1398957 to your computer and use it in GitHub Desktop.
git command: stash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ 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