Question
Git, error: remote unpack failed: unable to create temporary object directory - By creating new Branch
I'm trying to create a new branch in my repo.
I did this:
git branch events
git Checkout events
That worked. So I changed some files and did:
git Status
git add --all
git commit -m "Commit"
That worked well but I tried to push it and that didn't work:
git push -u origin events
This is the error:
Enumerating objects: 9, done.
Counting objects: 100% (9/9), done.
Delta compression using up to 4 threads.
Compressing objects: 100% (5/5), done.
Writing objects: 100% (5/5), 716 bytes | 716.00 KiB/s, done.
Total 5 (delta 4), reused 0 (delta 0)
error: remote unpack failed: unable to create temporary object directory
To http://git.int.censoredlink/scm/freeb/freebrep.git
! [remote rejected] events -> events (unpacker error)
error: failed to push some refs to 'http://stsu@git.int.censoredlink/scm/freeb/freebrep.git'
I don't know why it does not work.
I have Admin rights on the Repo. I censored the link to the repo because its an internal Repo with private link.