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

GitCherryPickOptions.cs « Core « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 287ecacf0f824bffec277ce01f71507bc5bbd985 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System.Runtime.InteropServices;

namespace LibGit2Sharp.Core
{
    [StructLayout(LayoutKind.Sequential)]
    internal class GitCherryPickOptions
    {
        public uint Version = 1;

        // For merge commits, the "mainline" is treated as the parent
        public uint Mainline = 0;

        public GitMergeOpts MergeOpts = new GitMergeOpts { Version = 1 };

        public GitCheckoutOpts CheckoutOpts = new GitCheckoutOpts { version = 1 };
    }
}