forked from libgit2/libgit2sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCommitOptions.cs
More file actions
26 lines (24 loc) · 855 Bytes
/
CommitOptions.cs
File metadata and controls
26 lines (24 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace LibGit2Sharp
{
/// <summary>
/// Provides optional additional information to commit creation.
/// By default, a new commit will be created (instead of amending the
/// HEAD commit) and an empty commit which is unchanged from the current
/// HEAD is disallowed.
/// </summary>
public sealed class CommitOptions
{
/// <summary>
/// True to amend the current <see cref="Commit"/> pointed at by <see cref="Repository.Head"/>, false otherwise.
/// </summary>
public bool AmendPreviousCommit { get; set; }
/// <summary>
/// True to allow creation of an empty <see cref="Commit"/>, false otherwise.
/// </summary>
public bool AllowEmptyCommit { get; set; }
}
}