1using System.Collections.Generic;
20 void Fetch(LibGit2Sharp.IRepository repository, IEnumerable<string> refSpecs, Remote remote, FetchOptions fetchOptions,
string logMessage);
28 void Checkout(LibGit2Sharp.IRepository repository, CheckoutOptions checkoutOptions,
string commitish);
For low level interactions with a LibGit2Sharp.IRepository.
void Checkout(LibGit2Sharp.IRepository repository, CheckoutOptions checkoutOptions, string commitish)
Runs a blocking checkout operation on a given repository .
void Fetch(LibGit2Sharp.IRepository repository, IEnumerable< string > refSpecs, Remote remote, FetchOptions fetchOptions, string logMessage)
Runs a blocking fetch operation on a given repository .