What does 'git merge' do?
- Combines changes from different branches
- Deletes a branch
- Reverts commits
- 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.