You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
recyclarr/src/Recyclarr.TrashLib/Repo/VersionControl/IGitRepository.cs

12 lines
342 B

namespace Recyclarr.TrashLib.Repo.VersionControl;
public interface IGitRepository : IDisposable
{
Task ForceCheckout(string branch);
Task Fetch(string remote = "origin");
Task ResetHard(string toBranchOrSha1);
Task SetRemote(string name, Uri newUrl);
Task Clone(Uri cloneUrl, string? branch = null);
Task Status();
}