Aiursoft.GitRunner
9.0.12
dotnet add package Aiursoft.GitRunner --version 9.0.12
NuGet\Install-Package Aiursoft.GitRunner -Version 9.0.12
<PackageReference Include="Aiursoft.GitRunner" Version="9.0.12" />
<PackageVersion Include="Aiursoft.GitRunner" Version="9.0.12" />
<PackageReference Include="Aiursoft.GitRunner" />
paket add Aiursoft.GitRunner --version 9.0.12
#r "nuget: Aiursoft.GitRunner, 9.0.12"
#addin nuget:?package=Aiursoft.GitRunner&version=9.0.12
#tool nuget:?package=Aiursoft.GitRunner&version=9.0.12
GitRunner
GitRunner is a tool to help you run git commands in C#.
How to install
To install Aiursoft.GitRunner
to your project from nuget.org:
dotnet add package Aiursoft.GitRunner
How to use
You can use this tool to Clone\Push\Commit git repositories.
var serviceProvider = new ServiceCollection()
.AddLogging()
.AddGitRunner()
.BuildServiceProvider();
var repoPath = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString());
Directory.CreateDirectory(repoPath);
var workspaceManager = serviceProvider.GetRequiredService<WorkspaceManager>();
await workspaceManager.Clone(
repoPath,
"master",
"https://gitlab.aiursoft.cn/aiursoft/gitrunner.git",
mode);
var branch = await workspaceManager.GetBranch(repoPath); // master
var remote = await workspaceManager.GetRemoteUrl(repoPath); // https://gitlab.aiursoft.cn/aiursoft/gitrunner.git
API Overview
Below is a brief summary of all the methods available in WorkspaceManager:
GetBranch(string path)
- Retrieves the current branch of the repository.
- Usage:
var branch = await workspaceManager.GetBranch(path);
GetCommitTimes(string path)
- Returns an array of commit times (as
DateTime[]
), in descending order. - Usage:
var times = await workspaceManager.GetCommitTimes(path);
- Returns an array of commit times (as
GetCommits(string path)
- Retrieves commit details (author, email, message, time, hash) as an array of commit objects.
- Usage:
var commits = await workspaceManager.GetCommits(path);
SwitchToBranch(string sourcePath, string targetBranch, bool enforceCurrentContent)
- Switches the repository to the specified branch. If needed, it can enforce a fresh branch creation.
- Usage:
await workspaceManager.SwitchToBranch(sourcePath, "develop", true);
GetRemoteUrl(string path)
- Retrieves the remote origin URL from the Git configuration.
- Usage:
var remoteUrl = await workspaceManager.GetRemoteUrl(path);
Init(string path)
- Initializes a new Git repository at the given path (
git init
). - Usage:
await workspaceManager.Init(path);
- Initializes a new Git repository at the given path (
AddAndCommit(string path, string message)
- Stages all changes and commits them. Auto-configures user info if not set.
- Usage:
await workspaceManager.AddAndCommit(path, "Initial commit");
GetCurrentUserEmail(string path)
- Returns the current Git user email from configuration.
- Usage:
var email = await workspaceManager.GetCurrentUserEmail(path);
Clone(string path, string? branch, string endPoint, CloneMode cloneMode)
- Clones a repository using different modes:
- Full: Standard clone.
- OnlyCommits: Downloads commits only.
- CommitsAndTrees: Clones commits and tree info.
- Depth1: Shallow clone.
- Bare: Bare repository.
- BareWithOnlyCommits: Bare clone with commit filter.
- Usage:
await workspaceManager.Clone(path, "master", endpoint, CloneMode.Full);
- Clones a repository using different modes:
IsBareRepo(string path)
- Determines if the repository is a bare repository.
- Usage:
bool isBare = await workspaceManager.IsBareRepo(path);
ResetRepo(string path, string? branch, string endPoint, CloneMode cloneMode)
- Resets a repository to match the remote state. If the repo isn’t valid, it deletes and re-clones.
- Usage:
await workspaceManager.ResetRepo(path, "master", endpoint, CloneMode.Full);
CommitToBranch(string sourcePath, string message, string branch)
- Stages changes, switches to the specified branch, and commits with the provided message.
- Usage:
bool committed = await workspaceManager.CommitToBranch(sourcePath, "Update", "feature");
SetUserConfig(string sourcePath, string username, string email)
- Sets the Git user name and email configuration for commits.
- Usage:
await workspaceManager.SetUserConfig(sourcePath, "Your Name", "you@example.com");
Push(string sourcePath, string branch, string endpoint, bool force = false)
- Pushes the local branch to the remote repository. Can force push if required.
- Usage:
await workspaceManager.Push(sourcePath, "master", endpoint, true);
PendingCommit(string sourcePath)
- Checks if there are uncommitted changes in the repository.
- Usage:
bool hasPending = await workspaceManager.PendingCommit(sourcePath);
Fetch(string path)
- Fetches updates from the remote with a built-in retry mechanism.
- Usage:
await workspaceManager.Fetch(path);
Error Handling & Retry
- GitCommandException: Methods throw this exception on Git command errors.
- RetryEngine: Used (e.g., in the
Fetch
method) to automatically retry operations on failure.
How to contribute
There are many ways to contribute to the project: logging bugs, submitting pull requests, reporting issues, and creating suggestions.
Even if you with push rights on the repository, you should create a personal fork and create feature branches there when you need them. This keeps the main repository clean and your workflow cruft out of sight.
We're also interested in your feedback on the future of this project. You can submit a suggestion or feature request through the issue tracker. To make this process more effective, we're asking that these include more information to help define them more clearly.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net9.0 is compatible. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
-
net9.0
- Aiursoft.Canon (>= 9.0.3)
- Aiursoft.CSTools (>= 9.0.2)
- Microsoft.Extensions.Logging.Abstractions (>= 9.0.3)
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 |
---|---|---|
9.0.12 | 135 | 3/19/2025 |
9.0.11 | 155 | 3/12/2025 |
9.0.10 | 160 | 3/12/2025 |
9.0.9 | 95 | 2/23/2025 |
9.0.8 | 104 | 2/13/2025 |
9.0.7 | 95 | 2/12/2025 |
9.0.6 | 105 | 2/1/2025 |
9.0.5 | 100 | 2/1/2025 |
9.0.3 | 84 | 1/27/2025 |
9.0.2 | 85 | 1/16/2025 |
9.0.1 | 97 | 12/31/2024 |
9.0.0 | 85 | 12/30/2024 |
8.0.15 | 115 | 10/28/2024 |
8.0.14 | 106 | 10/10/2024 |
8.0.13 | 112 | 10/9/2024 |
8.0.12 | 101 | 10/7/2024 |
8.0.11 | 150 | 7/7/2024 |
8.0.10 | 130 | 6/29/2024 |
8.0.8 | 121 | 6/13/2024 |
8.0.7 | 112 | 6/8/2024 |
8.0.6 | 138 | 3/17/2024 |
8.0.5 | 121 | 3/17/2024 |
8.0.4 | 137 | 3/16/2024 |
8.0.3 | 151 | 2/25/2024 |
8.0.2 | 145 | 2/19/2024 |
8.0.1 | 138 | 2/19/2024 |
8.0.0 | 128 | 2/19/2024 |
7.0.16 | 145 | 2/4/2024 |
7.0.15 | 117 | 2/2/2024 |
7.0.14 | 118 | 2/2/2024 |
7.0.13 | 126 | 1/30/2024 |
7.0.12 | 181 | 1/4/2024 |
7.0.11 | 160 | 12/30/2023 |
7.0.10 | 155 | 12/26/2023 |
7.0.9 | 157 | 12/24/2023 |
7.0.8 | 176 | 12/11/2023 |
7.0.7 | 160 | 12/1/2023 |
7.0.6 | 153 | 12/1/2023 |
7.0.5 | 162 | 11/26/2023 |
7.0.4 | 155 | 11/26/2023 |
7.0.3 | 143 | 11/25/2023 |
7.0.2 | 157 | 11/25/2023 |
7.0.1 | 148 | 11/24/2023 |
7.0.0 | 151 | 11/24/2023 |
1.0.8 | 153 | 11/24/2023 |
1.0.7 | 160 | 11/24/2023 |
1.0.6 | 160 | 11/24/2023 |
1.0.5 | 144 | 11/24/2023 |
1.0.4 | 152 | 11/24/2023 |
1.0.3 | 157 | 11/24/2023 |
1.0.2 | 154 | 11/24/2023 |
1.0.1 | 159 | 11/24/2023 |