I am having problems pushing a new git changeset into the github repository. First, I cloned my local changes with a depth of 1 to delete the story as:
git clone --depth 1 file:
Then I ran git init remote add and click like inside the cloned directory:
> git init > git remote add origin https:
I see the file 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 that a depth of 1 causes it, but I'm not sure why.
source share