Chcę usunąć wszystkie tagi z repozytorium Git. Jak mogę to zrobić?
Za git tag -d tagname
pomocą tagname
lokalnego usuwania tagu i za pomocą git push --tags
I aktualizuję tagi na dostawcy git.
Próbowałem:
git tag -d *
Ale widzę, że *
to oznacza pliki z bieżącego katalogu.
$ git tag -d *
error: tag 'file1' not found.
error: tag 'file2' not found.
...
Rozważ, że mam dużo tagów i chcę je wszystkie usunąć.
git tag -l | xargs -n 1 git push --delete origin
, aby usunąć je z pilota.