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

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

第二个(第3个,第4个,……)用户现在拥有不再反映在远程上的本地标记。

我正在寻找一个类似于git远程修剪起源的命令,清理本地跟踪分支,其中远程分支已被删除。

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


当前回答

刚刚在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)

其他回答

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

diff <(git tag | sort) <( git ls-remote --tags origin | cut -f2 | grep -v '\^' | sed 's#refs/tags/##' | sort)

标记给出了本地标记的列表 Git ls-remote——tags给出了远程标记的完整路径列表 Cut -f2 | grep -v '\^' | sed 's#refs/tags/##'只从远程标签路径列表中解析出标签名 最后,我们对这两个表分别进行排序和区分

以“<”开头的行是不再在远程repo中的本地标记。如果它们很少,您可以逐个手动删除它们,如果它们很多,您可以做更多的grep-ing和管道来自动化。

我知道我迟到了,但现在有一个快速的答案:

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

是的,它现在是一个获取的选项。

如果你不想获取,只需修剪:

git remote prune origin

从Git v1.7.8到v1.8.5.6,你可以这样使用:

git fetch <remote> --prune --tags

更新

这在较新的git版本(从v1.9.0开始)上不起作用,因为提交了e66ef7ae6f31f2。我并不想删除它,因为它确实对一些人有用。

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

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

你可能需要用引号将标签部分括起来(例如在Windows上),以避免通配符展开:

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

注意:在所有这些情况下,可能是“origin”或任何您通常引用的远程。

这样如何-删除所有本地标签,然后重新获取? 考虑到你的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

如果你只想要那些存在于远程的标签,只需删除所有本地标签:

$ git tag -d $(git tag)

然后获取所有远程标签:

$ git fetch --tags