git 把项目托管到 码云出现的错误集合

分享一下我git项目时碰见的错误

1、error: could not lock config file D:/orcad/Cadence/SPB_Data/.gitconfig: No suchfile or directory

在下载git后设置用户名、邮箱时会出现的错误

需要去修改环境变量,这个之前写好了,可以跳转看看

Git配置error:could not lock config file D:/orcad/Cadence/SPB_Data/.gitconfig: No suchfile or directory_打不着的大喇叭的博客-CSDN博客https://blog.csdn.net/weixin_49931650/article/details/132416285?spm=1001.2014.3001.5501


2、error: could not lock config file D:/Git/.gitconfig: Permission denied

需要权限去修改,也在下面这篇博客中

Git配置error:could not lock config file D:/orcad/Cadence/SPB_Data/.gitconfig: No suchfile or directory_打不着的大喇叭的博客-CSDN博客https://blog.csdn.net/weixin_49931650/article/details/132416285?spm=1001.2014.3001.5501


3、Saving key "//.ssh/id_rsa" failed: No such file or directory

保存键"//.ssh/id_rsa" failed:没有这样的文件或目录

这个是 在****生成一个 SSH 密钥对时出现的,你应该看看你是否有 .ssh 文件夹,没有就手动创建一下

打开git bash,输入下面命令,生成 ssh 密钥对

javascript 复制代码
输入你的邮箱
ssh-keygen -t rsa -C "xxx@xx.com"

注意:在上面,可能别的博客直接三个回车就行,我的不行,注意框框的内容,是这个就的在后面加上自己的路径,注意:可能你users文件夹下面不是hp,还是看看你自己的是什么


4、fatal: detected dubious ownership in repository at 'C:/Users/hp/Desktop/uniapp/u ni-shop' 'C:/Users/hp/Desktop/uniapp/uni-shop' is owned by: 'S-1-5-32-544' but the current user is: 'S-1-5-21-1168948249-367101185-590610256-1001' To add an exception for this directory, call: git config --global --add safe.directory C:/Users/hp/Desktop/uniapp/uni- shop

出现了下面这个东西,这个错误提示是由于 Git 检测到了一个具有可疑所有权的仓库,并且当前用户与该仓库的所有者不匹配

为了解决这个问题,Git 提供了添加目录例外的配置选项。你可以使用以下命令向全局 Git 配置中添加一个安全目录的例外:

javascript 复制代码
注意:不要复制我的,如果你出现上图错误,你按照他给出的填
git config --global --add safe.directory C:/Users/hp/Desktop/uniapp/uni-shop

执行上述命令,Git 将会忽略这个目录的所有权检查,使得你可以正常地进行操作和提交。


5、git@gitee.com: Permission denied (publickey)

ssh -v git@gitee.com

ssh-agent -s

ssh-add ~/.ssh/id_rsa

eval `ssh-agent -s`

ssh-add /c/Users/hp/.ssh/id_rsa    注意:写你的实际路径

ssh -t git@git.com

照着上面敲,然后把 密匙 重新提交到码云,就可以了

6、error: remote origin already exists.

我们在上传项目时执行下面命令报的错

git remote add origin git@gitee.com:gbaes/uni-shop2.git

解决方法:

1、删除现有的远程仓库: 
git remote rm origin

2、建立新的远程仓库地址: 
git remote add origin + 远程仓库地址

远程仓库地址,可以看 你码云 对应仓库的ssh,如下:

还有一些错误,当时没有记录,先这样,哭死!!!

相关推荐
hairenjing112318 分钟前
在 Android 手机上从SD 卡恢复数据的 6 个有效应用程序
android·人工智能·windows·macos·智能手机
GIS程序媛—椰子31 分钟前
【Vue 全家桶】7、Vue UI组件库(更新中)
前端·vue.js
DogEgg_00137 分钟前
前端八股文(一)HTML 持续更新中。。。
前端·html
ZL不懂前端40 分钟前
Content Security Policy (CSP)
前端·javascript·面试
木舟100944 分钟前
ffmpeg重复回听音频流,时长叠加问题
前端
王大锤43911 小时前
golang通用后台管理系统07(后台与若依前端对接)
开发语言·前端·golang
我血条子呢1 小时前
[Vue]防止路由重复跳转
前端·javascript·vue.js
黎金安1 小时前
前端第二次作业
前端·css·css3
啦啦右一1 小时前
前端 | MYTED单篇TED词汇学习功能优化
前端·学习