Save Fragments (shelve and restore incomplete changes) Flashcards
0
Q
$ git stash pop
A
Restores the most recently stashed files.
1
Q
$ git stash
A
Temporarily stores all modified tracked files.
2
Q
$ git stash list
A
Lists all stashed changesets.
3
Q
$ git stash drop
A
Discards the most recently stashed changeset.