+1 vote
in Gitea by
How to fix Missing releases after migrating repository with tags

1 Answer

0 votes
by

To migrate an repository with all tags, you need to do two things:

  • Push tags to the repository:
 git push --tags
  • (Re-)sync tags of all repositories within Gitea:
gitea admin repo-sync-releases
...