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.
Loading...
Related Quiz
- In Git, a _______ merge is used to integrate changes from one branch into another without creating a merge commit.
- For database version control, the practice of _______ with Git ensures that database changes are reviewed before being deployed.
- How can you create an annotated tag in Git that includes a message?
- In resolving conflicts, the _______ command can be used to revert files to their state before the merge conflict.
- Which Git feature is commonly used to trigger a CI/CD pipeline?