What is a common use of git stash in Git?

  • Discarding changes
  • Storing changes temporarily
  • Applying changes to the remote repository
  • Deleting the entire repository
Git stash is commonly used to temporarily store changes that are not ready to be committed. This is useful when you need to switch to a different branch or address an urgent issue, allowing you to save your work without committing it.
Add your answer
Loading...

Leave a comment

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