using System.IO.Abstractions; namespace Recyclarr.TrashLib.Repo.VersionControl; public interface IGitRepositoryFactory { Task CreateAndCloneIfNeeded( Uri repoUrl, IDirectoryInfo repoPath, string branch, CancellationToken token); }