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.
Loading...
Related Quiz
- How does the 'pre-receive' Git Hook differ from the 'post-receive' Hook?
- To temporarily store uncommitted changes and clean the working directory, use git ______.
- A tag in Git is like a bookmark to a specific ________ in the repository's history.
- For an open source project on GitHub, what is the standard method for contributing changes?
- Which Git Hook is triggered before a commit is finalized?