Which operation in Git temporarily stores changes that you don't want to commit immediately?

  • git commit
  • git save
  • git stash
  • git push
The git stash command is used to temporarily store changes that you don't want to commit immediately. It allows you to save your current changes, revert the working directory to the last commit, and reapply the changes later when needed.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *