Возможно, для вас подобная проблема не так важна, но от того и сложнее вспомнить, как она решается. Суть в следующем:
Предположим, вы решили сделать git-deploy на push модели. То есть, развёртывание продукта на production через
git push prod master
Вы добавили production как git remote
git remote add prod ssh://user@somehost.ru/path/to/production/server.ru
Туда клонировали копию проекта. После чего решили запушить туда изменения, но получили
$ git push prod master user@somehost.ru's password: Подсчет объектов: 7, готово. Delta compression using up to 4 threads. Сжатие объектов: 100% (4/4), готово. Запись объектов: 100% (7/7), 857 bytes | 0 bytes/s, готово. Total 7 (delta 3), reused 0 (delta 0) remote: error: refusing to update checked out branch: refs/heads/master remote: error: By default, updating the current branch in a non-bare repository remote: error: is denied, because it will make the index and work tree inconsistent remote: error: with what you pushed, and will require 'git reset --hard' to match remote: error: the work tree to HEAD. remote: error: remote: error: You can set 'receive.denyCurrentBranch' configuration variable to remote: error: 'ignore' or 'warn' in the remote repository to allow pushing into remote: error: its current branch; however, this is not recommended unless you remote: error: arranged to update its work tree to match what you pushed in some remote: error: other way. remote: error: remote: error: To squelch this message and still keep the default behaviour, set remote: error: 'receive.denyCurrentBranch' configuration variable to 'refuse'. To ssh://user@somehost.ru/path/to/production/server.ru ! [remote rejected] master -> master (branch is currently checked out) error: не удалось отправить некоторые ссылки в «ssh://user@somehost.ru/path/to/production/server.ru»
Пушить в non-bare репозитории (содержащие рабочую версию проекта) с версии 2.3.0 возможно. Для этого нужно установить настройку на удалённом git-репозитории
git config receive.denyCurrentBranch updateInstead
После чего git push prod master
работает нормально.