17 LibGit2Sharp.IRepository libGit2Repo,
18 IEnumerable<string> refSpecs,
20 FetchOptions fetchOptions,
23 ArgumentNullException.ThrowIfNull(libGit2Repo);
25 ArgumentNullException.ThrowIfNull(remote);
27 Commands.Fetch((LibGit2Sharp.Repository)libGit2Repo, remote.Name, refSpecs, fetchOptions, logMessage);