Dlaczego mój git push do hostingu dzielonego HostGator nie działa?

Próbuję wdrożyć moje lokalne repo do zdalnego katalogu. Uciekłemgit init --bare w tym zdalnym katalogu i dodałem poprawną ścieżkę ssh do mojej lokalnej gałęzi repo git (o nazwie dev) zgit remote add server ssh://[email protected]:2222/path/to/repo.

Kiedy uciekamgit push server dev Otrzymuję następujące dane wyjściowe:

Counting objects: 44, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (37/37), done.
Writing objects: 100% (44/44), 89.58 KiB, done.
Total 44 (delta 2), reused 27 (delta 2)
error: Could not read 551dd5c5d67e3b2da4074d8f15a59a324a063a03
fatal: Failed to traverse parents of commit 0615b940c3247e3547de1379ab09a4a6bb614252
error: Could not read 551dd5c5d67e3b2da4074d8f15a59a324a063a03
fatal: Failed to traverse parents of commit 0615b940c3247e3547de1379ab09a4a6bb614252
To ssh://[email protected]:2222/path/to/repo
 ! [remote rejected] dev -> master (missing necessary objects)
error: failed to push some refs to 'ssh://[email protected]:2222/path/to/repo'

Nie jestem pewien, co tu się dzieje.

questionAnswers(1)

yourAnswerToTheQuestion