CodeLogic.GitHelper
4.5.1
See the version list below for details.
dotnet add package CodeLogic.GitHelper --version 4.5.1
NuGet\Install-Package CodeLogic.GitHelper -Version 4.5.1
<PackageReference Include="CodeLogic.GitHelper" Version="4.5.1" />
<PackageVersion Include="CodeLogic.GitHelper" Version="4.5.1" />
<PackageReference Include="CodeLogic.GitHelper" />
paket add CodeLogic.GitHelper --version 4.5.1
#r "nuget: CodeLogic.GitHelper, 4.5.1"
#:package CodeLogic.GitHelper@4.5.1
#addin nuget:?package=CodeLogic.GitHelper&version=4.5.1
#tool nuget:?package=CodeLogic.GitHelper&version=4.5.1
CodeLogic.GitHelper
Git repository management library for CodeLogic applications, powered by LibGit2Sharp.
Install
dotnet add package CodeLogic.GitHelper
Quick Start
var gitLib = new GitHelperLibrary();
// After library initialization via CodeLogic framework:
var repo = await gitLib.GetRepositoryAsync("Default");
var info = await repo.GetRepositoryInfoAsync();
Console.WriteLine($"Branch: {info.Value!.CurrentBranch}, Dirty: {info.Value.IsDirty}");
var status = await repo.GetStatusAsync();
await repo.CommitAsync(new CommitOptions { Message = "Update config" });
Features
- Clone, fetch, pull, push — full remote workflow with HTTPS and SSH authentication
- Branch management — list, checkout, and inspect branches (local and remote)
- Commit and status — stage changes, commit with metadata, and query working-tree status
- Batch operations —
FetchAllAsyncandGetAllStatusAsyncacross all configured repositories - Repository caching — configurable in-memory cache with automatic eviction
Configuration
Config file: config.githelper.json
{
"Enabled": true,
"BaseDirectory": "",
"DefaultTimeoutSeconds": 300,
"MaxConcurrentOperations": 3,
"EnableRepositoryCaching": true,
"CacheTimeoutMinutes": 30,
"Repositories": [
{
"Id": "Default",
"Name": "My Repository",
"RepositoryUrl": "https://github.com/username/repository.git",
"LocalPath": "my-repo",
"DefaultBranch": "main",
"Username": null,
"Password": null,
"AutoFetch": false,
"AutoFetchIntervalMinutes": 0,
"TimeoutSeconds": 300
}
]
}
Documentation
Full API docs: https://github.com/Media2A/CodeLogic.Libs
Requirements
- .NET 10.0+
- CodeLogic 3.x or 4.x
- LibGit2Sharp 0.30+
License
MIT — see LICENSE
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- CodeLogic (>= 3.2.0 && < 5.0.0)
- LibGit2Sharp (>= 0.30.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 |
|---|---|---|
| 4.5.2 | 88 | 5/24/2026 |
| 4.5.1 | 107 | 5/24/2026 |
| 4.5.1-preview.56 | 80 | 5/24/2026 |
| 4.4.2-preview.53 | 45 | 5/24/2026 |
| 4.4.1 | 90 | 5/24/2026 |
| 4.0.5 | 91 | 5/15/2026 |
| 4.0.4 | 93 | 5/9/2026 |
| 4.0.3 | 99 | 5/9/2026 |
| 4.0.1 | 387 | 4/26/2026 |
| 3.3.1 | 481 | 4/18/2026 |
| 3.3.0 | 103 | 4/18/2026 |
| 3.2.11 | 113 | 4/18/2026 |
| 3.2.10 | 94 | 4/18/2026 |
| 3.2.9 | 99 | 4/18/2026 |
| 3.2.8 | 92 | 4/18/2026 |
| 3.2.7 | 92 | 4/18/2026 |
| 3.2.6 | 97 | 4/18/2026 |
| 3.2.5 | 99 | 4/18/2026 |
| 3.2.4 | 96 | 4/17/2026 |
| 3.2.3 | 99 | 4/17/2026 |
# CL.GitHelper — Changelog
All notable changes to **CodeLogic.GitHelper** are documented here. Versions follow
[Semantic Versioning](https://semver.org/).
## [4.5.0] — 2026-05-24
### Changed
- **Unified versioning.** All CodeLogic.Libs now share a single version line
controlled by `version.txt` in the repo root. This is a version alignment
release — no functional changes to this library.
## [4.0.4] — 2026-04-16
### Changed
- README + manifest refresh for the v4 baseline. No functional changes vs 4.0.3.
- `LibraryManifest.Version` now reads from assembly metadata.
## [4.0.3] — 2026-04-15
### Added
- Wired credentials through to `Clone` / `Fetch` / `Pull` and added
`ResetHard` + `EnsureUpToDate` helpers.
## [4.0.2] — 2026-04-09
### Changed
- Annotated GitHelper configuration with `[ConfigField]` for the admin UI surface.
- Aligned with the v4 baseline across all libraries.
## [4.0.0] — 2026-04-09
Major rewrite. Republished as v4.0.0 to reset the version line under the
unified v4 baseline. Thin libgit2sharp wrapper for programmatic clone /
pull / fetch / reset.
### Notes
- Earlier history is retained in the
[git log](https://github.com/Media2A/CodeLogic.Libs/commits/main/CL.GitHelper).