TEMPORARY COMMITS Flashcards
Git Commands
1
Q
Save modified and staged changes
A
git stash
2
Q
list stack-order of stashed file changes
A
git stash list
3
Q
write working from top of stash stack
A
git stash pop
4
Q
discard the changes from top of stash stack
A
git stash drop