.TH git-annex-resolvemerge 1 .SH NAME git-annex-resolvemerge \- resolve merge conflicts .PP .SH SYNOPSIS git annex resolvemerge .PP .SH DESCRIPTION Automatically resolves a conflicted merge. This is done automatically when using \fBgit annex sync\fP or \fBgit annex merge\fP. .PP When two trees being merged contain conflicting versions of an annexed file, the merge conflict will be resolved by adding both versions to the tree, using variants of the filename. .PP When one tree modified the file, and the other tree deleted the file, the merge conflict will be resolved by adding the modified file using a variant of the filename, leaving the original filename deleted. .PP When the merge conflict involves a file that is annexed in one tree, but is not annexed in the other tree, it is resolved by keeping the non\-annexed file as\-is, and adding the annexed version using a variant of the filename. .PP Note that only merge conflicts that involve one or more annexed files are resolved. Merge conflicts between two files that are not annexed will not be automatically resolved. .PP .SH EXAMPLES Suppose Alice commits a change to annexed file \fBfoo\fP, and Bob commits a different change to the same file \fBfoo\fP. .PP Merging between them will then fail, and git will present the merge conflict as a file \fBfoo\fP pointing to one version of the git-annex symlink, with \fBgit status\fP indicating that \fBfoo\fP has an unresolved conflict. .PP Running \fBgit annex resolvemerge\fP in this situation will resolve the merge conflict, by replacing the file \fBfoo\fP with files named like \fBfoo.variant\-c696\fP and \fBfoo.variant\-f16a\fP. One of the files has the content that Alice committed, and the other has the content that Bob committed. .PP The user can then examine the two variants of the file, and either merge the two changes into a single file, or rename one of them back to \fBfoo\fP and delete the other. .PP Now suppose Alice commits a change to annexed file \fBbar\fP, while Bob commits a deletion of the same file \fBbar\fP. Merging will fail. Running \fBgit annex resolvemerge\fP in this situation will resolve the merge conflict by making a file with a name like \fBbar.variant\-421f\fP containing Alice's version. The \fBbar\fP file remains deleted. The user can later examine the variant of the file and either rename it back to \fBbar\fP, or decide to delete it too. .PP .SH OPTIONS .IP "The git-annex\-common\-options(1) can be used." .IP .SH SEE ALSO git-annex(1) .PP .SH AUTHOR Joey Hess .PP .PP