VSCode拉取git分支报错:v1.1.0 (would clobber existing tag)的解决方法
Deshun 发布于 3年前 (2021-12-22) 1719℃ 评论(0) 赞 (1)
今天在线上修改了 Tags ,再使用 VSCode 里的 pull 拉取分支时报错:From http://git.... * branch dev &n...
Deshun 发布于 3年前 (2021-12-22) 1719℃ 评论(0) 赞 (1)
今天在线上修改了 Tags ,再使用 VSCode 里的 pull 拉取分支时报错:From http://git.... * branch dev &n...
Deshun 发布于 4年前 (2021-03-24) 1505℃ 评论(0) 赞 (0)
今天创建了一个项目,准备把它推到我的 GitLab 上,执行 git pull 的时候报错:fatal: refusing to merge unrelated histories原因是两个分支是两个不同的版本,具有不同的提交历史。解决方法:执行下面的命令,可以允许不相关历史提,强制合并:git pull origin ...
Deshun 发布于 4年前 (2021-01-28) 3825℃ 评论(0) 赞 (2)
今天运维把大家的 GitLab 账号按照规范统一整理了一下。在执行 git pull 、 git push 等命令是会报错:git clone https://gitlub.w3h5.com/ideshun/w3h5.git目测是权限的问题,银行账号被修改了,可以执行如下命令:git config --global credential.helper sto...