GitStore 1.4.0
dotnet add package GitStore --version 1.4.0
NuGet\Install-Package GitStore -Version 1.4.0
<PackageReference Include="GitStore" Version="1.4.0" />
paket add GitStore --version 1.4.0
#r "nuget: GitStore, 1.4.0"
// Install GitStore as a Cake Addin #addin nuget:?package=GitStore&version=1.4.0 // Install GitStore as a Cake Tool #tool nuget:?package=GitStore&version=1.4.0
A dotnet library leverage Git repository as store.
Note: it's not a replacement of Git operations, actually it only implements git clone
and git push
. Basic idea is clone remoting git repository to local and store data as text or bytes, commit and push to remote. The core operations are file reads and writes.
Usage
Install from NuGet
dotnet add package GitStore
This library supports .NET 7 and version onwards.
Basic usage
Provide required option parameters manually.
var option = new GitStoreOption
{
Branch = "unit-test",
Author = "test_committer",
Password = "",
CommitterEmail = "test_committer@test.com",
UserName = <Personal Access Token>,
LocalDirectory = Path.Combine(Path.GetTempPath(), "gitstore_unittest"),
RemoteGitUrl = "https://github.com/JerryBian/gitstore-dotnet"
};
var store = new GitStore(Options.Create(option));
await store.PullFromRemoteAsync();
var content = await store.GetTextAsync(Path.Combine(option.LocalDirectory, "dummy.txt"));
Assert.Equal("test", content);
var path1 = Path.Combine(option.LocalDirectory, "data", Path.GetRandomFileName());
var content1 = Guid.NewGuid().ToString();
await store.InsertOrUpdateAsync(path1, content1);
var path2 = Path.Combine(option.LocalDirectory, "data", Path.GetRandomFileName());
var content2 = Guid.NewGuid().ToByteArray();
await store.InsertOrUpdateAsync(path2, content2);
await store.PushToRemoteAsync("commit by GitStore.");
await store.PullFromRemoteAsync();
Assert.Equal(File.ReadAllText(path1), content1);
Assert.True(content2.SequenceEqual(File.ReadAllBytes(path2)));
For GitHub repository, you can request PAT here here. Please note you cannot use traditional username/password method to operate GitHub anymore, see the announcement.
Dependency injection / Options pattern
For modern applications, you can register GitStore via DI.
var builder = Host.CreateApplicationBuilder();
builder.Services.AddGitStore();
using IHost host = builder.Build();
var store = host.Services.GetRequiredService<IGitStore>();
var option = host.Services.GetRequiredService<IOptions<GitStoreOption>>().Value;
await store.PullFromRemoteAsync();
The option parameters are configured as standard way.
For example, set environment variable as GitStore__Branch=master
.
License
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net7.0
- LibGit2Sharp (>= 0.28.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Options (>= 8.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 8.0.0)
-
net8.0
- LibGit2Sharp (>= 0.28.0)
- Microsoft.Extensions.Configuration.Abstractions (>= 8.0.0)
- Microsoft.Extensions.Options (>= 8.0.0)
- Microsoft.Extensions.Options.ConfigurationExtensions (>= 8.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.4.0 | 953 | 11/24/2023 |
1.3.0 | 257 | 10/22/2023 |
1.2.1 | 165 | 10/17/2023 |
1.2.0 | 139 | 10/17/2023 |
1.1.0 | 155 | 10/14/2023 |
1.0.0 | 215 | 10/14/2023 |
0.9.0 | 143 | 10/13/2023 |
0.2.1-alpha | 108 | 10/13/2023 |
0.2.0 | 149 | 10/13/2023 |
0.1.6-alpha | 114 | 10/10/2023 |
0.1.1-alpha | 107 | 10/10/2023 |
0.1.0-alpha | 101 | 10/10/2023 |