using LibGit2Sharp.Core; using LibGit2Sharp.Handlers; using System; namespace LibGit2Sharp { /// /// Options controlling the behavior of two trees being merged. /// public sealed class MergeTreeOptions : MergeOptionsBase { /// /// Initializes a new instance of the class. /// /// Default behavior: /// Merge will attempt to find renames. /// /// public MergeTreeOptions() { } } }