-
Notifications
You must be signed in to change notification settings - Fork 895
/
Copy pathGitRepositoryInitOptions.cs
64 lines (55 loc) · 1.83 KB
/
GitRepositoryInitOptions.cs
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
using System;
using System.Diagnostics;
using System.Runtime.InteropServices;
namespace LibGit2Sharp.Core
{
[StructLayout(LayoutKind.Sequential)]
internal class GitRepositoryInitOptions : IDisposable
{
public uint Version = 1;
public GitRepositoryInitFlags Flags;
public int Mode;
public IntPtr WorkDirPath;
public IntPtr Description;
public IntPtr TemplatePath;
public IntPtr InitialHead;
public IntPtr OriginUrl;
public static GitRepositoryInitOptions BuildFrom(FilePath workdirPath, bool isBare, string initialHead)
{
var opts = new GitRepositoryInitOptions
{
Flags = GitRepositoryInitFlags.GIT_REPOSITORY_INIT_MKPATH,
Mode = 0 /* GIT_REPOSITORY_INIT_SHARED_UMASK */
};
if (workdirPath != null)
{
Debug.Assert(!isBare);
opts.WorkDirPath = StrictFilePathMarshaler.FromManaged(workdirPath);
}
if (!string.IsNullOrEmpty(initialHead))
{
opts.InitialHead = StrictUtf8Marshaler.FromManaged(initialHead);
}
if (isBare)
{
opts.Flags |= GitRepositoryInitFlags.GIT_REPOSITORY_INIT_BARE;
}
return opts;
}
public void Dispose()
{
EncodingMarshaler.Cleanup(WorkDirPath);
WorkDirPath = IntPtr.Zero;
}
}
[Flags]
internal enum GitRepositoryInitFlags
{
GIT_REPOSITORY_INIT_BARE = (1 << 0),
GIT_REPOSITORY_INIT_NO_REINIT = (1 << 1),
GIT_REPOSITORY_INIT_NO_DOTGIT_DIR = (1 << 2),
GIT_REPOSITORY_INIT_MKDIR = (1 << 3),
GIT_REPOSITORY_INIT_MKPATH = (1 << 4),
GIT_REPOSITORY_INIT_EXTERNAL_TEMPLATE = (1 << 5),
}
}