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.
Add your answer
Loading...

Leave a comment

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