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
[x]
If the repository has tag e.g. a/v1 and also tag v1, then the later one cause problems with gitea. For git itself, it is completely valid scenerio.
a/v1
v1
Gitea receives the tag but reports
remote: Gitea: Internal Server Error remote: Failed to Update: tagtest/tagtest1 Branch: v1 Error: PushUpdateAddTag: GetTag: object does not exist [id: v1, rel_path: ]
Tag is later not shown in releases but can be directly accessed by typing correct URL for tag a/v1 https://try.gitea.io/tagtest/tagtest1/src/tag/a/v1 for tag v1 https://try.gitea.io/tagtest/tagtest1/src/tag/v1
mkdir test cd test git init git commit -m a git tag a/v1 git tag v1 git remote add origin https://try.gitea.io/tagtest/tagtest2.git git push -u origin master git push --tags
This cause an error and tag v1 is not visible in the UI but it should be.
The text was updated successfully, but these errors were encountered:
Possibly related to #7945
Sorry, something went wrong.
After investigation, it is duplicate, so closing it.
I must reopen the issue, because it was not duplicate. PR #7990 is wrong solution and issue #7945 is closed.
Good catch. Yeah, the other issue was dealing with a branch with a similar name. Glad @guillep2k made a good fix for this.
Successfully merging a pull request may close this issue.
[x]
):Description
If the repository has tag e.g.
a/v1
and also tagv1
, then the later one cause problems with gitea. For git itself, it is completely valid scenerio.Gitea receives the tag but reports
Tag is later not shown in releases but can be directly accessed by typing correct URL
for tag
a/v1
https://try.gitea.io/tagtest/tagtest1/src/tag/a/v1for tag
v1
https://try.gitea.io/tagtest/tagtest1/src/tag/v1Steps to reproduce
This cause an error and tag
v1
is not visible in the UI but it should be.The text was updated successfully, but these errors were encountered: