I use the GitVersion.yml file to configure the result of GitVersion command. For example I always add a
branches:
release:
increment: Patch
After releasing a 0.1.0 and additional commits - the git-version-plugin produces a 0.1.0-37-g2cf8fe5.dirty, but I expect a 0.1.1-37-g2cf8fe5.dirty. How can I tell the plugin to take care for the GitVersion.yml file to get the same result as GitVersion command?
I use the
GitVersion.yml
file to configure the result of GitVersion command. For example I always add aAfter releasing a
0.1.0
and additional commits - the git-version-plugin produces a0.1.0-37-g2cf8fe5.dirty
, but I expect a0.1.1-37-g2cf8fe5.dirty
. How can I tell the plugin to take care for theGitVersion.yml
file to get the same result as GitVersion command?Output of the gitversion command:
Thanks in advance, Oli