Murtaza Lokhandwala
Murtaza Lokhandwala

Reputation: 33

how to resolve "ssh error occurred during unpacking on the remote end: unpack-objects abnormal exit" in eclipse

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

Answers (1)

Yao ZhiChao
Yao ZhiChao

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

Related Questions