我们在git中使用标签作为部署过程的一部分。有时,我们希望通过从远程存储库中删除这些标记来清理它们。
这很简单。一个用户在一组命令中删除了本地标签和远程标签。我们有一个结合了这两个步骤的shell脚本。
第二个(第3个,第4个,……)用户现在拥有不再反映在远程上的本地标记。
我正在寻找一个类似于git远程修剪起源的命令,清理本地跟踪分支,其中远程分支已被删除。
或者,可以使用一个简单的命令来列出远程标记,与通过git tag -l返回的本地标记进行比较。
我们在git中使用标签作为部署过程的一部分。有时,我们希望通过从远程存储库中删除这些标记来清理它们。
这很简单。一个用户在一组命令中删除了本地标签和远程标签。我们有一个结合了这两个步骤的shell脚本。
第二个(第3个,第4个,……)用户现在拥有不再反映在远程上的本地标记。
我正在寻找一个类似于git远程修剪起源的命令,清理本地跟踪分支,其中远程分支已被删除。
或者,可以使用一个简单的命令来列出远程标记,与通过git tag -l返回的本地标记进行比较。
当前回答
我知道我迟到了,但现在有一个快速的答案:
git fetch --prune --prune-tags # or just git fetch -p -P
是的,它现在是一个获取的选项。
如果你不想获取,只需修剪:
git remote prune origin
其他回答
刚刚在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)
自v1.7.8以来的所有版本的Git都理解使用refspec来获取Git,而自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
有关“——tags”和“——prune”行为在Git v1.9.0中如何改变的进一步阅读,请参见:https://github.com/git/git/commit/e66ef7ae6f31f246dead62f574cc2acb75fd001c
看起来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
与@Richard W的答案相同,但适用于Windows (PowerShell)
git tag | ForEach-Object -Process { git tag -d $_ }
git fetch -t
Git本身支持清除本地标记
git fetch --tags --prune-tags
该命令提取最新的标记并删除所有已删除的标记