vscode关联gitee报错:git:fatal:no configured push destination

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vscode关联gitee报错:git:fatal:no configured push destination相关的知识,希望对你有一定的参考价值。

参考技术A vscode第一次关联gitee时会报一个错误,vscode会弹一个错误框:git:fatal:no configured push destination
解决办法如下:

git fatal: branch ‘master‘ does not exist

问题重现

  1. 先在一个空文件夹里右击,然后点击 git bash here

在这里插入图片描述

  1. 输入下面命令

git init

在这里插入图片描述

  1. 我们假设要关联一个远程分支 https://gitee.com/kaimo313/webgl-demo.git

执行下面命令

git remote add origin https://gitee.com/kaimo313/webgl-demo.git

在这里插入图片描述

  1. 再执行拉取代码命令
git pull

不出意外就会报下面的提示

在这里插入图片描述

  1. 输入提示的命令
git branch --set-upstream-to=origin/master master

然后就会提示出来这个问题 fatal: branch 'master' does not exist

在这里插入图片描述

原因

出现这个问题原因就是本地没有 master 分支导致的。

输入 git branch -a。发现只有远程分支。

在这里插入图片描述

解决

解决方式就是:输入 git checkout master

在这里插入图片描述

出现 Already on 'master' ,Branch 'master' set up to track remote branch 'master' from 'origin'.,说明已经切换到 master 上。

再次输入 git branch -a。发现已经有本地分支

在这里插入图片描述

在用 git branch -avvv 查看

  • 【a:查看所有分支】
  • 【v:每个分支的最后一个提交(commit)】
  • 【vv:本地分支与远程分支的关联关系】

在这里插入图片描述

以上是关于vscode关联gitee报错:git:fatal:no configured push destination的主要内容,如果未能解决你的问题,请参考以下文章

GIt -- fatal: refusing to merge unrelated histories 问题处理

git fatal: remote origin already exists. 报错解决

git fatal: http request failed解决办法

npm install 报“https://github.com.cnpmjs.org/nhn/raphael.git“ fatal: unable to access ‘https://异常解决记录

npm install 报“https://github.com.cnpmjs.org/nhn/raphael.git“ fatal: unable to access ‘https://异常解决记录

安装oh-my-zsh报错fatal: gnutls_handshake() failed: Error in the pull function的解决办法