当前位置: 代码迷 >> 综合 >> git提交报configuration specifies to merge with the ref ‘’refs/heads/master‘
  详细解决方案

git提交报configuration specifies to merge with the ref ‘’refs/heads/master‘

热度:51   发布时间:2023-11-03 15:18:23.0

问题

建立新的分支,当咱们执行git pull,出现以下错误git
configuration specifies to merge with the ref ‘’refs/heads/master’

解决

1、切换到主分支(或者被依赖的分支,也就是你从哪一个分支上拉取新的分支)

git checkout master

2、执行命令初始化仓库分支

git init
git pull

3、切换到新的分支

git checkout main

4、执行提示的命令

git branch --unset-upstream

5、执行命令

git push origin master
git pull

6、执行命令

git branch --set-upstream-to=origin
  相关解决方案