赞
踩
初次使用:
git init
git remote add origin http://github.com/仓库地址
git add .
git commit -m '备注'
git push orgin 分支名
或强制推送git push orgin 分支名 --force
连接到仓库、同步到本地:
git init
git remote add origin http://github.com/仓库地址
git pull origin "分支名"
更改部分代码后提交:
git status
或者git status -s
git add .
git commit -m '备注'
git pull origin "分支名"
或使用git fetch origin 分支名
git push orgin 分支名
或强制推送git push orgin 分支名 --force
登录命令:
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
使用vscode提交代码,提示错误如下。
问题: 仓库代码和本地代码存在冲突
解决办法:
手动解决
①git stash 先将本地修改存储起来
②git pull 拉取远程
③git stash pop 还原暂存内容
放弃本地修改,直接覆盖
①git reset --hard
②git pull
问题: 一般是这是因为服务器的SSL证书没有经过第三方机构的签署,所以才报错
解决方法: 输入
git config --global http.sslVerify "false"
解除ssl验证后,再次git即可
问题: 解决 “OpenSSL SSL_read: Connection was reset, errno 10054”后出现的错误,因为双引号错误。
解决方法: 搜索”.gitconfig“文件,配置:
[http]
sslVerify = “false”
修改为
[http]
sslVerify = false
问题: 网络问题
解决方法:
git config --global --unset http.proxy
git config --global --unset https.proxy
用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面板的拉取推送等正常功能
问题: 提示说没有.git这样一个目录
解决方法: 输入命令“git init”
问题: 在控制台用git push origin 分支名
和git push origin 分支名 --force
推送到远程仓库,报错:
解决方法: 没找到原因,把git文件夹删了,重新弄了一遍,用–force就可以了
问题: 在git push的时候出现
**解决:**出现这个问题就是git和你账号链接有问题,主要检查两个地方:
git config --list
,检查用户名和密码问题: vscode初始化仓库分支名是master,如图位置,提交到仓库报错没有这个分支,需要把它改成main或者其他
解决方法: 输入快捷键:CTRL + SHIFT + P,窗口里搜索rename ,点 “Git:重命名分支”,输入“main”回车。
使用命令“git commit”之后,弹出文件“COMMIT MESAGE”窗口,并显示:
hint: Waiting for your editor to close the file...
直接关闭窗口,显示:
Aborting commit due to empty commit message.
问题: 没提交注释信息
解决方法: 使用命令 git commit -m '注释'
提交
问题: 拉取代码时,路由文件发生冲突,解决此文件冲突后,再次拉取,报错。
解决: https://blog.csdn.net/L_smwy/article/details/121400574
问题: node.js里的组件包,文件太多太碎,怎么让git忽略这个文件夹
解决: 在项目的根目录中创建.gitignore文件,然后在其中添加node_modules一行,告诉git忽略该文件夹
参考这个:https://blog.csdn.net/codark/article/details/108668311
总结:vscode的仓库界面不太好用,因为网络或者各种原因总是报错,还得是用命令行。
吐槽:我不懂为啥网上的git教程都那么复杂,很多人就是用个同步功能,贴那么多原理有必要吗
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。