Welcome to mirror list, hosted at ThFree Co, Russian Federation.

MergeTreeOptions.cs « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 910ec95f773f2c84f3f846a2d75312dc5c097395 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
namespace LibGit2Sharp
{
    /// <summary>
    /// Options controlling the behavior of two trees being merged.
    /// </summary>
    public sealed class MergeTreeOptions : MergeOptionsBase
    {
        /// <summary>
        /// Initializes a new instance of the <see cref="MergeTreeOptions"/> class.
        /// <para>
        ///   Default behavior:
        ///     Merge will attempt to find renames.
        /// </para>
        /// </summary>
        public MergeTreeOptions()
        {
        }
    }
}