We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm looking for something that approximates subversion, which uses a dirty mark of 'M'.
I can get this via git describe on the command line
git describe --tags --always --first-parent --dirty=M --abbrev=0 r25718M
The text was updated successfully, but these errors were encountered:
seems like you would only have to make https://github.com/palantir/gradle-git-version/blob/develop/src/main/java/com/palantir/gradle/gitversion/VersionDetailsImpl.java#L51 configurable
Sorry, something went wrong.
Also, using git describe --tags --always --first-parent --dirty appends -dirty as opposed to .dirty like this plugin.
git describe --tags --always --first-parent --dirty
-dirty
.dirty
No branches or pull requests
What happened?
I'm looking for something that approximates subversion, which uses a dirty mark of 'M'.
I can get this via git describe on the command line
The text was updated successfully, but these errors were encountered: