File tree Expand file tree Collapse file tree 1 file changed +23
-1
lines changed Expand file tree Collapse file tree 1 file changed +23
-1
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,29 @@ after installing via chocolatey and a minimal `GitVersion.yml` configuration
25
25
file will be created. Modify this as you need.
26
26
27
27
## Global configuration
28
- The global configuration options are:
28
+ The global configuration options look like this:
29
+
30
+ ``` yaml
31
+ next-version : 1.0
32
+ assembly-versioning-scheme : MajorMinorPatch
33
+ assembly-informational-format : ' {InformationalVersion}'
34
+ mode : ContinuousDelivery
35
+ continuous-delivery-fallback-tag : ci
36
+ tag-prefix : ' [vV]'
37
+ major-version-bump-message : ' \+semver:\s?(breaking|major)'
38
+ minor-version-bump-message : ' \+semver:\s?(feature|minor)'
39
+ patch-version-bump-message : ' \+semver:\s?(fix|patch)'
40
+ no-bump-message : ' \+semver:\s?(none|skip)'
41
+ legacy-semver-padding : 4
42
+ build-metadata-padding : 4
43
+ commits-since-version-source-padding : 4
44
+ commit-message-incrementing : Enabled
45
+ ignore :
46
+ sha : []
47
+ commits-before : yyyy-MM-ddTHH:mm:ss
48
+ ` ` `
49
+
50
+ The options are:
29
51
30
52
- **` next-version:`** Allows you to bump the next version explicitly, useful
31
53
for bumping `master` or a feature with breaking changes a major increment.
You can’t perform that action at this time.
0 commit comments