Process Flow - Merge commit creation
Start on branch A
Make commits on branch A
Switch to branch B
Make commits on branch B
Run git merge A on branch B
Git compares changes
If no conflicts
Create merge commit
Merge complete
End with merged history
This flow shows how Git creates a merge commit by combining changes from two branches, handling conflicts if any.