Command-line Help
Not logged in

The "merge" command:

Usage: fossil merge ?OPTIONS? VERSION

The argument VERSION is a version that should be merged into the
current checkout.  All changes from VERSION back to the nearest
common ancestor are merged.  Except, if either of the --cherrypick or
--backout options are used only the changes associated with the
single check-in VERSION are merged.  The --backout option causes
the changes associated with VERSION to be removed from the current
checkout rather than added.

Only file content is merged.  The result continues to use the
file and directory names from the current checkout even if those
names might have been changed in the branch being merged in.

Other options:

  --baseline BASELINE     Use BASELINE as the "pivot" of the merge instead
                          of the nearest common ancestor.  This allows
                          a sequence of changes in a branch to be merged
                          without having to merge the entire branch.

  --detail                Show additional details of the merge

  --binary GLOBPATTERN    Treat files that match GLOBPATTERN as binary
                          and do not try to merge parallel changes.  This
                          option overrides the "binary-glob" setting.

  --nochange | -n         Dryrun:  do not actually make any changes; just
                          show what would have happened.

  --case-sensitive BOOL   Overwrite the case-sensitive setting.  If false,
                          files whose names differ only in case are taken
                          to be the same file.