GoesSoftware.SuperSDK.Git 7.14.2

dotnet add package GoesSoftware.SuperSDK.Git --version 7.14.2
                    
NuGet\Install-Package GoesSoftware.SuperSDK.Git -Version 7.14.2
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="GoesSoftware.SuperSDK.Git" Version="7.14.2" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="GoesSoftware.SuperSDK.Git" Version="7.14.2" />
                    
Directory.Packages.props
<PackageReference Include="GoesSoftware.SuperSDK.Git" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add GoesSoftware.SuperSDK.Git --version 7.14.2
                    
#r "nuget: GoesSoftware.SuperSDK.Git, 7.14.2"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package GoesSoftware.SuperSDK.Git@7.14.2
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=GoesSoftware.SuperSDK.Git&version=7.14.2
                    
Install as a Cake Addin
#tool nuget:?package=GoesSoftware.SuperSDK.Git&version=7.14.2
                    
Install as a Cake Tool

SuperSDK.Git

Zero-config Git integration for the SuperSDK platform.
Embed full Git operations in your app without requiring Git installed on the host machine — powered by LibGit2Sharp.

Features

  • Clone, commit, push, pull, fetch
  • Branch / tag management
  • Commit log with lane-based graph layout
  • Working-tree diff and staged/unstaged status
  • File content at any commit or parent
  • Cross-platform: Windows, macOS (Apple Silicon), Linux

Quick Start

using SuperSDK.Git;

var repo = new GitRepository("/path/to/repo");

// Get commit log with graph columns pre-computed
var commits = repo.GetLog(maxCount: 200);

// Stage a file
repo.Stage("src/Foo.cs");

// Commit
repo.Commit("fix: correct cursor position", "User", "user@example.com");

Requirements

  • .NET 9.0+
  • No system Git installation required (libgit2 native binaries are bundled)

License

Copyright © 2026 GoesSoftware. All rights reserved.

Product 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.  net10.0 was computed.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on GoesSoftware.SuperSDK.Git:

Package Downloads
GoesSoftware.SuperSDK.Editor

SuperSDK 编辑器组件库 - 提供文件浏览器、代码编辑器、版本控制面板,原生集成 MessageBus

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
7.14.2 0 4/11/2026
7.14.0 27 4/10/2026
7.13.0 23 4/10/2026
7.12.0 28 4/10/2026
7.11.0 30 4/10/2026
7.10.0 37 4/8/2026
7.9.0 84 4/7/2026
7.8.0 93 4/4/2026
7.7.0 102 4/4/2026
7.6.0 91 4/4/2026
7.5.0 93 4/4/2026
7.4.0 95 4/4/2026
7.3.0 91 4/4/2026
7.2.0 98 4/3/2026
7.1.0 91 4/3/2026
7.0.0 96 4/1/2026

add lua function