2017-06-22 7 views

答えて

32

1.すべてのローカルタグを削除します。 (オプションの推奨)

git tag -d $(git tag -l) 

2.リモートからすべてのタグを取得します。 (任意推奨)

git fetch 

3.すべてのリモートタグを削除します。

git push origin --delete $(git tag -l) # Pushing once should be faster than multiple times 

4.すべてのローカルタグを削除します。

git tag -d $(git tag -l) 
関連する問題