Git:向存储库数据库添加对象的权限不足

时间:2022-12-04 15:20:06

I have git error: "insufficient permission for adding an object to repository database" every time I make "git push origin master".
I tried solution described here: http://parizek.com/2011/05/git-insufficient-permission-for-adding-an-object-to-repository-database-objects/ but it works only until next time...
Is there some permanent solution?

我有git错误:每次创建“git push origin master”时,“添加对象的权限不足”。我尝试了这里描述的解决方案:http://parizek.com/2011/05/git- in自足-permission-for-add -an-object- database-objects/,但它只在下次…有什么永久性的解决办法吗?

$ git push origin master
Counting objects: 5, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 1.19 KiB, done.
Total 3 (delta 2), reused 0 (delta 0)
error: insufficient permission for adding an object to repository database ./objects
fatal: failed to write object
error: unpack failed: unpack-objects abnormal exit
To ssh://user@git.code.sf.net/p/project/code
 ! [remote rejected] master -> master (n/a (unpacker error))
error: failed to push some refs to 'ssh://user@git.code.sf.net/p/project/code'

$ git config core.sharedRepository true

$ git push origin master
Counting objects: 5, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 1.19 KiB, done.
Total 3 (delta 2), reused 0 (delta 0)
error: insufficient permission for adding an object to repository database ./objects
fatal: failed to write object
error: unpack failed: unpack-objects abnormal exit
To ssh://user@git.code.sf.net/p/project/code
 ! [remote rejected] master -> master (n/a (unpacker error))
error: failed to push some refs to 'ssh://user@git.code.sf.net/p/project/code'

$ sudo chmod -R g+ws *
$ sudo chgrp -R andrey *
$ git push origin master
Counting objects: 5, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (3/3), 1.19 KiB, done.
Total 3 (delta 2), reused 0 (delta 0)
remote: <Repository /git/p/project/code.git> refresh queued.
To ssh://user@git.code.sf.net/p/project/code
   acd82d2..f401c90  master -> master

This is Ubuntu I use: 12.04.1, and git: 1.7.9.5

这是我使用的Ubuntu: 12.04.1和git: 1.7.9.5

2 个解决方案

#1


4  

As mentioned in "Error pushing to GitHub - insufficient permission for adding an object to repository database", you need, in addition of the git config setting, to:

如“错误推送到GitHub——向库库数据库添加对象的权限不足”中所提到的,除了git配置设置外,您还需要:

  • first set the umask for all your repos: umask 002 (so on your server side)
  • 首先为所有repos设置umask: umask 002(在服务器端)
  • then set the git group to rw as mentioned in your solution, still on the server side.
  • 然后将git组设置为rw,正如您的解决方案中提到的,仍然在服务器端。

#2


0  

That usually happens when someone commited to git while booing root. The .git/* files created in that process are protected from external change.

这通常发生在某人在booing root时开始使用git的时候。在该过程中创建的.git/*文件不受外部更改的影响。

chmod -R 777 .git 

is a fast fix.

是一个快速修复。

#1


4  

As mentioned in "Error pushing to GitHub - insufficient permission for adding an object to repository database", you need, in addition of the git config setting, to:

如“错误推送到GitHub——向库库数据库添加对象的权限不足”中所提到的,除了git配置设置外,您还需要:

  • first set the umask for all your repos: umask 002 (so on your server side)
  • 首先为所有repos设置umask: umask 002(在服务器端)
  • then set the git group to rw as mentioned in your solution, still on the server side.
  • 然后将git组设置为rw,正如您的解决方案中提到的,仍然在服务器端。

#2


0  

That usually happens when someone commited to git while booing root. The .git/* files created in that process are protected from external change.

这通常发生在某人在booing root时开始使用git的时候。在该过程中创建的.git/*文件不受外部更改的影响。

chmod -R 777 .git 

is a fast fix.

是一个快速修复。