История xcdatamodel, вызывающая ошибки git push - PullRequest
0 голосов
/ 08 августа 2011

Я включил историю для файла xcdatamodel. Из кода xcode он выглядит как один файл из терминала его набор папок

my.xcdatamodeld /

      my 2.xcdatamodel
      my.xcdatamodel

Я не могу доставить это в мой удаленный git-репозиторий из-за этой ошибки

 indmacsunelama$ git push
 Counting objects: 19, done.
 Delta compression using up to 2 threads.
 Compressing objects: 100% (13/13), done.
 Writing objects: 100% (14/14), 34.11 KiB, done.
 Total 14 (delta 5), reused 7 (delta 1)
 remote: usage: git cat-file (-t|-s|-e|-p|<type>|--textconv) <object>
 remote:    or: git cat-file (--batch|--batch-check) < <list_of_objects>
 remote: <type> can be one of: blob, tree, commit, tag
 remote:     -t show object type
 remote:     -s show object size
 remote:     -e exit with zero when there's no error
 remote:     -p                    pretty-print object's content
 remote:     --textconv            for blob objects, run textconv on object's content
 remote:     --batch               show info and content of object standard input
 remote:     --batch-check         show info about objects fed from the standard input

 remote: error: hook declined to update refs/heads/master
 To git://mylinuxbox.us.spec.com/mobile.git
 ! [remote rejected] master -> master (hook declined)
 error: failed to push some refs to 'git://mylinuxbox.us.spec.com/mobile.git'

1 Ответ

0 голосов
/ 08 августа 2011

Эти ошибки указывают на то, что в вашем удаленном хранилище установлен баг-хук. Проверьте подкаталог hooks в mobile.git на вашем удаленном сервере и посмотрите на включенные хуки. Кажется, что в какой-то момент хук неправильно использует git cat-file.

...