In Git, what is the result of executing a 'merge' command?
- Creates a new branch
- Combines changes from different branches
- Deletes a branch after merging
- Reverts all changes made in a branch
The 'merge' command in Git combines changes from different branches into the current branch. It integrates the changes, creating a new commit that represents the combined state of the branches.
Loading...
Related Quiz
- The git _______ command is used to change a commit message that hasn't been pushed yet.
- What is a common benefit observed when implementing Git in large projects?
- When resolving a merge conflict, changes from the incoming branch are marked with <<<<<<< followed by the branch name or a unique ________.
- What is a Git Hook primarily used for?
- Your project has a dependency on a large external library. What Git feature would be most efficient to manage this dependency?