删除不再位于远程存储库中的本地git标记

时间:2009-12-03 17:01:42

标签: git git-tag

我们在git中使用标签作为部署过程的一部分。有时,我们希望通过从远程存储库中删除它们来清理这些标记。

这非常简单。一个用户在一组命令中删除本地标签和远程标签。我们有一个结合了两个步骤的小shell脚本。

第二个(第3个,第4个......)用户现在拥有不再反映在遥控器上的本地标签。

我正在寻找类似于git remote prune origin的命令,它可以清除本地跟踪已删除远程分支的分支。

或者,可以使用列出远程标记的简单命令来比较通过git tag -l返回的本地标记。

16 个答案:

答案 0 :(得分:926)

这是一个很好的问题,我一直想知道同样的事情。

我不想写一个脚本,所以寻求一个不同的解决方案。关键是发现你可以在本地删除标签,然后使用git fetch从远程服务器“取回”。如果遥控器上不存在该标签,则该标签将保持删除状态。

因此,您需要按顺序键入两行:

git tag -l | xargs git tag -d
git fetch --tags

这些:

  1. 从本地存储库中删除所有标记。 FWIW,xargs将每个标记输出“tag -l”放在“tag -d”的命令行中。没有这个,git不会删除任何东西,因为它不会读取stdin(愚蠢的git)。

  2. 从远程仓库中获取所有活动标签。

  3. 这甚至适用于Windows。

答案 1 :(得分:224)

从Git v1.7.8到v1.8.5.6,您可以使用:

git fetch <remote> --prune --tags

更新

由于提交e66ef7ae6f31f2,这不适用于较新版本的git(从v1.9.0开始)。我真的不想删除它,因为它确实对一些人有效。

根据“Chad Juliano”的建议,自v1.7.8以来的所有Git版本,您可以使用以下命令:

git fetch --prune <remote> +refs/tags/*:refs/tags/*

您可能需要用引号括起标记部分(例如在Windows上)以避免通配符扩展:

git fetch --prune <remote> "+refs/tags/*:refs/tags/*"

答案 2 :(得分:140)

如果您只想要遥控器上存在的那些标签,只需删除所有本地标签:

$ git tag -d $(git tag)

然后获取所有远程标记:

$ git fetch --tags

答案 3 :(得分:73)

自v1.7.8以来的所有Git版本都使用refspec了解git fetch,而自v1.9.0起,--tags选项会覆盖--prune选项。对于通用解决方案,请尝试以下方法:

$ git --version
git version 2.1.3

$ git fetch --prune origin "+refs/tags/*:refs/tags/*"
From ssh://xxx
 x [deleted]         (none)     -> rel_test

如需进一步阅读Git v1.9.0中“--tags”与“--prune”行为的变化,请参阅:https://github.com/git/git/commit/e66ef7ae6f31f246dead62f574cc2acb75fd001c

答案 4 :(得分:61)

好问题。 :)我没有完整的答案...

也就是说,您可以通过git ls-remote获取远程标签列表。要列出origin引用的存储库中的标记,您需要运行:

git ls-remote --tags origin

返回哈希和友好标签名称列表,如:

94bf6de8315d9a7b22385e86e1f5add9183bcb3c        refs/tags/v0.1.3
cc047da6604bdd9a0e5ecbba3375ba6f09eed09d        refs/tags/v0.1.4
...
2f2e45bedf67dedb8d1dc0d02612345ee5c893f2        refs/tags/v0.5.4

您当然可以组合一个bash脚本来比较此列表生成的标记与本地标记。请查看git show-ref --tags,其生成的标记名称与git ls-remote相同。


顺便说一句,git show-ref有一个与你想要的相反的选项。以下命令将列出您在本地的远程分支上的所有标记:

git ls-remote --tags origin | git show-ref --tags --exclude-existing

答案 5 :(得分:28)

看起来像最新版本的Git(我在git v2.20上),可以简单地说

git fetch --prune --prune-tags

干净得多!

https://git-scm.com/docs/git-fetch#_pruning

您还可以将git配置为在提取时始终修剪标签:

git config fetch.pruneTags true

如果仅在从特定的远程站点获取消息时修剪标签,则可以使用remote.<remote>.pruneTags选项。例如,要在从来源而不是其他远程获取时始终修剪标签,

git config remote.origin.pruneTags true

答案 6 :(得分:7)

这是一个很好的方法:

git tag -l | xargs git tag -d && git fetch -t

来源:demisx.GitHub.io

答案 7 :(得分:7)

Git本身支持清理本地标记:

git fetch --tags --prune

此命令会提取最新的标签并删除所有已删除的标签。

答案 8 :(得分:7)

我知道我参加晚会很晚,但是现在有一个快速的答案:

git fetch --prune --prune-tags # or just git fetch -p -P

是的,现在可以提取。

如果您不想获取,只修剪:

git remote prune origin

答案 9 :(得分:4)

显示本地和远程标记之间的区别:

diff <(git tag | sort) <( git ls-remote --tags origin | cut -f2 | grep -v '\^' | sed 's#refs/tags/##' | sort)
  • git tag提供了本地代码列表
  • git ls-remote --tags提供了远程标记的完整路径列表
  • cut -f2 | grep -v '\^' | sed 's#refs/tags/##'仅解析远程标记路径列表中的标记名称
  • 最后,我们对两个列表中的每一个进行排序并将它们区分开来

以&#34开头的行;&lt; &#34;是您的本地标记不再在远程仓库中。如果它们很少,你可以逐个手动删除它们,如果它们很多,你可以做更多的grep-ing和管道来自动化它。

答案 10 :(得分:3)

刚刚在GitHub上向pivotal_git_scripts Gem fork添加了一个git sync-local-tags命令:

https://github.com/kigster/git_scripts

安装gem,然后在存储库中运行“git sync-local-tags”以删除遥控器上不存在的本地标记。

或者您可以在下面安装此脚本并将其命名为“git-sync-local-tags”:


#!/usr/bin/env ruby

# Delete tags from the local Git repository, which are not found on 
# a remote origin
#
# Usage: git sync-local-tags [-n]
#        if -n is passed, just print the tag to be deleted, but do not 
#        actually delete it.
#
# Author: Konstantin Gredeskoul (http://tektastic.com)
#
#######################################################################

class TagSynchronizer
  def self.local_tags
    `git show-ref --tags | awk '{print $2}'`.split(/\n/)
  end

  def self.remote_tags
    `git ls-remote --tags origin | awk '{print $2}'`.split(/\n/)
  end

  def self.orphaned_tags
    self.local_tags - self.remote_tags
  end

  def self.remove_unused_tags(print_only = false)
    self.orphaned_tags.each do |ref|
      tag = ref.gsub /refs\/tags\//, ''
      puts "deleting local tag #{tag}"
      `git tag -d #{tag}` unless print_only
    end
  end
end

unless File.exists?(".git")
  puts "This doesn't look like a git repository."
  exit 1
end

print_only = ARGV.include?("-n")
TagSynchronizer.remove_unused_tags(print_only)

答案 11 :(得分:2)

TortoiseGit现在可以比较标签。

左侧日志位于远程,右侧位于本地。

enter image description here

使用“同步”对话框的“比较标记”功能:

enter image description here

另见TortoiseGit issue 2973

答案 12 :(得分:1)

这个怎么样 - 删除所有本地标签,然后重新获取? 考虑到你的repo可能包含子模块:

git submodule foreach --recursive  'git tag | xargs git tag -d'
(alternatively, "for i in `find .git  -type d -name '*tags*'`; do rm -f $i/*;  done")
git fetch -t
git submodule foreach --recursive git fetch -t

答案 13 :(得分:1)

与@Richard W相同的答案,但适用于Windows(PowerShell)

git tag | foreach-object -process { git tag -d $_ }
git fetch -t

答案 14 :(得分:1)

在新的git版本中(如v2.26.2)

-P,--prune-tags 提取之前,如果启用了--prune,请删除远程服务器上不再存在的所有本地标签。与--prune不同,应该更谨慎地使用此选项,它将删除所有本地引用(本地标签) 已经创建的。此选项是提供显式标签refspec和--prune的简写,请参阅其文档中的讨论。

所以您需要运行:

git fetch august --prune --prune-tags

答案 15 :(得分:0)

我在MacOS上将命令添加为SourceTree作为自定义操作。


通过Custom Actions-> Sourcetree-> Preferences...

设置Custom Actions


Script to run必须是git路径。

我使用git fetch --prune --prune-tags origin将标签从远程同步到本地。

enter image description here enter image description here