In Git, _______ can be used to temporarily switch to another branch without committing the current work.
- git checkout
- git merge
- git branch
- git stash
In Git, the command 'git checkout' is used to switch between branches. It allows you to navigate between different branches without committing your current changes.
Loading...
Related Quiz
- How can you view the changes introduced in a specific commit using Git?
- During a project audit, you need to find out when a specific bug was introduced. What Git feature can help you trace the origin of this bug?
- What is the difference between git clone and git fork?
- To maintain a clean Git history when transitioning, it's recommended to use git ________ for combining multiple commits.
- Which branching strategy in Git involves creating new branches for each feature?