git-merge-file
TLDR
Three-way merge files
$ git merge-file [current] [base] [other]
Merge with diff3 style$ git merge-file --diff3 [current] [base] [other]
Output to stdout$ git merge-file -p [current] [base] [other]
Quiet mode$ git merge-file -q [current] [base] [other]
SYNOPSIS
git merge-file [options] current base other
DESCRIPTION
git merge-file performs a three-way merge on files. Given the current version, common ancestor, and other version, it produces a merged result with conflict markers where needed.
The command is low-level, operating on files outside git's control. It's useful for custom merge workflows or merging files independently of git's automatic merging.
git merge-file provides standalone file merging capability.
PARAMETERS
CURRENT
Current version file.BASE
Common ancestor file.OTHER
Other version to merge.-p, --stdout
Output to stdout.--diff3
Include base in conflicts.-q, --quiet
Suppress warnings.--ours
Resolve conflicts with ours.--theirs
Resolve conflicts with theirs.--help
Display help information.
CAVEATS
Plumbing command. Modifies first file in place. Exit code indicates conflicts.
HISTORY
git merge-file is a core Git plumbing command implementing the three-way merge algorithm used internally by git merge.


