This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see Cake.Issues.GitRepository.
Summary
Gets an instance of a provider for analyzing a Git repository and reporting issues using specified settings.
- Assembly
- Cake
.Issues .GitRepository .dll - Namespace
- Cake
.Issues .GitRepository - Containing Type
- Git
Repository Issues Aliases
Syntax
public static IIssueProvider GitRepositoryIssues(this ICakeContext context, GitRepositoryIssuesSettings settings)
Examples
Check for binary files not tracked by Git LFS:
var settings =
new GitRepositoryIssuesSettings
{
CheckBinaryFilesTrackedWithLfs = true
};
var issues =
ReadIssues(
GitRepositoryIssues(settings),
@"c:\repo");
Attributes
Type | Description |
---|---|
Cake |
|
Cake |
Parameters
Name | Type | Description |
---|---|---|
context | ICakeContext | The context. |
settings | Git |
Settings for analyzing the Git repository. |
Return Value
Type | Description |
---|---|
IIssueProvider | Instance of a provider for analyzing a Git repository and reporting issues. |