python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
List all annotated tags, with annotation, sorted by commit date
It seems easy to list all tags with annotations, with e.g.:
git tag -n99
or
git for-each-ref --format '%(refname:short) %(contents)' refs/tags
And it's also possible to use git log to list tags by c...
naught101
Votes: 0
Answers: 1
How to verify good signature of a git signed tag without using command "git verify-tag"
I made a git signed tag, using this command:
git tag -s <tag>
Is there another alternatives to check the signature of this tag without using the command:
git verify-tag <tag> or git tag -v...
Joker
Votes: 0
Answers: 0
How can I display the version number in git for the hash value of a tag?
I am working on the PowerShell right now and would like to display the version and if possible the description of a tag from which I get the hash value. By version I mean something like 55.1.
How can ...
HawkClear
Votes: 0
Answers: 1