не может продвинуть в репозиторий мерзавца

Это - то, что я сделал до сих пор, и я скажу, что эта процедура работала над Ubuntu 9.10, которая, возможно, имела другую версию мерзавца.

server: mkdir ~/git

local: scp -r /../project name@url.com:~/git/
server: cd git
        cd project
        git init 
        git add .
        git commit -a -m "initial"

local: git clone name@url.com:/../git/project /home/name/project
   cd project
   capify .  (from the ruby gem capistrano)
   git add .
   git commit -a -m "capified"
   git push

Когда я пытаюсь выставить это, я получаю это сообщение об ошибке:

   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 ...
   ! [remote rejected] master -> master (branch is currently checked out)
   error: failed to push some refs to
42
задан cards 11 July 2010 в 04:28
поделиться

2 ответа

Это должно помочь: push to a git repository does not work

1
ответ дан 4 August 2019 в 09:00
поделиться

Как я указал в этом посте установка git в стиле героя? отправка в рабочие репозитории немного опасна, так как любая незавершенная работа не принимается во внимание при отправке, и довольно легко впоследствии потерять любые незафиксированные изменения (в основном рабочий HEAD может не синхронизироваться с HEAD рабочей ветви). Теперь у Git есть предупреждение, чтобы проинформировать вас об этом - ужасные подробности можно найти по следующей ссылке:

git push to a non-bare repository

Рекомендуется, чтобы ваш опубликованный репозиторий был открытым репозиторием, который не иметь проверенного дерева. Открытые репозитории создаются с использованием параметра «git clone --bare».

7
ответ дан 26 November 2019 в 23:18
поделиться
Другие вопросы по тегам:

Похожие вопросы: