You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
743 B
21 lines
743 B
namespace Model.Git; |
|
|
|
public class CommitType |
|
{ |
|
public const string Feature = "Feature"; |
|
public const string Game_Patch = "Game Patch"; |
|
public const string Fix = "Fix"; |
|
public const string Documents = "Documents"; |
|
public const string Style = "Style"; |
|
public const string Refactor = "Refactor"; |
|
public const string Perf = "Perf"; |
|
public const string Test = "Test"; |
|
public const string Build = "Build"; |
|
public const string CI = "CI"; |
|
public const string Chore = "Chore"; |
|
public const string Typo = "Typo"; |
|
public const string Revert = "Revert"; |
|
public const string Planning = "Planning"; |
|
public const string PrivacyPolicy = "Privacy Policy"; |
|
public const string None = "None"; |
|
} |