remergeΒΆ

Purpose:

Redo a merge.

Usage:

bzr remerge [FILE...]

Options:
-v, --verbose

Display more information.

--reprocess

Reprocess to reduce spurious conflicts.

-q, --quiet

Only display errors and warnings.

--usage

Show usage message and options.

--show-base

Show base revision text in conflicts.

-h, --help

Show help message.

Merge algorithm:
--merge-type=ARG
 

Select a particular merge algorithm.

--diff3

Merge using external diff3.

--lca

LCA-newness merge.

--merge3

Native diff3-style merge.

--weave

Weave-based merge.

Description:

Use this if you want to try a different merge technique while resolving conflicts. Some merge techniques are better than others, and remerge lets you try different ones on different files.

The options for remerge have the same meaning and defaults as the ones for merge. The difference is that remerge can (only) be run when there is a pending merge, and it lets you specify particular files.

Examples:

Re-do the merge of all conflicted files, and show the base text in conflict regions, in addition to the usual THIS and OTHER texts:

bzr remerge --show-base

Re-do the merge of “foobar”, using the weave merge algorithm, with additional processing to reduce the size of conflict regions:

bzr remerge --merge-type weave --reprocess foobar

Previous topic

reconfigure

Next topic

remove

This Page