Поможите настроить git под Windows. Есть некий проект, который мне перешел по наследству, пред. программист использовал git, но насколько я смог разобраться, исключительно локально, т.е. в папке с проектом все и хранилось и ни с чем удаленным не синхронизовалось. Я хочу добавить к этой существующей схеме удаленный "сервер" (некий комп с windows, в моей локальной сети, исполняющий функции мегасервера). Что я сделал: сделал копию папки с проектом на сервере, общим доступом открыл доступ к этой папке, клонировал проект с сервера к себе на комп. Вроде как бы все =) можно видеть коммиты и вроде счастье, но при попытке синхронизации (push) с сервером, git ругается:
Цитата:
Подскажите что ему не нравится?
Цитата:
git.exe push -v --progress "origin" master:master
Pushing to //10.0.0.31/Repo/prj
Counting objects: 1194, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (1126/1126), done.
Writing objects: 100% (1129/1129), 46.92 MiB | 1.47 MiB/s, done.
Total 1129 (delta 725), 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 //10.0.0.31/Repo/prj
! [remote rejected] master -> master (branch is currently checked out)
error: failed to push some refs to '//10.0.0.31/Repo/prj'
git did not exit cleanly (exit code 1) (83445 ms @ 07.05.2014 11:01:39)
Подскажите что ему не нравится?