【git】would clobber existing tag 报错解决

问题

在用vscode的Git去pull代码的时候git弹窗报错,查看报错日志发现以下内容:

bash 复制代码
> git pull --tags origin feature/xxx-2.0.0
From 173.110.11.22:VV-WORK-FE/vv-desktop
 * branch                feature/xxx-2.0.0 -> FETCH_HEAD
 ! [rejected]            v1.7.7     -> v1.7.7  (would clobber existing tag)

原因

原因可能是删了原有的一个git tag,然后重新创建了一个相同名字的。

解决

强制刷新一下本地的tags

bash 复制代码
git fetch --tags -f
相关推荐
但老师7 小时前
Git遇到“fatal: bad object refs/heads/master - 副本”问题的解决办法
git
秃头女孩y7 小时前
git创建分支
git
研究是为了理解12 小时前
Git Bash 常用命令
git·elasticsearch·bash
DKPT12 小时前
Git 的基本概念和使用方式
git
Winston Wood16 小时前
一文了解git TAG
git·版本控制
喵喵先森16 小时前
Git 的基本概念和使用方式
git·源代码管理
xianwu54317 小时前
反向代理模块
linux·开发语言·网络·git
binishuaio20 小时前
Java 第11天 (git版本控制器基础用法)
java·开发语言·git
会发光的猪。20 小时前
如何在vscode中安装git详细新手教程
前端·ide·git·vscode
stewie61 天前
在IDEA中使用Git
java·git