Created
March 4, 2016 14:27
-
-
Save thigm85/d7fdb0fc92bf0422f979 to your computer and use it in GitHub Desktop.
git stash examples.
This file contains hidden or 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
| # list previous stashes | |
| git stash list | |
| # drop most recent stash | |
| git stash drop | |
| # apply most recent stash | |
| git stash apply | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment