CommitMessageIncrementMode Enum

Summary

Controls whether and how commit messages are used to determine automatic version increments.
Namespace
GitVersion.VersionCalculation
Interfaces
  • IComparable
  • ISpanFormattable
  • IFormattable
  • IConvertible
Base Types
  • object
  • ValueType
  • Enum
graph BT Type-->Base0["Enum"] Base0-->Base1["ValueType"] Base1-->Base2["object"] Type-.->Interface0["IComparable"] Type-.->Interface1["ISpanFormattable"] Type-.->Interface2["IFormattable"] Type-.->Interface3["IConvertible"] Type["CommitMessageIncrementMode"] class Type type-node

Syntax

public enum CommitMessageIncrementMode

Fields

Name Constant Value Summary
Disabled 1
Commit messages are never inspected; increments must be configured explicitly.
static
Enabled 0
All commit messages are inspected for increment keywords.
static
MergeMessageOnly 2
Only merge commit messages are inspected for increment keywords.
static
GitHub