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.