To temporarily store changes without committing them, the Git command used is 'git _______.'

  • amend
  • commit
  • reset
  • stash
The 'git stash' command is used to temporarily store changes without committing them. It allows developers to save their work, switch branches, and apply the changes later. 'Commit' is used to permanently save changes, 'amend' is for modifying the last commit, and 'reset' is used to unstage changes.
Add your answer
Loading...

Leave a comment

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