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
The idea is to retrieve a list of tags associated with a commit.
In Git you can use git describe --tags --exact-match <COMMIT ID>
git describe --tags --exact-match <COMMIT ID>
In Bzr you can use bzr tags -r <COMMIT ID>
bzr tags -r <COMMIT ID>
In Hg you can use hg log -r <COMMIT ID> --style=xml. A tag will be present if one is associated with the commit.
hg log -r <COMMIT ID> --style=xml
In SVN we aren't supporting tags since they are part of the path.
The text was updated successfully, but these errors were encountered:
Implements #19: Retrieve Tags For A Commit
d93703f
Merge pull request #27 from Masterminds/feat/commit-tags
591ce24
This was implemented by #27
Sorry, something went wrong.
No branches or pull requests
The idea is to retrieve a list of tags associated with a commit.
In Git you can use
git describe --tags --exact-match <COMMIT ID>
In Bzr you can use
bzr tags -r <COMMIT ID>
In Hg you can use
hg log -r <COMMIT ID> --style=xml
. A tag will be present if one is associated with the commit.In SVN we aren't supporting tags since they are part of the path.
The text was updated successfully, but these errors were encountered: