dropbox + git: не может вернуться к источнику - PullRequest
0 голосов
/ 06 октября 2011

У меня есть пустой репозиторий в папке Dropbox, который я разделяю на нескольких компьютерах, которые я использую. Это должна быть простая установка, но я не могу отодвинуть мои изменения.

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 /path/to/project.git/
 ! [remote rejected] master -> master (branch is currently checked out)
error: failed to push some refs to '/path/to/project.git/'

Я пытался вытащить, но это ничего не делает.

$ git pull
Already up-to-date.

Образец филиалов:

$ git branch -a
  asdf
* master
  remotes/origin/HEAD -> origin/master

Статус:

$ git status
# On branch master
# Your branch is ahead of 'origin/master' by 2 commits.
#
nothing to commit (working directory clean)

Конфиг:

$ cat .git/config
[core]
        repositoryformatversion = 0
        filemode = true
        bare = false
        logallrefupdates = true
[remote "origin"]
        fetch = +refs/heads/*:refs/remotes/origin/*
        url = /path/to/project.git
[branch "master"]
        remote = origin
        merge = refs/heads/master

Чего мне не хватает?

1 Ответ

3 голосов
/ 06 октября 2011

Попробуйте на самом деле прочитать сообщения об ошибках, которые выдает Git:

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.

Как правило, вы обычно хотите использовать только открытые репозитории. Похоже, что ваш репозиторий dropbox не на самом деле пустой репозиторий, потому что у него есть извлеченная ветвь.

Проверьте /path/to/project.git/config и посмотрите, какая там конфигурация. Если он голый, он должен иметь bare = true.

...