git权限报错error: insufficient permission for adding an object to repository database

Posted HeavyShell

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git权限报错error: insufficient permission for adding an object to repository database相关的知识,希望对你有一定的参考价值。

➜  atd git:(b4.232) ✗ git pull
remote: Counting objects: 78, done.
remote: Compressing objects: 100% (77/77), done.
remote: Total 78 (delta 60), reused 0 (delta 0)
error: insufficient permission for adding an object to repository database .git/objects
fatal: failed to write object
fatal: unpack-objects failed

git报错 insufficient permission for adding an object to repository database 

出现的原因是:没有版本库所在目录的写权限,导致新的文件无法上传。

所以注意,在使用

sudo git init --bare xx.git

创建一个版本库之后,需要把权限调整一下,不然使用sudo创建后,是需要root权限的。

更改xx.git版本库的权限命令:

sudo chown -R user:group xx.git

或只有用户无组的情况

chown -R user: xx.git

参考链接:

https://www.cnblogs.com/lipijin/p/4222164.html

https://blog.csdn.net/chenghuan1990/article/details/82460160

 

以上是关于git权限报错error: insufficient permission for adding an object to repository database的主要内容,如果未能解决你的问题,请参考以下文章

gitlab-登录账户遇到ERROR: Permission to XXX.git denied to user报错怎么办

Jenkins报错Error fetching remote repo ‘origin‘真正解决办法

Git 报错 error setting certificate verify locations

使用 Git 报错 error: src refspec master matches more than one.

git push报错error: failed to push some refs to 'git@github.com:

git推送到github报错:error: The requested URL returned error: 403 Forbidden while accessing https://github