当前位置:   article > 正文

git push报错:The current branch master has no upstream branch_fatal: the current branch master has no upstream b

fatal: the current branch master has no upstream branch.

简介: git push报错:The current branch master has no upstream branch

问题

进行git push操作时报错:fatal: The current branch master has no upstream branch.

在这里插入图片描述

原因:没有将本地的分支与远程仓库的分支进行关联
通过git branch查看本地分支只有master

在这里插入图片描述

通过git branch -a查看远程分支,有masterremotes/origin/master两个

在这里插入图片描述

这时由于远程仓库太多,且分支较多。在默认情况下,git push时一般会上传到origin下的master分支上,然而当repositorybranch过多,而又没有设置关联时,git就会产生疑问,因为它无法判断你的push目标

解决

方式一
使用git push --set-upstream origin master命令

方式二
使用git push -u origin master命令

原文git push报错:The current branch master has no upstream branch

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/891442
推荐阅读
相关标签
  

闽ICP备14008679号