我想从Git存储库中删除所有标记。我该怎么做呢?
使用git tag -d tagname在本地删除标签tagname,并使用git push——tags更新git provider上的标签。
我试着:
git tag -d *
但是我看到*表示当前目录中的文件。
$ git tag -d *
error: tag 'file1' not found.
error: tag 'file2' not found.
...
假设我有很多标签,我想全部删除它们。
我想从Git存储库中删除所有标记。我该怎么做呢?
使用git tag -d tagname在本地删除标签tagname,并使用git push——tags更新git provider上的标签。
我试着:
git tag -d *
但是我看到*表示当前目录中的文件。
$ git tag -d *
error: tag 'file1' not found.
error: tag 'file2' not found.
...
假设我有很多标签,我想全部删除它们。
当前回答
windows用户:
这将通过运行git tag并将该列表提供给git tag -d来删除所有本地标签:
FOR /f "tokens=*" %a in ('git tag') DO git tag -d %a
(网址:https://gist.github.com/RandomArray/fdaa427878952d9768b0)
其他回答
git tag | xargs git tag -d
简单地遵循Unix哲学,即管道处理所有内容。
在Windows上使用相同的命令使用git bash。
你还可以使用:
git tag -d $(git tag)
要删除远程标记(在删除本地标记之前),只需执行以下操作:
git tag -l | xargs -n 1 git push --delete origin
然后删除本地副本:
git tag | xargs git tag -d
在本地,git标记只是磁盘上存储在.git/refs/tags子文件夹中的文件。
你可以只cd .git/refs/tags并删除存储在那里的所有文件,使用你最喜欢的删除文件的方法(rm *,从文件资源管理器UI删除等)。
windows用户:
这将通过运行git tag并将该列表提供给git tag -d来删除所有本地标签:
FOR /f "tokens=*" %a in ('git tag') DO git tag -d %a
(网址:https://gist.github.com/RandomArray/fdaa427878952d9768b0)