标签: git repository
我正在使用git和repo。合并后,我总是推动标签。 有什么方法我可以确认我推动的标签存在于所有回购中。有没有可以做同样的脚本??
答案 0 :(得分:0)
您可以使用git ls-remote --tags <repository>,如“Get last git tag from a remote repo without cloning”所示。
git ls-remote --tags <repository>
您需要为要检查的所有远程回购重复该命令 您需要过滤结果才能exclude unreferenced tag。