Merge changes to a dataset from a fork
mergeFork(dataset, fork, autorollback = TRUE, force = FALSE)
The CrunchDataset
to merge to
The CrunchDataset
, perhaps forked from dataset
,
that is to be merged in.
logical If the merge fails, should dataset
be
restored to its state prior to the merge, or should it be left in its
partially merged state for debugging and manual fixing? Default is
TRUE
.
logical Attempt to push through merge conflicts by dropping
all changes to dataset
that occurred after fork
diverged from and take only
the changes from fork
? Default is FALSE
. You should only use force=TRUE after
first attempting and failing to merge without forcing.
dataset
with changes from fork
merged to it.