すでにプッシュされているgitタグを削除するにはどうすればよいですか?すべてのgit remote(Origin)タグを削除し、すべてのgit localタグを削除します。
git tag -d $(git tag -l)
git fetch
git Push Origin --delete $(git tag -l) # Pushing once should be faster than multiple times
git tag -d $(git tag -l)
コマンドプロンプトを使用するウィンドウの場合:
ローカルタグの削除:
for /f "tokens=* delims=" %a in ('git tag -l') do git tag -d %a
リモートタグの削除:
for /f "tokens=* delims=" %a in ('git tag -l') do git Push --delete Origin %a