What does 'git merge' do?

  1. Combines changes from different branches
  2. Deletes a branch
  3. Reverts commits
  4. Creates a new repository

Explanation

Git merge combines changes from different branches. It integrates commits from one branch into another, typically merging a feature branch into the main branch.