0


【GIT】使用Vscode同步git仓库,错误和解决方法记录

这里写目录标题

命令行操作仓库常见命令

初次使用:

  1. 在github或者gitee新建一个仓库
  2. 进入项目目录
  3. 初始化(生成.git目录):git init
  4. 连接远程仓库:git remote add origin http://github.com/仓库地址
  5. 所有文件加入暂存区:git add .
  6. 提交到本地仓库: git commit -m '备注'
  7. 推送到远程仓库:git push orgin 分支名或强制推送git push orgin 分支名 --force

连接到仓库、同步到本地:

  1. 进入项目目录
  2. 初始化(生成.git目录):git init
  3. 连接远程仓库:git remote add origin http://github.com/仓库地址
  4. 从远程仓库拉取文件:git pull origin "分支名"

更改部分代码后提交:

  1. 查看状态:git status或者git status -s
  2. 所有不同的文件加入暂存区:git add .
  3. 提交到本地仓库: git commit -m '备注'
  4. 从远程仓库拉取文件:git pull origin "分支名"或使用git fetch origin 分支名
  5. 推送到远程仓库:git push orgin 分支名或强制推送git push orgin 分支名 --force

1 报错“在签出前,请清理存储库工作树。”

使用vscode提交代码,提示错误如下。
在这里插入图片描述

问题: 仓库代码和本地代码存在冲突

解决办法:

  1. 手动解决 ①git stash 先将本地修改存储起来 ②git pull 拉取远程 ③git stash pop 还原暂存内容
  2. 放弃本地修改,直接覆盖 ①git reset --hard ②git pull

2 报错“fatal: unable to access ‘https://github.com/…’: OpenSSL SSL_read: Connection was reset, errno 10054”

问题: 一般是这是因为服务器的SSL证书没有经过第三方机构的签署,所以才报错
解决方法: 输入

git config --global http.sslVerify "false"

解除ssl验证后,再次git即可

3 报错“fatal: bad boolean config value ‘“false”’ for ‘http.sslverify’”

问题: 解决 “OpenSSL SSL_read: Connection was reset, errno 10054”后出现的错误,因为双引号错误。
解决方法: 搜索”.gitconfig“文件,配置:

[http]
    sslVerify = “false”

修改为

[http]
    sslVerify = false

4 报错“Git:fatal:unable to accesshttps://github.com/…':Failed toconnect to github.com port 443 after 21086 ms:Timed out”

在这里插入图片描述
问题: 网络问题
解决方法:

  1. 关梯子
  2. 取消全局代理:
git config --global --unset http.proxy
git config --global --unset https.proxy

5 报错“fatal: ‘origin’ does not appear to be a git repository”

用vscode的仓库面板第一次推送代码很容易出现问题,比如使用“git push -u origin master”命令的时候

$ git push -u origin master
fatal: 'origin' does not appear to be a git repository
fatal: Could not read from remote repository.

使用“git remote -v”看一下远程仓库情况:
在这里插入图片描述
正常应该是这样,前面是origin:
在这里插入图片描述
所以删除代码文件夹里的隐藏.git文件夹重新连接远程仓库,用代码行连接好之后,再用vscode面板的拉取推送等正常功能
在这里插入图片描述

6 报错“fatal: Not a git repository (or any of the parent directories): .git”

问题: 提示说没有.git这样一个目录
解决方法: 输入命令“git init”

7 在vscode里修改分支名

问题: vscode初始化仓库分支名是master,如图位置,提交到仓库报错没有这个分支,需要把它改成main或者其他
在这里插入图片描述
解决方法: 输入快捷键:CTRL + SHIFT + P,窗口里搜索rename ,点 “Git:重命名分支”,输入“main”回车。
在这里插入图片描述

8 命令“git commit”之后弹出窗口并“hint: Waiting for your editor to close the file…”

使用命令“git commit”之后,弹出文件“COMMIT MESAGE”窗口,并显示:

hint: Waiting for your editor to close the file...

直接关闭窗口,显示:

Aborting commit due to empty commit message.

问题: 没提交注释信息
解决方法: 使用命令

git commit -m '注释' 

提交

9 命令“git pull”之后报错“error: You have not concluded your merge (MERGE_HEAD exists).”

问题: 拉取代码时,路由文件发生冲突,解决此文件冲突后,再次拉取,报错。
解决: https://blog.csdn.net/L_smwy/article/details/121400574

总结

vscode的仓库界面不太好用,因为网络或者各种原因总是报错,还得是用命令行

标签: git vscode github

本文转载自: https://blog.csdn.net/FAAAAAAAN/article/details/128971857
版权归原作者 一别如斯AA 所有, 如有侵权,请联系我们删除。

“【GIT】使用Vscode同步git仓库,错误和解决方法记录”的评论:

还没有评论