WithoutGit 1.0.0

dotnet add package WithoutGit --version 1.0.0
                    
NuGet\Install-Package WithoutGit -Version 1.0.0
                    
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="WithoutGit" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="WithoutGit" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="WithoutGit" />
                    
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 WithoutGit --version 1.0.0
                    
#r "nuget: WithoutGit, 1.0.0"
                    
#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.
#addin nuget:?package=WithoutGit&version=1.0.0
                    
Install WithoutGit as a Cake Addin
#tool nuget:?package=WithoutGit&version=1.0.0
                    
Install WithoutGit as a Cake Tool

WithoutGit - GitHub Repository Cloner

A .NET library for cloning GitHub repositories without using Git. This library uses the GitHub REST API to download repository contents, with features like filtering, multi-threading, and progress tracking.

Features

  • Clone entire GitHub repositories without Git installation
  • Fast cloning using GitHub's zipball endpoint
  • Filter files using glob patterns
  • Track download progress via events
  • Multi-threading support for faster downloads
  • Repository updating (detect and apply changes)
  • Mirror mode to ensure local directory exactly matches remote

Installation

Add a reference to the WithoutGit library in your project.

<PackageReference Include="WithoutGit" Version="1.0.0" />

Basic Usage

Clone a Repository

using WithoutGit;

// Create a new instance (optionally with a GitHub token)
using (var cloner = new Clone("your_github_token"))
{
    // Subscribe to events
    cloner.CloningStarted += (sender, args) => Console.WriteLine("Cloning started");
    cloner.CloningProgress += (sender, args) => Console.WriteLine($"Progress: {args.Percentage:F2}% ({args.ProcessedFiles}/{args.TotalFiles})");
    cloner.CloningCompleted += (sender, args) => Console.WriteLine($"Cloning completed: {args.Success}");
    cloner.LogErrors += (sender, args) => Console.WriteLine($"Error: {args.ErrorMessage}");

    // Clone a repository
    await cloner.CloneRepositoryAsync("owner", "repository", @"C:\path\to\local\directory");
}

Fast Clone (Using Zipball)

using WithoutGit;

using (var cloner = new Clone("your_github_token"))
{
    // Clone faster using zipball approach
    await cloner.CloneRepositoryFastAsync("owner", "repository", @"C:\path\to\local\directory");
}

Update Existing Clone

using WithoutGit;

using (var cloner = new Clone("your_github_token"))
{
    // Enable mirror mode to ensure exact matching
    cloner.MirrorMode = true;
    
    // Update an existing clone
    await cloner.UpdateRepositoryAsync("owner", "repository", @"C:\path\to\local\directory");
}

Advanced Features

File Filtering

using WithoutGit;

using (var cloner = new Clone("your_github_token"))
{
    // Include only specific files
    cloner.IncludePaths.Add("**/*.cs");  // All C# files
    cloner.IncludePaths.Add("docs/**");  // All files in docs directory
    
    // Exclude specific files
    cloner.ExcludePatterns.Add("**/bin/**");  // Exclude bin directories
    cloner.ExcludePatterns.Add("**/*.exe");   // Exclude executable files
    
    // Clone with filters applied
    await cloner.CloneRepositoryAsync("owner", "repository", @"C:\path\to\local\directory");
}

Multi-threading

using WithoutGit;

using (var cloner = new Clone("your_github_token"))
{
    // Enable multi-threading
    cloner.MultiThreading = true;
    cloner.MaxConcurrentThreads = 8;  // Set maximum concurrent threads
    
    // Clone with multi-threading
    await cloner.CloneRepositoryAsync("owner", "repository", @"C:\path\to\local\directory");
}

Download Priority

using WithoutGit;

using (var cloner = new Clone("your_github_token"))
{
    // Set download priority mode
    cloner.PriorityMode = Clone.DownloadPriority.SmallFilesFirst;  // Download smaller files first
    
    // Or prioritize specific file types
    cloner.PriorityMode = Clone.DownloadPriority.ByFileType;
    cloner.PriorityFileTypes.Clear();
    cloner.PriorityFileTypes.Add(".md");   // Download markdown files first
    cloner.PriorityFileTypes.Add(".json"); // Then JSON files
    
    // Clone with priority settings
    await cloner.CloneRepositoryAsync("owner", "repository", @"C:\path\to\local\directory");
}

Custom Download Handling

using WithoutGit;

using (var cloner = new Clone("your_github_token"))
{
    // Enable custom download handling
    cloner.CustomDownload = true;
    
    // Handle download events
    cloner.DownloadFileEvent += (sender, args) => 
    {
        Console.WriteLine($"Downloading {args.DownloadUrl} to {args.SavePath}");
        // Custom download logic here
    };
    
    // Clone with custom download handling
    await cloner.CloneRepositoryAsync("owner", "repository", @"C:\path\to\local\directory");
}

License

MIT

Notes

  • This library uses the GitHub REST API, which has rate limits. Using a GitHub token is recommended to increase these limits.
  • For large repositories, the CloneRepositoryFastAsync method is significantly faster.
  • Mirror mode ensures that your local directory exactly matches the remote repository, removing any files that don't exist remotely.
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  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 was computed.  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.  net9.0 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.0

    • No dependencies.

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.0.0 437 3/26/2025