我想從Git存儲庫中刪除所有標籤。我怎樣才能做到這一點?刪除Git存儲庫中的所有標籤
使用git tag -d tagname
在本地刪除標記tagname
,並使用git push --tags
我更新了git提供程序上的標記。
我想:
git tag -d *
但我看到*
指從當前目錄中的文件。
$ git tag -d *
error: tag 'file1' not found.
error: tag 'file2' not found.
...
考慮我有很多標籤,我想刪除它們,所有。
謝謝。該命令刪除本地標籤。我使用了'git tag -l | xargs -n 1 git push --delete origin'將它們從遠程刪除。 –
@Johnツ很高興你能掌握linux的哲學:P –
並在Windows上? – CoDEmanX