pkg / rock

Create semantic version tags for your Go packages, search and discover new packages
Apache License 2.0
50 stars 8 forks source link

rock tags does not show all tags #4

Open hhrutter opened 6 years ago

hhrutter commented 6 years ago

This should not be a duplicate of #3 since I am not using packed tags in http://github.com/hhrutter/pdfcpu but

rock tags

returns an incomplete tag list compared to

git tag -l

and for my checked out pkg/rock it returns an empty list.

Looks like an issue with gogits.

necrophonic commented 6 years ago

Hopefully addressed in pr #8

@hhrutter Cloning your repo and running patched code produces: (compared to git tag -l command - correct at time of writing)

$ rock tags
Existing Tags:
v0.0.7
v0.0.6
v0.0.5
v0.0.4
v0.0.3
v0.0.2
v0.0.1

$ git tag -l
v0.0.1
v0.0.2
v0.0.3
v0.0.4
v0.0.5
v0.0.6
v0.0.7

Order is reversed but all the tags seem to be there?