I am trying to format with `git-semver -format x.y.z.p` to get a 4 digit number e.g. if the tag is 1.2.3-dev I would like to have the number 1.2.3.0 and on the next commit to get 1.2.3.1 How could I achieve that?
I am trying to format with
git-semver -format x.y.z.pto get a 4 digit number
e.g. if the tag is 1.2.3-dev
I would like to have the number
1.2.3.0
and on the next commit to get
1.2.3.1
How could I achieve that?