Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm getting back an unusual error while trying to do a "git push" to my GitHub repository:

Counting objects: 8, done.
Delta compression using 2 threads.
Compressing objects: 100% (4/4), done.
Writing objects: 100% (5/5), 1.37 KiB, done.
Total 5 (delta 2), reused 0 (delta 0)
error: insufficient permission for adding an object to repository database ./objects

fatal: failed to write object
error: unpack-objects exited with error code 128
error: unpack failed: unpack-objects abnormal exit
To git@github.com:bixo/bixo.git
 ! [remote rejected] master -> master (n/a (unpacker error))
error: failed to push some refs to 'git@github.com:bixo/bixo.git'
  • After a clean clone from GitHub, I can edit/add/commit/push a modified file.
  • If I then repeat this a second time I get the above error.
  • I can push to other GitHub repositories just fine.
  • I've checked file/directory permissions on my side, and they seem OK.
  • I'm running git 1.6.2.3 on Mac OS X 10.5.8

The above repository was the source of my fun for a previous Stack Overflow question (SO 1904860), so maybe the GitHub repo got corrupted. The only similar issue I've found via searching was an unpack failed problem reported on github. Has anybody else run into this issue before, especially when not using GitHub?

share|improve this question
1  
Did you get the answer to your question? Is it the one that @syvex gave you? Because that answered really worked for me. – p.matsinopoulos Jan 19 '12 at 14:44

9 Answers

When you see this error outside of github, here's a remedy.

Got this from: http://mapopa.blogspot.com/2009/10/git-insufficient-permission-for-adding.html

ssh me@myserver
cd repository.git

sudo chmod -R g+ws *
sudo chgrp -R mygroup *

git repo-config core.sharedRepository true

After this the git daemon should use the group file permissions when writing to .git/objects.

share|improve this answer
+1 It worked for us. What's the 's' for in sudo chmod -R g+ws *? – Erik B Jul 7 '11 at 12:07
2  
This will allow any new files created by another user to maintain the group permissions of the root directory. Otherwise, you'll have errors pushing up to the repository. See setuid and setgid – syvex Jul 7 '11 at 17:05
I got the same error with Gitorious on Debian 6 and PHPStorm IDE, with this message "error: insufficient permission for adding an object to repository database .git/objects". I used this solution on the projects parent folder, works nice with the "+s trick". – Benj Apr 22 at 8:55

Usually this problem is caused by wrong user and group permissions on your git servers file-system. If your user is called "git" then the git repository has to be owned by him and also his group.

Example: Location of git repo: git@mygitserverxyz.com:path/to/repo.git

Then do a

sudo chown -R git:git repo.git/

This fixed the git insufficient permission error for me.

share|improve this answer
This did the trick. Thanks! – afEkenholm May 3 '11 at 15:17
I like how this is a simpler fix. Thx – Drew LeSueur Dec 14 '12 at 20:21
chown: invalid user: `git:git' – Alan Dert Apr 1 at 15:08

chmod should be chown, so the correct line is:

sudo chown -R gituser.gituser objects
share|improve this answer

OK - turns out it was a permissions problem on GitHub that happened during the fork of emi/bixo to bixo/bixo. Once Tekkub fixed these, it started working again.

share|improve this answer
what happened and how did you fix it? I know it was awhile ago... any ideas? – Metagrapher Jan 6 '12 at 15:48
1  
It was an issue on GitHub's side - so I don't know exactly what they did to fix it, just that "Tekkub" at GitHub said "I fixed the permissions" and then it worked. – kkrugler Jan 6 '12 at 18:34
Cool. Thanks for the info. I wound up re-cloning the repo. Suboptimal, but it worked. Cheers! – Metagrapher Jan 9 '12 at 17:09
1  
We, uh, we fixed the glitch. So he won't be receiving a paycheck anymore, so it'll just work itself out naturally. – Alan Feb 17 '12 at 23:36

Oddly enough, I had this issue on one clone of the repo I had, but not another I had. Aside from re-cloning the repo (which a coworker did to successfully get around this issue), I managed to do a "git reset" to the commit I had before the failures started. Then I re-committed the changes, and I was able to push successfully after that. So despite all the indications there was a problem on the server, in this case it apparently was indicative of some oddity in the local repo.

share|improve this answer

This works:

sudo chmod -R gituser.gituser objects
share|improve this answer

If you still get this error later after setting the permissions you may need to modify your creation mask. We found our new commits (folders under objects) were still being created with no group write permission, hence only the person who committed them could push into the repository.

We fixed this by setting the umask of the SSH users to 002 with an appropriate group shared by all users.

e.g.

umask 002

where the middle 0 is allowing group write by default.

share|improve this answer
Are you sure there is such command in Unix or Linux? Because I am quite certain that umask is not location-specific. – Jan Hudec Oct 10 '12 at 12:05
Yes, I'm sorry you're right - I don't know why I thought it had an extra directory parameter. It simply applies to the user. I've updated the comment. – scipilot Oct 15 '12 at 3:17

Nothing of the above worked for me. A couple of hours later I found the reason for the problem: I used a repo url of the type

ssh://git@example.com/~git/repo.git

Unfortunately I stored a putty session with the name example.com which was configured to login as user myOtherUser.

So, while I thought git connects to the host example.com with the User 'git', Git/TortoiseGit has connected to the putty session example.com which uses the User myOtherUser. This leads to the exact same ..insufficient permission.. error (cause both users are in different groups).

Solution: Rename the putty session example.com to myOtherUse@example.com

share|improve this answer
This worked for me. Thanks a bunch! – Greg Bair May 8 at 4:05

Since the error deals with permissions on the object folder, I did a chown directly on the objects folder and it worked for me.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.