Interface GitInformation
Hierarchy
- GitInformation
Properties
Current branch
git symbolic-ref --short HEAD
Current commit reference
git rev-parse HEAD
Current commit short reference
git rev-parse --short HEAD
Current tag name that match the package version
Return all tags that point to the current HEAD
git tag --points-at HEAD
Current version as return by package.json with auto snapshot
If the version return by package is not in the current tags
, the version is
incremented to the next patch version with a +{date}
Example:
with package.json version = "1.1.0" name = "mypackage" if a tag "v1.1.0" or "mypackage@1.1.0" then version = "1.1.0" else version = "1.1.1+20201110163014178"
Generated using TypeDoc
Return the gather information from the repository