QuestionQ17

701.3 Source Code Management

Which Git command restores changes that were saved with git stash save?

  • A git stash merge
  • B git stash revert
  • C git stash pop
  • D git stash restore
  • E git stash commit
Explanation

git stash pop reapplies the most recent stashed changes to the working tree and normally removes that stash entry after a successful application.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!