У меня есть репозиторий Git. Я клонировал репозиторий и могу выполнить локальные изменения. Когда я нажимаю свои изменения на сервер, он работает.
Как только я создаю ветку, я проверяю ветку, завершаю свою работу, а затем проверяю основную ветку. Затем я объединяю свои локальные изменения в главную ветку. Когда я пытаюсь нажать на сервер, я получаю следующее исключение:
Welcome to Git (version 1.7.11-preview20120620)
Run 'git help git' to display the help index.
Run 'git help <command>' to display help for specific commands.
$ git push origin master:master
Counting objects: 9, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (7/7), done.
Writing objects: 100% (8/8), 13.68 KiB, done.
Total 8 (delta 2), reused 1 (delta 0)
Unpacking objects: 100% (8/8), done.
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 c:/jGit
! [remote rejected] master -> master (branch is currently checked out)
error: failed to push some refs to 'c:/gitRepository'
Одним из решений является запуск следующей команды:
git config receive.denyCurrentBranch ignore
После этого он работает, но я хотел бы знать, почему мне нужно использовать этот параметр. Это единственный вариант? Каковы последствия этого?
То, что я действительно хотел бы сделать, это создать ветки, объединить их в главную ветку и затем нажать мои изменения на сервере.