IgnoreCommit Type
Commit ignore strategies. See Remarks for overview.
Author Ignores commits based on the Author which is distinct from theCommitter Email Ignores commits based on the Author email.Type Ignores commits based on the Type if they are conventional commitsFooterKey Ignores commits based on the presence of a FooterKey if they are conventional commitsFooterKeyValue Ignores commits based on whether a particular Footer key value pair is present (if they are conventional commits).Sha Ignores commits based on their Sha . It only checks the abbreviated forms as is provided by most tools, and will shorten fullSha s if required.Tag Ignore all the commits of a particular Tag TimeRange Ignore commits that fall within a specific time period. CommitScope Ignore commits that have a specified conventional commit scope. (eg: fix(ci): summary has a scope ofci )SubjectRegex Ignore commits based on their subject (or the first line) that matches the given regex. SkipCi Ignore commits that start with [skip ci]
Union cases
| Union case |
Description
|
Full Usage:
Author author
Parameters:
string
|
Ignores commits based on the The committer is distinguished from the author.
|
Full Usage:
CommitScope scope
Parameters:
string
|
Ignore all commits that have a specified conventional commit scope.
|
Full Usage:
Email email
Parameters:
string
|
Ignores commits based on the
|
Full Usage:
FooterKey footerToken
Parameters:
string
|
Ignores commits based on a
|
Full Usage:
FooterKeyValue(footerToken, footerValue)
Parameters:
string
footerValue : string
|
Ignores commits based on a
|
Full Usage:
Sha sha
Parameters:
string
|
Ignores commits based on their
We only check that the beginning of the actual
|
Full Usage:
SkipCi
|
Ignore all commits that start with [skip ci]. |
|
Ignore all commits that have conventional commit subject, or a first line that matches the given regex.
|
Full Usage:
Tag tag
Parameters:
string
|
Ignore all commits related to a tag.
|
|
Ignore all commits that were made within a specified time period.
|
Full Usage:
Type type
Parameters:
string
|
Ignores commits based on the
|
Instance members
| Instance member |
Description
|
Full Usage:
this.IsAuthor
Returns: bool
|
|
Full Usage:
this.IsCommitScope
Returns: bool
|
|
Full Usage:
this.IsEmail
Returns: bool
|
|
Full Usage:
this.IsFooterKey
Returns: bool
|
|
Full Usage:
this.IsFooterKeyValue
Returns: bool
|
|
Full Usage:
this.IsSha
Returns: bool
|
|
Full Usage:
this.IsSkipCi
Returns: bool
|
|
Full Usage:
this.IsSubjectRegex
Returns: bool
|
|
Full Usage:
this.IsTag
Returns: bool
|
|
Full Usage:
this.IsTimeRange
Returns: bool
|
|
Full Usage:
this.IsType
Returns: bool
|
|
Partas.GitNet