2

I tagged my repository on gitlab. Then I updated my repository. Now I want to tag with same number to current repository.

Example; master ---> 1.0.0 branch (I updated master) master (merged with branch) Now I want to tag 1.0.0 this master

Didopoweer
  • 21
  • 1
  • Does this answer your question? [Replace remote tag with Git](https://stackoverflow.com/questions/20076233/replace-remote-tag-with-git) – Michael Delgado Dec 27 '22 at 16:11

1 Answers1

0

You cannot directly create a tag through GitLab Web pages.
You might try create it through a GitLab API call, but since you want to force replace an existing tag, that would fail as well.

That is why you have to update said existing tag locally first, and force push it.

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250