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 having issues pushing a new git changeset to the github repository. First I cloned my local changes with a depth of 1 to remove the history as:

git clone --depth 1 file:///Users/kunal<path to project>

Then I ran a git init remote add and push as inside of the directory I cloned:

> git init  
> git remote add origin https://github.com/kp27/pymovie2.git 

> git push -u origin master

I see the files upload, but then I get:

Counting objects: 7110, done.

Delta compression using up to 8 threads.

Compressing objects: 100% (3785/3785), done.

Writing objects: 100% (7110/7110), 7.60 MiB | 247 KiB/s, done.

Total 7110 (delta 2283), reused 7110 (delta 2283)

error: unpack failed: index-pack abnormal exit

Any ideas what could be causing this? My first guess is the depth of 1 is causing it, but I am not sure why.

share|improve this question

1 Answer

You need to contact github for this, it's something on the receiving end.

You could also clone the github repository and instead of cloning your local files, just copy them over and add them.

share|improve this answer
Thanks for the response! What do you mean, by on the receiving end? – Kunal Dec 20 '12 at 3:01
Github, there seems to be a problem on their side. – Peter van der Does Dec 20 '12 at 12:56

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.