По сути, я просто хочу использовать git как разновидность одностороннего FTP с поддержкой версий.
У меня есть локальный репозиторий Git в local/
. Я хочу отправить его на server:remote/
, и я хочу, чтобы впоследствии все файлы извлекались в remote
на сервере (аналогично тому, как это выглядит локально, при условии, что я все git-add
)
Другими словами, я хочу воспроизвести это поведение из Mercurial:
[hooks]
changegroup.update = hg update && echo updated successfully.
Я нашел тонны учебников, которые делают это с двумя отдельными каталогами на стороне сервера, но я бы предпочел использовать один. Это возможно? Когда я пытаюсь это сделать, я получаю сообщение, ниже которого я не совсем понимаю.
Какова была бы лучшая практика, чтобы сделать это? (При необходимости вы можете предположить, что я никогда ничего не изменяю на сервере, поэтому - --force
чего-либо не будет проблемой.)
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'.