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://[email protected]/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.
.git
dir on server side (or makegit init
on server side from pushed user) – Backpackremote-origin
entry in .git/config? Was that in the remote server? or the local clone? – Incommodiousssh://git.server.com:2222/path/to/repo/repo.git
– Incommodiousurl = [email protected]:/path/to/repo.git
- so I guess that your server uses ssh with cert authentication. Do you have a valid cert in the correct location? – Esotericagit.server.com
. It should be[email protected]
– Incommodious