Reputation: 33
After cloning git-repo, when i try to push the repo to git server after commit. It gives error as "ssh error occurred during unpacking on the remote end: unpack-objects abnormal exit"
Upvotes: 2
Views: 4564
Reputation: 21
Check the ownership of your remote repo. I run into this problem as well. My remote repo was created by other user(in my case, root) rather than git(the user to manage git operations). So I changed the ownership of this repo to git.
chown -R git:git xxxxxx.git
Hope it helps.
Upvotes: 1